Skip to content

Commit

Permalink
fixed merging conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
dokato committed Sep 15, 2015
2 parents 90db222 + e082115 commit d79af80
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 23 deletions.
4 changes: 2 additions & 2 deletions connectivipy/conn.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
import numpy as np
import scipy.stats as st
from abc import ABCMeta, abstractmethod
from mvarmodel import Mvar
from mvar.comp import ldl
from .mvar.comp import ldl
from .mvarmodel import Mvar

import six
from six.moves import map
Expand Down
10 changes: 5 additions & 5 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.insert(0, os.path.abspath('../connectivipy'))

sys.path.insert(0, os.path.abspath('..'))
import connectivipy

# -- General configuration ------------------------------------------------

Expand All @@ -36,9 +36,6 @@
'sphinx.ext.viewcode',
]

#Autodoc
autodoc_member_order = 'bysource'

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

Expand Down Expand Up @@ -286,3 +283,6 @@

# If true, do not generate a @detailmenu in the "Top" node's menu.
#texinfo_no_detailmenu = False

#Autodoc
autodoc_member_order = 'bysource'
2 changes: 1 addition & 1 deletion doc/conn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ Connectvity

Connectivity methods classes.

.. automodule:: conn
.. automodule:: connectivipy.conn
:members:
9 changes: 6 additions & 3 deletions doc/data.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,20 @@ Data
Data module - main class governing your data and wrapper for all other
**ConnectiviPy** functions.

.. automodule:: data
.. automodule:: connectivipy.data
:members:

Data loading
########

**Additonal function which enable other data formats loading**

.. automodule:: load.loaders
.. automodule:: connectivipy.load.loaders
:members:

Additional functions
########

.. autofunction:: __init__.plot_conn
**Plot tools which are separate from Data class**

.. autofunction:: connectivipy.plot_conn
1 change: 0 additions & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ Contents:
data
conn
mvar
plot

Tutorials:

Expand Down
6 changes: 3 additions & 3 deletions doc/mvar.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ MVAR class
########
*Tools for MVAR parameters fitting*

.. automodule:: mvarmodel
.. automodule:: connectivipy.mvarmodel
:members:

Algorithms
########

.. automodule:: mvar.fitting
.. automodule:: connectivipy.mvar.fitting
:members:

Additional
########

*Additional tools*

.. automodule:: mvar.comp
.. automodule:: connectivipy.mvar.comp
:members:
7 changes: 0 additions & 7 deletions doc/plot.rst

This file was deleted.

2 changes: 1 addition & 1 deletion doc/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ Instantaneous
import connectivipy as cp
"""
This example reproduce simulation from article:
This example reproduces simulation from article:
Erla S et all (2009) "Multivariate autoregressive model with
instantaneous effects to improve brain
connectivity estimation"
Expand Down

0 comments on commit d79af80

Please sign in to comment.