Skip to content

Commit

Permalink
Modernize code
Browse files Browse the repository at this point in the history
  • Loading branch information
wmvanvliet committed Feb 12, 2025
1 parent aaf16da commit f372ac3
Show file tree
Hide file tree
Showing 46 changed files with 2,201 additions and 1,621 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@ paper/conpy-v*.pdf
conpy/tests/.coverage
conpy/tests/htmlcov
conpy.egg-info
.coverage
junit-results.xml
28 changes: 18 additions & 10 deletions conpy/__init__.py
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"
Loading

0 comments on commit f372ac3

Please sign in to comment.