-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aaf16da
commit f372ac3
Showing
46 changed files
with
2,201 additions
and
1,621 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,3 +30,5 @@ paper/conpy-v*.pdf | |
conpy/tests/.coverage | ||
conpy/tests/htmlcov | ||
conpy.egg-info | ||
.coverage | ||
junit-results.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,22 @@ | ||
"""Python module for computing spectral connectivity using DICS.""" | ||
|
||
from .forward import (restrict_forward_to_sensor_range, forward_to_tangential, | ||
select_vertices_in_sensor_range, select_shared_vertices, | ||
restrict_forward_to_vertices, restrict_src_to_vertices) | ||
from .connectivity import (all_to_all_connectivity_pairs, | ||
one_to_all_connectivity_pairs, dics_connectivity, | ||
VertexConnectivity, LabelConnectivity, | ||
read_connectivity) | ||
from .stats import (group_connectivity_ttest, cluster_threshold, | ||
cluster_permutation_test) | ||
from . import utils | ||
from .connectivity import ( | ||
LabelConnectivity, | ||
VertexConnectivity, | ||
all_to_all_connectivity_pairs, | ||
dics_connectivity, | ||
one_to_all_connectivity_pairs, | ||
read_connectivity, | ||
) | ||
from .forward import ( | ||
forward_to_tangential, | ||
restrict_forward_to_sensor_range, | ||
restrict_forward_to_vertices, | ||
restrict_src_to_vertices, | ||
select_shared_vertices, | ||
select_vertices_in_sensor_range, | ||
) | ||
from .stats import cluster_permutation_test, cluster_threshold, group_connectivity_ttest | ||
|
||
__version__ = '1.3.1' | ||
__version__ = "1.3.2" |
Oops, something went wrong.