junifer 0.0.5__py3-none-any.whl → 0.0.5.dev11__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (198) hide show
  1. junifer/__init__.py +0 -17
  2. junifer/_version.py +2 -2
  3. junifer/api/__init__.py +1 -4
  4. junifer/api/cli.py +1 -91
  5. junifer/api/decorators.py +0 -9
  6. junifer/api/functions.py +10 -56
  7. junifer/api/parser.py +0 -3
  8. junifer/api/queue_context/__init__.py +1 -4
  9. junifer/api/res/afni/run_afni_docker.sh +1 -1
  10. junifer/api/res/ants/run_ants_docker.sh +1 -1
  11. junifer/api/res/fsl/run_fsl_docker.sh +1 -1
  12. junifer/api/tests/test_api_utils.py +2 -4
  13. junifer/api/tests/test_cli.py +0 -83
  14. junifer/api/tests/test_functions.py +2 -27
  15. junifer/configs/__init__.py +1 -1
  16. junifer/configs/juseless/__init__.py +1 -4
  17. junifer/configs/juseless/datagrabbers/__init__.py +1 -10
  18. junifer/configs/juseless/datagrabbers/aomic_id1000_vbm.py +0 -3
  19. junifer/configs/juseless/datagrabbers/camcan_vbm.py +0 -3
  20. junifer/configs/juseless/datagrabbers/ixi_vbm.py +0 -3
  21. junifer/configs/juseless/datagrabbers/tests/test_ucla.py +3 -1
  22. junifer/configs/juseless/datagrabbers/ucla.py +9 -12
  23. junifer/configs/juseless/datagrabbers/ukb_vbm.py +0 -3
  24. junifer/data/__init__.py +1 -21
  25. junifer/data/coordinates.py +19 -10
  26. junifer/data/masks.py +87 -58
  27. junifer/data/parcellations.py +3 -14
  28. junifer/data/template_spaces.py +1 -4
  29. junifer/data/tests/test_masks.py +37 -26
  30. junifer/data/utils.py +0 -3
  31. junifer/datagrabber/__init__.py +1 -18
  32. junifer/datagrabber/aomic/__init__.py +0 -3
  33. junifer/datagrabber/aomic/id1000.py +37 -70
  34. junifer/datagrabber/aomic/piop1.py +36 -69
  35. junifer/datagrabber/aomic/piop2.py +38 -71
  36. junifer/datagrabber/aomic/tests/test_id1000.py +99 -44
  37. junifer/datagrabber/aomic/tests/test_piop1.py +108 -65
  38. junifer/datagrabber/aomic/tests/test_piop2.py +102 -45
  39. junifer/datagrabber/base.py +6 -13
  40. junifer/datagrabber/datalad_base.py +1 -13
  41. junifer/datagrabber/dmcc13_benchmark.py +53 -36
  42. junifer/datagrabber/hcp1200/__init__.py +0 -3
  43. junifer/datagrabber/hcp1200/datalad_hcp1200.py +0 -3
  44. junifer/datagrabber/hcp1200/hcp1200.py +1 -4
  45. junifer/datagrabber/multiple.py +6 -45
  46. junifer/datagrabber/pattern.py +62 -170
  47. junifer/datagrabber/pattern_datalad.py +12 -25
  48. junifer/datagrabber/tests/test_datagrabber_utils.py +218 -0
  49. junifer/datagrabber/tests/test_datalad_base.py +4 -4
  50. junifer/datagrabber/tests/test_dmcc13_benchmark.py +19 -46
  51. junifer/datagrabber/tests/test_multiple.py +84 -161
  52. junifer/datagrabber/tests/test_pattern.py +0 -45
  53. junifer/datagrabber/tests/test_pattern_datalad.py +4 -4
  54. junifer/datagrabber/utils.py +230 -0
  55. junifer/datareader/__init__.py +1 -4
  56. junifer/datareader/default.py +43 -95
  57. junifer/external/__init__.py +1 -1
  58. junifer/external/nilearn/__init__.py +1 -5
  59. junifer/external/nilearn/junifer_nifti_spheres_masker.py +9 -23
  60. junifer/external/nilearn/tests/test_junifer_nifti_spheres_masker.py +1 -76
  61. junifer/markers/__init__.py +1 -23
  62. junifer/markers/base.py +28 -68
  63. junifer/markers/collection.py +2 -10
  64. junifer/markers/complexity/__init__.py +0 -10
  65. junifer/markers/complexity/complexity_base.py +43 -26
  66. junifer/markers/complexity/hurst_exponent.py +0 -3
  67. junifer/markers/complexity/multiscale_entropy_auc.py +0 -3
  68. junifer/markers/complexity/perm_entropy.py +0 -3
  69. junifer/markers/complexity/range_entropy.py +0 -3
  70. junifer/markers/complexity/range_entropy_auc.py +0 -3
  71. junifer/markers/complexity/sample_entropy.py +0 -3
  72. junifer/markers/complexity/tests/test_hurst_exponent.py +3 -11
  73. junifer/markers/complexity/tests/test_multiscale_entropy_auc.py +3 -11
  74. junifer/markers/complexity/tests/test_perm_entropy.py +3 -11
  75. junifer/markers/complexity/tests/test_range_entropy.py +3 -11
  76. junifer/markers/complexity/tests/test_range_entropy_auc.py +3 -11
  77. junifer/markers/complexity/tests/test_sample_entropy.py +3 -11
  78. junifer/markers/complexity/tests/test_weighted_perm_entropy.py +3 -11
  79. junifer/markers/complexity/weighted_perm_entropy.py +0 -3
  80. junifer/markers/ets_rss.py +42 -27
  81. junifer/markers/falff/__init__.py +0 -3
  82. junifer/markers/falff/_afni_falff.py +2 -5
  83. junifer/markers/falff/_junifer_falff.py +0 -3
  84. junifer/markers/falff/falff_base.py +46 -20
  85. junifer/markers/falff/falff_parcels.py +27 -56
  86. junifer/markers/falff/falff_spheres.py +29 -60
  87. junifer/markers/falff/tests/test_falff_parcels.py +23 -39
  88. junifer/markers/falff/tests/test_falff_spheres.py +23 -39
  89. junifer/markers/functional_connectivity/__init__.py +0 -9
  90. junifer/markers/functional_connectivity/crossparcellation_functional_connectivity.py +60 -63
  91. junifer/markers/functional_connectivity/edge_functional_connectivity_parcels.py +32 -45
  92. junifer/markers/functional_connectivity/edge_functional_connectivity_spheres.py +36 -49
  93. junifer/markers/functional_connectivity/functional_connectivity_base.py +70 -71
  94. junifer/markers/functional_connectivity/functional_connectivity_parcels.py +25 -34
  95. junifer/markers/functional_connectivity/functional_connectivity_spheres.py +30 -40
  96. junifer/markers/functional_connectivity/tests/test_crossparcellation_functional_connectivity.py +7 -11
  97. junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_parcels.py +7 -27
  98. junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_spheres.py +12 -28
  99. junifer/markers/functional_connectivity/tests/test_functional_connectivity_parcels.py +11 -35
  100. junifer/markers/functional_connectivity/tests/test_functional_connectivity_spheres.py +62 -36
  101. junifer/markers/parcel_aggregation.py +61 -47
  102. junifer/markers/reho/__init__.py +0 -3
  103. junifer/markers/reho/_afni_reho.py +2 -5
  104. junifer/markers/reho/_junifer_reho.py +1 -4
  105. junifer/markers/reho/reho_base.py +27 -8
  106. junifer/markers/reho/reho_parcels.py +17 -28
  107. junifer/markers/reho/reho_spheres.py +18 -27
  108. junifer/markers/reho/tests/test_reho_parcels.py +3 -8
  109. junifer/markers/reho/tests/test_reho_spheres.py +3 -8
  110. junifer/markers/sphere_aggregation.py +59 -43
  111. junifer/markers/temporal_snr/__init__.py +0 -3
  112. junifer/markers/temporal_snr/temporal_snr_base.py +32 -23
  113. junifer/markers/temporal_snr/temporal_snr_parcels.py +6 -9
  114. junifer/markers/temporal_snr/temporal_snr_spheres.py +6 -9
  115. junifer/markers/temporal_snr/tests/test_temporal_snr_parcels.py +3 -6
  116. junifer/markers/temporal_snr/tests/test_temporal_snr_spheres.py +3 -6
  117. junifer/markers/tests/test_collection.py +8 -9
  118. junifer/markers/tests/test_ets_rss.py +9 -15
  119. junifer/markers/tests/test_markers_base.py +18 -17
  120. junifer/markers/tests/test_parcel_aggregation.py +32 -93
  121. junifer/markers/tests/test_sphere_aggregation.py +19 -72
  122. junifer/onthefly/__init__.py +1 -4
  123. junifer/onthefly/read_transform.py +0 -3
  124. junifer/pipeline/__init__.py +1 -9
  125. junifer/pipeline/pipeline_step_mixin.py +4 -21
  126. junifer/pipeline/registry.py +0 -3
  127. junifer/pipeline/singleton.py +0 -3
  128. junifer/pipeline/tests/test_registry.py +1 -1
  129. junifer/pipeline/update_meta_mixin.py +0 -3
  130. junifer/pipeline/utils.py +1 -67
  131. junifer/pipeline/workdir_manager.py +0 -3
  132. junifer/preprocess/__init__.py +2 -10
  133. junifer/preprocess/ants/__init__.py +4 -0
  134. junifer/preprocess/ants/ants_apply_transforms_warper.py +185 -0
  135. junifer/preprocess/ants/tests/test_ants_apply_transforms_warper.py +56 -0
  136. junifer/preprocess/base.py +3 -6
  137. junifer/preprocess/bold_warper.py +265 -0
  138. junifer/preprocess/confounds/__init__.py +0 -3
  139. junifer/preprocess/confounds/fmriprep_confound_remover.py +60 -47
  140. junifer/preprocess/confounds/tests/test_fmriprep_confound_remover.py +113 -72
  141. junifer/preprocess/fsl/__init__.py +4 -0
  142. junifer/preprocess/fsl/apply_warper.py +179 -0
  143. junifer/preprocess/fsl/tests/test_apply_warper.py +45 -0
  144. junifer/preprocess/tests/test_bold_warper.py +159 -0
  145. junifer/preprocess/warping/__init__.py +0 -3
  146. junifer/preprocess/warping/_ants_warper.py +0 -3
  147. junifer/preprocess/warping/_fsl_warper.py +0 -3
  148. junifer/stats.py +1 -4
  149. junifer/storage/__init__.py +1 -9
  150. junifer/storage/base.py +1 -40
  151. junifer/storage/hdf5.py +9 -71
  152. junifer/storage/pandas_base.py +0 -3
  153. junifer/storage/sqlite.py +0 -3
  154. junifer/storage/tests/test_hdf5.py +10 -82
  155. junifer/storage/utils.py +0 -9
  156. junifer/testing/__init__.py +1 -4
  157. junifer/testing/datagrabbers.py +6 -13
  158. junifer/testing/tests/test_partlycloudytesting_datagrabber.py +7 -7
  159. junifer/testing/utils.py +0 -3
  160. junifer/utils/__init__.py +2 -13
  161. junifer/utils/fs.py +0 -3
  162. junifer/utils/helpers.py +1 -32
  163. junifer/utils/logging.py +4 -33
  164. junifer/utils/tests/test_logging.py +0 -8
  165. {junifer-0.0.5.dist-info → junifer-0.0.5.dev11.dist-info}/METADATA +16 -17
  166. junifer-0.0.5.dev11.dist-info/RECORD +259 -0
  167. {junifer-0.0.5.dist-info → junifer-0.0.5.dev11.dist-info}/WHEEL +1 -1
  168. junifer/api/res/freesurfer/mri_binarize +0 -3
  169. junifer/api/res/freesurfer/mri_mc +0 -3
  170. junifer/api/res/freesurfer/mri_pretess +0 -3
  171. junifer/api/res/freesurfer/mris_convert +0 -3
  172. junifer/api/res/freesurfer/run_freesurfer_docker.sh +0 -61
  173. junifer/data/masks/ukb/UKB_15K_GM_template.nii.gz +0 -0
  174. junifer/datagrabber/pattern_validation_mixin.py +0 -388
  175. junifer/datagrabber/tests/test_pattern_validation_mixin.py +0 -249
  176. junifer/external/BrainPrint/brainprint/__init__.py +0 -4
  177. junifer/external/BrainPrint/brainprint/_version.py +0 -3
  178. junifer/external/BrainPrint/brainprint/asymmetry.py +0 -91
  179. junifer/external/BrainPrint/brainprint/brainprint.py +0 -441
  180. junifer/external/BrainPrint/brainprint/surfaces.py +0 -258
  181. junifer/external/BrainPrint/brainprint/utils/__init__.py +0 -1
  182. junifer/external/BrainPrint/brainprint/utils/_config.py +0 -112
  183. junifer/external/BrainPrint/brainprint/utils/utils.py +0 -188
  184. junifer/external/nilearn/junifer_connectivity_measure.py +0 -483
  185. junifer/external/nilearn/tests/test_junifer_connectivity_measure.py +0 -1089
  186. junifer/markers/brainprint.py +0 -459
  187. junifer/markers/tests/test_brainprint.py +0 -58
  188. junifer/preprocess/smoothing/__init__.py +0 -9
  189. junifer/preprocess/smoothing/_afni_smoothing.py +0 -119
  190. junifer/preprocess/smoothing/_fsl_smoothing.py +0 -116
  191. junifer/preprocess/smoothing/_nilearn_smoothing.py +0 -69
  192. junifer/preprocess/smoothing/smoothing.py +0 -174
  193. junifer/preprocess/smoothing/tests/test_smoothing.py +0 -94
  194. junifer-0.0.5.dist-info/RECORD +0 -275
  195. {junifer-0.0.5.dist-info → junifer-0.0.5.dev11.dist-info}/AUTHORS.rst +0 -0
  196. {junifer-0.0.5.dist-info → junifer-0.0.5.dev11.dist-info}/LICENSE.md +0 -0
  197. {junifer-0.0.5.dist-info → junifer-0.0.5.dev11.dist-info}/entry_points.txt +0 -0
  198. {junifer-0.0.5.dist-info → junifer-0.0.5.dev11.dist-info}/top_level.txt +0 -0
junifer/storage/utils.py CHANGED
@@ -14,15 +14,6 @@ import numpy as np
14
14
  from ..utils.logging import logger, raise_error
15
15
 
16
16
 
17
- __all__ = [
18
- "get_dependency_version",
19
- "process_meta",
20
- "element_to_prefix",
21
- "store_matrix_checks",
22
- "matrix_to_vector",
23
- ]
24
-
25
-
26
17
  def get_dependency_version(dependency: str) -> str:
27
18
  """Get dependency version.
28
19
 
@@ -1,4 +1,4 @@
1
- """Testing components."""
1
+ """Provide imports for testing sub-package."""
2
2
 
3
3
  # Authors: Federico Raimondo <f.raimondo@fz-juelich.de>
4
4
  # Synchon Mandal <s.mandal@fz-juelich.de>
@@ -6,6 +6,3 @@
6
6
 
7
7
  from . import datagrabbers
8
8
  from .utils import get_testing_data
9
-
10
-
11
- __all__ = ["datagrabbers", "get_testing_data"]
@@ -1,4 +1,4 @@
1
- """Testing DataGrabbers."""
1
+ """Provide testing DataGrabbers."""
2
2
 
3
3
  # Authors: Federico Raimondo <f.raimondo@fz-juelich.de>
4
4
  # Synchon Mandal <s.mandal@fz-juelich.de>
@@ -14,13 +14,6 @@ from nilearn import datasets, image
14
14
  from ..datagrabber.base import BaseDataGrabber
15
15
 
16
16
 
17
- __all__ = [
18
- "OasisVBMTestingDataGrabber",
19
- "SPMAuditoryTestingDataGrabber",
20
- "PartlyCloudyTestingDataGrabber",
21
- ]
22
-
23
-
24
17
  class OasisVBMTestingDataGrabber(BaseDataGrabber):
25
18
  """DataGrabber for Oasis VBM testing data.
26
19
 
@@ -188,7 +181,7 @@ class PartlyCloudyTestingDataGrabber(BaseDataGrabber):
188
181
  """Initialize the class."""
189
182
  datadir = tempfile.mkdtemp()
190
183
  # Define types
191
- types = ["BOLD"]
184
+ types = ["BOLD", "BOLD_confounds"]
192
185
  self.reduce_confounds = reduce_confounds
193
186
  self.age_group = age_group
194
187
  super().__init__(types=types, datadir=datadir)
@@ -249,10 +242,10 @@ class PartlyCloudyTestingDataGrabber(BaseDataGrabber):
249
242
  out["BOLD"] = {
250
243
  "path": Path(self._dataset["func"][i_sub]),
251
244
  "space": "MNI152NLin2009cAsym",
252
- "confounds": {
253
- "path": Path(self._dataset["confounds"][i_sub]),
254
- "format": "fmriprep",
255
- },
245
+ }
246
+ out["BOLD_confounds"] = {
247
+ "path": Path(self._dataset["confounds"][i_sub]),
248
+ "format": "fmriprep",
256
249
  }
257
250
 
258
251
  return out
@@ -28,13 +28,13 @@ def test_PartlyCloudyTestingDataGrabber() -> None:
28
28
  assert out["BOLD"]["path"].exists()
29
29
  assert out["BOLD"]["path"].is_file()
30
30
 
31
- assert "confounds" in out["BOLD"]
32
- assert out["BOLD"]["confounds"]["path"].exists()
33
- assert out["BOLD"]["confounds"]["path"].is_file()
34
- assert "format" in out["BOLD"]["confounds"]
35
- assert "fmriprep" == out["BOLD"]["confounds"]["format"]
31
+ assert "BOLD_confounds" in out
32
+ assert out["BOLD_confounds"]["path"].exists()
33
+ assert out["BOLD_confounds"]["path"].is_file()
34
+ assert "format" in out["BOLD_confounds"]
35
+ assert "fmriprep" == out["BOLD_confounds"]["format"]
36
36
 
37
37
  with PartlyCloudyTestingDataGrabber(reduce_confounds=False) as dg:
38
38
  out = dg["sub-01"]
39
- assert "format" in out["BOLD"]["confounds"]
40
- assert "fmriprep" == out["BOLD"]["confounds"]["format"]
39
+ assert "format" in out["BOLD_confounds"]
40
+ assert "fmriprep" == out["BOLD_confounds"]["format"]
junifer/testing/utils.py CHANGED
@@ -6,9 +6,6 @@
6
6
  from pathlib import Path
7
7
 
8
8
 
9
- __all__ = ["get_testing_data"]
10
-
11
-
12
9
  def get_testing_data(fname: str) -> Path:
13
10
  """Get the path to a testing data file.
14
11
 
junifer/utils/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- """General utilities and helpers."""
1
+ """Provide imports for utils sub-package."""
2
2
 
3
3
  # Authors: Federico Raimondo <f.raimondo@fz-juelich.de>
4
4
  # Synchon Mandal <s.mandal@fz-juelich.de>
@@ -6,15 +6,4 @@
6
6
 
7
7
  from .fs import make_executable
8
8
  from .logging import configure_logging, logger, raise_error, warn_with_log
9
- from .helpers import run_ext_cmd, deep_update
10
-
11
-
12
- __all__ = [
13
- "make_executable",
14
- "configure_logging",
15
- "logger",
16
- "raise_error",
17
- "warn_with_log",
18
- "run_ext_cmd",
19
- "deep_update",
20
- ]
9
+ from .helpers import run_ext_cmd
junifer/utils/fs.py CHANGED
@@ -8,9 +8,6 @@ import stat
8
8
  from pathlib import Path
9
9
 
10
10
 
11
- __all__ = ["make_executable"]
12
-
13
-
14
11
  def make_executable(path: Path) -> None:
15
12
  """Make ``path`` executable.
16
13
 
junifer/utils/helpers.py CHANGED
@@ -3,16 +3,12 @@
3
3
  # Authors: Synchon Mandal <s.mandal@fz-juelich.de>
4
4
  # License: AGPL
5
5
 
6
- import collections.abc
7
6
  import subprocess
8
- from typing import Dict, List
7
+ from typing import List
9
8
 
10
9
  from .logging import logger, raise_error
11
10
 
12
11
 
13
- __all__ = ["run_ext_cmd", "deep_update"]
14
-
15
-
16
12
  def run_ext_cmd(name: str, cmd: List[str]) -> None:
17
13
  """Run external command via subprocess.
18
14
 
@@ -55,30 +51,3 @@ def run_ext_cmd(name: str, cmd: List[str]) -> None:
55
51
  ),
56
52
  klass=RuntimeError,
57
53
  )
58
-
59
-
60
- def deep_update(d: Dict, u: Dict) -> Dict:
61
- """Deep update `d` with `u`.
62
-
63
- From: "https://stackoverflow.com/questions/3232943/update-value-of-a-nested
64
- -dictionary-of-varying-depth"
65
-
66
- Parameters
67
- ----------
68
- d : dict
69
- The dictionary to deep-update.
70
- u : dict
71
- The dictionary to deep-update `d` with.
72
-
73
- Returns
74
- -------
75
- dict
76
- The updated dictionary.
77
-
78
- """
79
- for k, v in u.items():
80
- if isinstance(v, collections.abc.Mapping):
81
- d[k] = deep_update(d.get(k, {}), v)
82
- else:
83
- d[k] = v
84
- return d
junifer/utils/logging.py CHANGED
@@ -4,16 +4,13 @@
4
4
  # Synchon Mandal <s.mandal@fz-juelich.de>
5
5
  # License: AGPL
6
6
 
7
- import sys
8
-
9
-
10
- if sys.version_info < (3, 12):
7
+ try:
11
8
  from distutils.version import LooseVersion
12
- else: # pragma: no cover
9
+ except ImportError: # pragma: no cover
13
10
  from looseversion import LooseVersion
14
11
 
15
12
  import logging
16
- import warnings
13
+ import sys
17
14
  from pathlib import Path
18
15
  from subprocess import PIPE, Popen, TimeoutExpired
19
16
  from typing import Dict, NoReturn, Optional, Type, Union
@@ -22,16 +19,6 @@ from warnings import warn
22
19
  import datalad
23
20
 
24
21
 
25
- __all__ = [
26
- "WrapStdOut",
27
- "get_versions",
28
- "log_versions",
29
- "configure_logging",
30
- "raise_error",
31
- "warn_with_log",
32
- ]
33
-
34
-
35
22
  logger = logging.getLogger("JUNIFER")
36
23
 
37
24
  # Set up datalad logger level to warning by default
@@ -45,23 +32,6 @@ _logging_types = {
45
32
  }
46
33
 
47
34
 
48
- # Copied over from stdlib and tweaked to our use-case.
49
- def _showwarning(message, category, filename, lineno, file=None, line=None):
50
- s = warnings.formatwarning(message, category, filename, lineno, line)
51
- logger.warning(str(s))
52
-
53
-
54
- # Overwrite warnings display to integrate with logging
55
-
56
-
57
- def capture_warnings():
58
- """Capture warnings and log them."""
59
- warnings.showwarning = _showwarning
60
-
61
-
62
- capture_warnings()
63
-
64
-
65
35
  class WrapStdOut(logging.StreamHandler):
66
36
  """Dynamically wrap to sys.stdout.
67
37
 
@@ -343,4 +313,5 @@ def warn_with_log(
343
313
  The warning subclass (default RuntimeWarning).
344
314
 
345
315
  """
316
+ logger.warning(msg)
346
317
  warn(msg, category=category, stacklevel=2)
@@ -145,16 +145,8 @@ def test_log_file(tmp_path: Path) -> None:
145
145
  assert any("Warn3 message" in line for line in lines)
146
146
  assert any("Error3 message" in line for line in lines)
147
147
 
148
- # This should raise a warning (test that it was raised)
149
148
  with pytest.warns(RuntimeWarning, match=r"Warn raised"):
150
149
  warn_with_log("Warn raised")
151
-
152
- # This should log the warning (workaround for pytest messing with logging)
153
- from junifer.utils.logging import capture_warnings
154
-
155
- capture_warnings()
156
-
157
- warn_with_log("Warn raised 2")
158
150
  with pytest.raises(ValueError, match=r"Error raised"):
159
151
  raise_error("Error raised")
160
152
  with open(tmp_path / "test4.log") as f:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: junifer
3
- Version: 0.0.5
3
+ Version: 0.0.5.dev11
4
4
  Summary: JUelich NeuroImaging FEature extractoR
5
5
  Author-email: Fede Raimondo <f.raimondo@fz-juelich.de>, Synchon Mandal <s.mandal@fz-juelich.de>
6
6
  Maintainer-email: Fede Raimondo <f.raimondo@fz-juelich.de>, Synchon Mandal <s.mandal@fz-juelich.de>
@@ -29,20 +29,19 @@ Description-Content-Type: text/markdown
29
29
  License-File: LICENSE.md
30
30
  License-File: AUTHORS.rst
31
31
  Requires-Dist: click <8.2,>=8.1.3
32
- Requires-Dist: numpy <2.0.0,>=1.24.0
33
- Requires-Dist: scipy <=1.14.0,>=1.10.0
34
- Requires-Dist: datalad <1.2.0,>=1.0.0
35
- Requires-Dist: pandas <2.3.0,>=2.0.0
36
- Requires-Dist: nibabel <5.3.0,>=5.2.0
37
- Requires-Dist: nilearn <=0.10.4,>=0.10.3
38
- Requires-Dist: sqlalchemy <=2.1.0,>=2.0.25
32
+ Requires-Dist: numpy <1.27,>=1.24
33
+ Requires-Dist: scipy <=1.11.4,>=1.9.0
34
+ Requires-Dist: datalad <0.20,>=0.15.4
35
+ Requires-Dist: pandas <2.2,>=1.4.0
36
+ Requires-Dist: nibabel <5.11,>=3.2.0
37
+ Requires-Dist: nilearn <=0.10.2,>=0.9.0
38
+ Requires-Dist: sqlalchemy <=2.1.0,>=1.4.27
39
39
  Requires-Dist: ruamel.yaml <0.18,>=0.17
40
40
  Requires-Dist: h5py >=3.10
41
41
  Requires-Dist: httpx[http2] ==0.26.0
42
42
  Requires-Dist: tqdm ==4.66.1
43
43
  Requires-Dist: templateflow >=23.0.0
44
- Requires-Dist: lapy <2.0.0,>=1.0.0
45
- Requires-Dist: importlib-metadata ; python_version < "3.9"
44
+ Requires-Dist: importlib-metadata ; python_version < "3.10"
46
45
  Requires-Dist: looseversion ==1.3.0 ; python_version >= "3.12"
47
46
  Provides-Extra: all
48
47
  Requires-Dist: bctpy ==0.6.0 ; extra == 'all'
@@ -53,14 +52,14 @@ Provides-Extra: dev
53
52
  Requires-Dist: tox ; extra == 'dev'
54
53
  Requires-Dist: pre-commit ; extra == 'dev'
55
54
  Provides-Extra: docs
56
- Requires-Dist: seaborn <0.14.0,>=0.13.0 ; extra == 'docs'
57
- Requires-Dist: sphinx <7.4.0,>=7.3.0 ; extra == 'docs'
58
- Requires-Dist: sphinx-gallery <0.17.0,>=0.15.0 ; extra == 'docs'
59
- Requires-Dist: furo <2024.6.0,>=2024.4.27 ; extra == 'docs'
60
- Requires-Dist: numpydoc <1.8.0,>=1.6.0 ; extra == 'docs'
61
- Requires-Dist: julearn ==0.3.3 ; extra == 'docs'
55
+ Requires-Dist: seaborn <0.13,>=0.11.2 ; extra == 'docs'
56
+ Requires-Dist: sphinx <7.3,>=5.3.0 ; extra == 'docs'
57
+ Requires-Dist: sphinx-gallery <0.15.0,>=0.11.0 ; extra == 'docs'
58
+ Requires-Dist: furo <2023.10.0,>=2022.9.29 ; extra == 'docs'
59
+ Requires-Dist: numpydoc <1.6,>=1.5.0 ; extra == 'docs'
60
+ Requires-Dist: julearn <0.4,>=0.3.0 ; extra == 'docs'
62
61
  Requires-Dist: sphinx-copybutton <0.5.3,>=0.5.1 ; extra == 'docs'
63
- Requires-Dist: towncrier <23.12.0,>=23.10.0 ; extra == 'docs'
62
+ Requires-Dist: towncrier <23.7,>=22.12.0 ; extra == 'docs'
64
63
  Requires-Dist: sphinxcontrib-mermaid <0.10,>=0.8.1 ; extra == 'docs'
65
64
  Provides-Extra: neurokit2
66
65
  Requires-Dist: neurokit2 >=0.1.7 ; extra == 'neurokit2'
@@ -0,0 +1,259 @@
1
+ junifer/__init__.py,sha256=x1UR2jUcrUdm2HNl-3Qvyi4UUrU6ms5qm2qcmNY7zZk,391
2
+ junifer/_version.py,sha256=xeIK04I17yA6IG0RaXK-CTIfLYsUKbym6bUXa6zjvRg,426
3
+ junifer/stats.py,sha256=sU5IZ2qFZWbzgSutQS_z42miIVItpSGmQYBn6KkD5fA,6162
4
+ junifer/api/__init__.py,sha256=YILu9M7SC0Ri4CVd90fELH2OnK_gvCYAXCoqBNCFE8E,257
5
+ junifer/api/cli.py,sha256=_fC35jp0YzqNIpO5yvTb_5QBmUpw6sRFgVjBeoRbhO8,13627
6
+ junifer/api/decorators.py,sha256=8bnwHPAe7VgzKxl--M_e0umdAlTVSzaJQHEJZ5kof5k,2580
7
+ junifer/api/functions.py,sha256=N59KM2GqxIwMU2tXc44oYCqogclgqD45qI_ULrfGYDQ,11616
8
+ junifer/api/parser.py,sha256=a3SSC2xO-PF1pqXZXFq8Sh9aVd-dmHolJbCkGyOUTAM,4416
9
+ junifer/api/utils.py,sha256=dyjTdPMwX9qeCrn8SQT2Pjshfnu-y1FEyujV7lCzvm0,3333
10
+ junifer/api/queue_context/__init__.py,sha256=x0fT0ax-jPI0Fefg2quJ6VCIwhJ9rUQEjCNqxDXw7WM,287
11
+ junifer/api/queue_context/gnu_parallel_local_adapter.py,sha256=x2eQRVkhwJKd-Kx8AYia4F8nYnOLJrFzMGMjcwUygEc,9561
12
+ junifer/api/queue_context/htcondor_adapter.py,sha256=92pt4M_r52inBVlQ2M8Di6quEKW4Xcq3qVNRXaV4rGY,13233
13
+ junifer/api/queue_context/queue_context_adapter.py,sha256=a6UE8xavDfuaZbkWYsayVs6l-rwIrbpFSpqSyHsEeYY,1577
14
+ junifer/api/queue_context/tests/test_gnu_parallel_local_adapter.py,sha256=BPoewP50mfFPubRfcMYvEydIpW8k4p4T7NzRy8tAe1A,6604
15
+ junifer/api/queue_context/tests/test_htcondor_adapter.py,sha256=1vDAyIYQj_sFEhSC76duK7u6sd7K3kGFC-pfpjJNLYg,8619
16
+ junifer/api/res/run_conda.bash,sha256=Axm0xTsP6doUV0X0k6nUP_UJr_2GzA8CPvulQZ01Uno,517
17
+ junifer/api/res/run_conda.zsh,sha256=32Sm1VNjsrpdH_Wi46jGhPbrJjrmNlPIHtkQ6cHVUkU,515
18
+ junifer/api/res/run_venv.bash,sha256=aynMRwBgFzYc4CAWbnne_A0UPD5ZFd81w62u22IXzPo,507
19
+ junifer/api/res/run_venv.zsh,sha256=PaZJ5444TBdM3XntUETyxyngQ9xtjiq7I6hhHQev2Hc,506
20
+ junifer/api/res/afni/3dAFNItoNIFTI,sha256=Fsy5S5rwIBb1MepLfl_5FQhE7gv6NDwNyAR_k036NmM,51
21
+ junifer/api/res/afni/3dRSFC,sha256=MkPtS_nKEoJOHDAT3ZP9IA-SvMdhyzZDiyxObV_XI3g,44
22
+ junifer/api/res/afni/3dReHo,sha256=Jb5B97iPPPQ14zAz7tK5BVG4jPZyOe9c6kgM6ixKaY8,44
23
+ junifer/api/res/afni/afni,sha256=idLvNWHwd6P4jWXfk6hMXQckdpcTJYbvnLC3uNP6sBg,42
24
+ junifer/api/res/afni/run_afni_docker.sh,sha256=_MHr4oEfnjvFEegx8VWl3S0Js0KioySvtJfdxyea0JE,1130
25
+ junifer/api/res/ants/ResampleImage,sha256=oJKZ31rBAW20ETozB8Ub5SbXMuhmZfrerpJTnRu-hOY,51
26
+ junifer/api/res/ants/antsApplyTransforms,sha256=SqlQEJ2RMMw_qGyDaNTXKzQqO7Bvrm6y5SEPmyqHiYc,57
27
+ junifer/api/res/ants/antsApplyTransformsToPoints,sha256=lqyvQGo8oI-RNpNlRqz-BvLHh7Th5HQgsDZjHF6nEeI,65
28
+ junifer/api/res/ants/run_ants_docker.sh,sha256=d6lZ9CCPP3nsCALhW4T4tI67gyUSiM4AuXj5JPKTLtA,1119
29
+ junifer/api/res/fsl/applywarp,sha256=DBgHfsn1yXWq0t-P7J0YvrjjJNgiblwDsh9L1hF9v_w,46
30
+ junifer/api/res/fsl/flirt,sha256=tSjiUco8ui8AbHD7mTzChEwbR0Rf_4iJTgzYTPF_WuQ,42
31
+ junifer/api/res/fsl/img2imgcoord,sha256=Zmaw3oJYrEltcXiPyEubXry9ppAq3SND52tdDWGgeZk,49
32
+ junifer/api/res/fsl/run_fsl_docker.sh,sha256=mRLtZo0OgDwleoee2MG6rYI37HVuGNk9zOADwcl97RA,1122
33
+ junifer/api/res/fsl/std2imgcoord,sha256=-X5wRH6XMl0yqnTACJX6MFhO8DFOEWg42MHRxGvimXg,49
34
+ junifer/api/tests/test_api_utils.py,sha256=zDRQiqFOaoO02FpzJCxEbZvsP4u4__Yr25e5k5MJwuI,2713
35
+ junifer/api/tests/test_cli.py,sha256=FYGuTLlqjB9IifMIdvHEGSQSSy6ym6623fKKPs8PsM8,8871
36
+ junifer/api/tests/test_functions.py,sha256=mvxdaGHxPje-aQGS2fo95xjU7jOf8TYaTWqwFZ5T0oY,17215
37
+ junifer/api/tests/test_parser.py,sha256=eUz2JPVb0_cxvoeI1O_C5PMNs5v_lDzGsN6fV1VW5Eg,6109
38
+ junifer/api/tests/data/gmd_mean.yaml,sha256=Ohb_C5cfQMK-59U9O1ZhejXyBtzLc5Y4cv8QyYq2azg,330
39
+ junifer/api/tests/data/gmd_mean_htcondor.yaml,sha256=f7NLv_KIJXTiPNFmOWl2Vw8EfwojhfkGtwbh5prbd6w,417
40
+ junifer/api/tests/data/partly_cloudy_agg_mean_tian.yml,sha256=nS8K_R1hEuV71Vv-i9SYjnDGAK2FClQqBiE4kOuQ_ys,313
41
+ junifer/configs/__init__.py,sha256=r6BU6vW7FVapSD81j24QeQiZe1oKspsJJRRPjXnCk00,120
42
+ junifer/configs/juseless/__init__.py,sha256=Ws98DvlLEMHfwW6BjmvHQmqTlFRDps9r4pLAfNjfEiM,149
43
+ junifer/configs/juseless/datagrabbers/__init__.py,sha256=tqCLmelWqB1xfElvknnaJ5oVRPp9XVXtZLzIpxYIghg,452
44
+ junifer/configs/juseless/datagrabbers/aomic_id1000_vbm.py,sha256=4Vf1AC6WSDkCaYXKJXEkJHS2UsdON57wdhj_oqpK-vw,1428
45
+ junifer/configs/juseless/datagrabbers/camcan_vbm.py,sha256=GXnDML55kKEGSb38olRUWL_AFdN9IvPViEGP9CaDTUQ,1497
46
+ junifer/configs/juseless/datagrabbers/ixi_vbm.py,sha256=mCuv-27AsN9bReoq3Fo7CJaC2Jkmd5Y1sFEk5ExGqUo,2263
47
+ junifer/configs/juseless/datagrabbers/ucla.py,sha256=C14OW7eI2kruJIqgAsd_PtJTyW5R8wp9lDOpQOnfarM,4843
48
+ junifer/configs/juseless/datagrabbers/ukb_vbm.py,sha256=d2N3X1OVrcmkKNVkruNDKzU2iqBH9oGUnhfxkg0-7aw,1485
49
+ junifer/configs/juseless/datagrabbers/tests/test_aomic_id1000_vbm.py,sha256=Y_npFmmj0MN0TYv8jaxVMgFHLMQLZ8vXl8lWQKvOYbc,1001
50
+ junifer/configs/juseless/datagrabbers/tests/test_camcan_vbm.py,sha256=o0dzptS97pxrWaY7I1m0dpJtsnAwmIXNqdU9ABTWCqI,975
51
+ junifer/configs/juseless/datagrabbers/tests/test_ixi_vbm.py,sha256=8jxpNZelXwpJGvA5LOfpso2X8yt1chvERAYmv76hS_g,1252
52
+ junifer/configs/juseless/datagrabbers/tests/test_ucla.py,sha256=fFxllR0yvt7hiQYdSXJkl9_05UwemKfcp1vC6xf0X-U,3315
53
+ junifer/configs/juseless/datagrabbers/tests/test_ukb_vbm.py,sha256=b9hjc1mgO--PSRC3id2EzzfE2yWNsuZ2UI47a6sfGZU,1025
54
+ junifer/data/__init__.py,sha256=1E6JtzpnjjA0IutkJkarEik9NhCP9PPI6K0-37XDZVg,602
55
+ junifer/data/coordinates.py,sha256=Y_-gGCvIqxjArGf-E6LmYzz6ZIbG0ugw5NjgIeirXuA,12850
56
+ junifer/data/masks.py,sha256=u_DDKg8bv0Fec_DwEc1Ledajy5yen3VT-ZblQT6cwaI,23473
57
+ junifer/data/parcellations.py,sha256=tWTrZE68K1X-_1kekRFhVmbrHX_lfSipjaPPjgy0etM,65220
58
+ junifer/data/template_spaces.py,sha256=V_rsSeyXk1TtOtPuDeRtJxDfr0YU08ZB0JLgXNT3DIE,5752
59
+ junifer/data/utils.py,sha256=Jmbc7SLzy4nLP_zkWv_aJzb1MZ27tutJ98ifsECCamM,1295
60
+ junifer/data/VOIs/meta/AutobiographicalMemory_VOIs.txt,sha256=9af38naeL18Tlt_gy_ep6vyTAxOB336JYjbo5FvP8PQ,686
61
+ junifer/data/VOIs/meta/CogAC_VOIs.txt,sha256=Sr5_E712OLdeQRyUcDNM0wLBvZIyO6gc9Q7KkyJHX1A,398
62
+ junifer/data/VOIs/meta/CogAR_VOIs.txt,sha256=t3NLwEVUZTPP34p15SaB3UInLrQyK-7Qc4iLBuQlZu8,189
63
+ junifer/data/VOIs/meta/DMNBuckner_VOIs.txt,sha256=2trjgKF00PnCxTtfCXYmr-J7P_Jl-iX_qUocmzOR1nk,86
64
+ junifer/data/VOIs/meta/Dosenbach2010_MNI_VOIs.txt,sha256=rIh9-OCBG0if2v1V4CeK27ZDVXPg6A2sFSqcwHZ1i3Y,3372
65
+ junifer/data/VOIs/meta/Empathy_VOIs.txt,sha256=8rwZkEe-TrI7vT_ArzqIMSSlkGvg3RJG3PlHoxZKYjU,486
66
+ junifer/data/VOIs/meta/Motor_VOIs.txt,sha256=NFpqgxlSrt9x3Tb9vn1ISogc684rRgVQbFPlifmI8S4,219
67
+ junifer/data/VOIs/meta/MultiTask_VOIs.txt,sha256=T2f7_9qWpJcfMic-Pgg4VyNDrcNDOzN9kE81WM_6elk,220
68
+ junifer/data/VOIs/meta/PhysioStress_VOIs.txt,sha256=6hLYGMPFFnbhtu_9J3_hDul0LfUYAwhygzdLLG6R0qU,378
69
+ junifer/data/VOIs/meta/Power2011_MNI_VOIs.txt,sha256=0tLVEmCEUjwJ7Rsdibv2qxilc2u-jvoBgCbOs7ax6iU,3836
70
+ junifer/data/VOIs/meta/Power2013_MNI_VOIs.tsv,sha256=FERfBfExvbBWQxOJ4xRITiFB1rL4O4PpUeHFKPS03Fk,3836
71
+ junifer/data/VOIs/meta/Rew_VOIs.txt,sha256=dCYre7kP4Ca-S52W0weU7N2UUZM8522WYlb9d7kUo-A,569
72
+ junifer/data/VOIs/meta/Somatosensory_VOIs.txt,sha256=OylWpfoluG65whXqEODQ5qvreMdYXBQskMjmnvA2fYc,295
73
+ junifer/data/VOIs/meta/ToM_VOIs.txt,sha256=sMSqMCe6p0MGwIWEGkelMWuFH5sfpJ8ONjGlqmRe_Vw,323
74
+ junifer/data/VOIs/meta/VigAtt_VOIs.txt,sha256=EPklcFTcfKnuI08QjYIrE_87BSQLipU_VZYRWuSXhY8,353
75
+ junifer/data/VOIs/meta/WM_VOIs.txt,sha256=6uyH5nsv9i5bKS_aEYCgg3wgE7hjw5DI1gD37lUR5Zg,518
76
+ junifer/data/VOIs/meta/eMDN_VOIs.txt,sha256=p5D4GdBuGl1d5IbXhsuj3XIU6UGMxhzCR-T8Dwfxz30,382
77
+ junifer/data/VOIs/meta/eSAD_VOIs.txt,sha256=DwgDEFSZoAojG5RP6HpSvlRPpXItBzx8ms-1zoSxKRk,268
78
+ junifer/data/VOIs/meta/extDMN_VOIs.txt,sha256=Ogx1QvqZcnXDM3ncF2ha78br8xwQ5wklSjHygtoLpyI,317
79
+ junifer/data/masks/vickery-patil/CAT12_IXI555_MNI152_TMP_GS_GMprob0.2_clean.nii.gz,sha256=j6EY8EtRnUuRxeKgD65Q6B0GPEPIALKDJEIje1TfnAU,88270
80
+ junifer/data/masks/vickery-patil/CAT12_IXI555_MNI152_TMP_GS_GMprob0.2_clean_3mm.nii.gz,sha256=crb_y7YO1vjjf2PwbRJUm8KamPK6fx1y0B_l-E3g8FY,12862
81
+ junifer/data/masks/vickery-patil/GMprob0.2_cortex_3mm_NA_rm.nii.gz,sha256=jfMe_4H9XEnArYms5bSQbqS2V1_HbLHTfI5amQa_Pes,8700
82
+ junifer/data/tests/test_coordinates.py,sha256=BNkz9qFbnwAI0oVlIm_XrT-z4Vsia_rMtMVaoFXT6mU,4328
83
+ junifer/data/tests/test_data_utils.py,sha256=_DaiC8K79gs9HFHxr-udNeE2YTM6JA0-1i-K2cqK9qA,1087
84
+ junifer/data/tests/test_masks.py,sha256=hJAvwPElhzvHYN15-6n98ABgCD-3lBY5WwHFuhImRe0,16172
85
+ junifer/data/tests/test_parcellations.py,sha256=ZEU1VHIK0AyxpclcJhG_0rQU0phaBU_dHP7Erfi3mN8,38222
86
+ junifer/data/tests/test_template_spaces.py,sha256=PJulN7xHpAcSOTY-UzTG_WPywZEBSlAZGiNG4gzk1_8,3144
87
+ junifer/datagrabber/__init__.py,sha256=pZHJIY8nAlbVngsyRScE6a6GKbytiwjJB7SdJNqIbl4,680
88
+ junifer/datagrabber/base.py,sha256=KgMSKfkwd4yLW4PhoJDoWMgcDkGmDoIs6jkgKyOJd9A,6303
89
+ junifer/datagrabber/datalad_base.py,sha256=SsGUJdefdDgAJARBG5kHcbLK2CvvnoEto0TpGZUgnWE,10659
90
+ junifer/datagrabber/dmcc13_benchmark.py,sha256=K7-TnVRCDQwL6IIaFofJABKr2Jho0loewAavzdmBjK0,12869
91
+ junifer/datagrabber/multiple.py,sha256=eXQIsvSNvD8GuEITjMaMoi1GwoeyWXXbQMRi-f2qgc4,4923
92
+ junifer/datagrabber/pattern.py,sha256=5XQe0k3iiTID5fbUsShjFKaqkueuPU34ZpzOi1JzFEw,12700
93
+ junifer/datagrabber/pattern_datalad.py,sha256=y9ptDZEhSj41pf05WNySrj8j4kbi5uIXveFXv4dkKpk,4092
94
+ junifer/datagrabber/utils.py,sha256=NseewPJvhc0h7Ueyfi_KRUwFfs2V7HspBtYL2Xr9Dik,6965
95
+ junifer/datagrabber/aomic/__init__.py,sha256=R7yrRVBWsBW25CH0fw-KHpFwb_EC-MlPKDzssGfj5A0,281
96
+ junifer/datagrabber/aomic/id1000.py,sha256=hvi-25NWeakUX4Pu1YDjxfKbo6U4WUjw-I9c2kGmgnk,6005
97
+ junifer/datagrabber/aomic/piop1.py,sha256=ivQ1wjYAR1qb-fN13NWA-69iS8XvgMMUCwQR5fBh2n0,8428
98
+ junifer/datagrabber/aomic/piop2.py,sha256=LuYQL4t4k-K_74Gd8zVnV7Y5W6tt1krBpk0a7D5LQ9Q,8047
99
+ junifer/datagrabber/aomic/tests/test_id1000.py,sha256=cA329VAbZ9mY89vi756xqq1p4LHkBp4e7d_OZJOLsGk,4700
100
+ junifer/datagrabber/aomic/tests/test_piop1.py,sha256=Faqmya-OisThPom1nooxlacaCD4afLFSw03Wn58gK6g,5466
101
+ junifer/datagrabber/aomic/tests/test_piop2.py,sha256=8emWWImX-ltUHJtEFWo8Jng_0kK-Yz66RyA7ddt-By4,5265
102
+ junifer/datagrabber/hcp1200/__init__.py,sha256=zy4Qq1_m3vECEhioG-UDteco2b5cni_8xuElICaRtt4,189
103
+ junifer/datagrabber/hcp1200/datalad_hcp1200.py,sha256=p5Bbg09qoM46km9eFSlspwLwOe6LMJFSIZ9NC9E2lmc,2432
104
+ junifer/datagrabber/hcp1200/hcp1200.py,sha256=ohXHmrQHWjqRZSEXI6E5zla1d_t6LZTbv-cAj79w3PU,6091
105
+ junifer/datagrabber/hcp1200/tests/test_hcp1200.py,sha256=KJ-Jq01l0a6TaboG898qjBdPTHG1E3PZtHCjJ7n-1X0,10765
106
+ junifer/datagrabber/tests/test_base.py,sha256=fZdVhNhvfht9lpTHrAUf5E6mAfNNUP7OTQ5KLaBQ1gI,3506
107
+ junifer/datagrabber/tests/test_datagrabber_utils.py,sha256=SR2Zc9DJaCtuULhqCz10JCK7zc4VGnAcKT2pxloM1ys,6311
108
+ junifer/datagrabber/tests/test_datalad_base.py,sha256=SYxUB9_4YPMfrb7iJM-aJCWbGa3EJfYz31wAUCNa03s,16285
109
+ junifer/datagrabber/tests/test_dmcc13_benchmark.py,sha256=m1_ODoGAvSiFeGS-tyTaK1YHTveQRDeCWBsNjdknh04,8171
110
+ junifer/datagrabber/tests/test_multiple.py,sha256=Mx3xfDrQiWG2W5MW24P5L2XiSeALpJ2-jFlzWkKtu9w,5659
111
+ junifer/datagrabber/tests/test_pattern.py,sha256=Zmwg79f-qs6AEPVoFpooOquK7rm1hsmgkzuo11BG5PE,8019
112
+ junifer/datagrabber/tests/test_pattern_datalad.py,sha256=hxw_aXBwHjUo-aUrHescBA2dn1bSJxh-0oV8495iIEA,6483
113
+ junifer/datareader/__init__.py,sha256=WWoiIz6y0EdExWO3WCGiERNw3Y3WUsXyHaWnHilP2kE,263
114
+ junifer/datareader/default.py,sha256=BFtk_HJueia7EfhaIpgebe-RWHSKaLEO5btpHA--wo0,4848
115
+ junifer/datareader/tests/test_default_reader.py,sha256=9dPZSkba1YQjFsA0XwdUbx5sq8DVIEZoy_WfMAcvRus,5220
116
+ junifer/external/__init__.py,sha256=58gL7gNN_PI1GyN6r9CO035TzvJdi8S-zFg5reDt4Xc,116
117
+ junifer/external/h5io/h5io/__init__.py,sha256=LG7ru_Rt3EOE2H4PGYfBhC12Iax3yeTquZkd8TICiKk,469
118
+ junifer/external/h5io/h5io/_h5io.py,sha256=8dWZDYegoPcBkH_fHPdl0eXNWTaRdk9hfIQo8Mcegzo,28748
119
+ junifer/external/h5io/h5io/_version.py,sha256=mFY0GwwuN-a3M8w93_mskS6GZIvv9SNdjLfJaWNsm-I,22
120
+ junifer/external/h5io/h5io/chunked_array.py,sha256=K1HWf7R2Jc7gCzBqAoBjx0ZnMmUhTe3iAO6RF6PdUO4,3338
121
+ junifer/external/h5io/h5io/chunked_list.py,sha256=1Y5BbuWzurJlEFQzJNuDdC3fNZ39ENEMba99X_4VeSM,1952
122
+ junifer/external/nilearn/__init__.py,sha256=QkT7Z2n6L7_qyN0o69Z-mYuyLre0SF884PSBTnG_ltQ,199
123
+ junifer/external/nilearn/junifer_nifti_spheres_masker.py,sha256=sA8fbdaTHk2omYidApNO1hN0ObwDJR_h26P9i3MhbvM,16274
124
+ junifer/external/nilearn/tests/test_junifer_nifti_spheres_masker.py,sha256=qlMFWjo9y8mNLrdmN2qCEK6_nplASv2OlomSfTxDcuw,10370
125
+ junifer/markers/__init__.py,sha256=exUUmpDsPkoNa9FK6Y7pDusOYv56_zoci8hiOaxyswE,778
126
+ junifer/markers/base.py,sha256=Af8TyoNAIHWREZkIgi2su6PUqoloJXVGT-KW13WlWUM,6370
127
+ junifer/markers/collection.py,sha256=eD6_IJ3y-9lcN4r0ORZqgr2ICjHyTvlAKyh0HKPYqzk,5247
128
+ junifer/markers/ets_rss.py,sha256=7fr6mmbMM5NKIDV6bUyyu-pwHJH56GwYv6oozK4EX6k,4557
129
+ junifer/markers/parcel_aggregation.py,sha256=e0RM8-8Z5G7gdVdkB6GbreRLY2jvrM8rcTDzq65sv5g,8668
130
+ junifer/markers/sphere_aggregation.py,sha256=3gC8-Z0qbX2y_q-YbwpnPll6lmKZY5V-DdQQA7tFzWc,8275
131
+ junifer/markers/utils.py,sha256=b6Bt_isqsOD2OF7oHvEpHyilauxYZzyz8YcbGWq6J4A,3833
132
+ junifer/markers/complexity/__init__.py,sha256=nzL6GpVlFhMDaWyJ-ZtpPx940LUSAUmYcyqLoQ7K1-E,818
133
+ junifer/markers/complexity/complexity_base.py,sha256=Lb8UnWoeplZg1-SdS5GLMq_pY5Qow3JSciQMtZRNhAo,4405
134
+ junifer/markers/complexity/hurst_exponent.py,sha256=3j8blekVAJKWu_yBg_Rnn1z4Du5Xgej43sRXLcBq1Ag,4667
135
+ junifer/markers/complexity/multiscale_entropy_auc.py,sha256=UhSc53rPrcvPGB4Kh94bQCg8l0WSzpGrQ3JxMoDZmlg,4891
136
+ junifer/markers/complexity/perm_entropy.py,sha256=HxbSJg0Go8zahVmkyBJh_wurIN1b3y7mTvnn1rIvcq0,4418
137
+ junifer/markers/complexity/range_entropy.py,sha256=lHu2en5vCkOdbmNJDmhV8q8T_11svCLFQCpOxyHid0E,4548
138
+ junifer/markers/complexity/range_entropy_auc.py,sha256=MCmhbsBcgIXZ89VZw6mmmB6tlA5i4wdEDXgoJ9iZ_UA,5028
139
+ junifer/markers/complexity/sample_entropy.py,sha256=EghzytwNmXKbCiNJuf3ZY1mtyZ78Z7E0Vw07rD6-XPk,4498
140
+ junifer/markers/complexity/weighted_perm_entropy.py,sha256=n4o07BrUFboVw9kqB4u4ZpNQn37KhblfYDvsL3jrk_k,4544
141
+ junifer/markers/complexity/tests/test_complexity_base.py,sha256=0E0AjjBqenIb6ZzK-EMie24J4vVjWUjAPfkvvognu9Y,453
142
+ junifer/markers/complexity/tests/test_hurst_exponent.py,sha256=2LN8Z_D6LeEuspc9V4BIHwg6Q0JOKe2_2I0mVoSg9Kk,2026
143
+ junifer/markers/complexity/tests/test_multiscale_entropy_auc.py,sha256=ZcqaBthio0O4uwoYGlnjs2nES5En6IBZmYFAeKyKsLM,2097
144
+ junifer/markers/complexity/tests/test_perm_entropy.py,sha256=O0imYQ-Pdj_iNywJM64UiXeLAllfK-0WSXU-4ogrH4c,2014
145
+ junifer/markers/complexity/tests/test_range_entropy.py,sha256=bu0O3XCV2DPqoqDL9P6N6XjvL8YnId9XfG9RsK2iAAo,2017
146
+ junifer/markers/complexity/tests/test_range_entropy_auc.py,sha256=SOpUjFRbNopfMUKW3Slsmzd0bdNDv_g8wiwOuuhCDkA,2053
147
+ junifer/markers/complexity/tests/test_sample_entropy.py,sha256=3IeDnDgSeFNmUoPxQAJTSZvwN6S04-5r7NDvb0lzHmI,2025
148
+ junifer/markers/complexity/tests/test_weighted_perm_entropy.py,sha256=M7Qt_SFZSmptMi0cBGh5Merd1_3hPieIddl_pz7MWbs,2088
149
+ junifer/markers/falff/__init__.py,sha256=QAUIVtaOFWDL7B8xFrDgsmRum7Q0DCENyDYD1cPMJmM,197
150
+ junifer/markers/falff/_afni_falff.py,sha256=VzlpoSsxypjiz4GSUqYU6MWukKYwNLu38kRPIosXHBI,4496
151
+ junifer/markers/falff/_junifer_falff.py,sha256=DAwimHqYrZ0EITXwceM5R8cQdGvy-wWjSJwVf3aZgcU,4389
152
+ junifer/markers/falff/falff_base.py,sha256=ywfPqMa11xSHiY1W-OeLrmK67WQx-9mRoXUV2gIZJOo,5698
153
+ junifer/markers/falff/falff_parcels.py,sha256=xQu73cfYDQvOPqZv7HFmxy7YR1Apx0w3Qr2nzUMPFeU,5012
154
+ junifer/markers/falff/falff_spheres.py,sha256=wQzNI_IAQMRiwZPB3shjd0wlbW-IKIXArMCQuVy8C4I,5543
155
+ junifer/markers/falff/tests/test_falff_parcels.py,sha256=xvEJ9PPjvOfsmyYyEAiycj_35EOivEkLue5yPHSptCs,4009
156
+ junifer/markers/falff/tests/test_falff_spheres.py,sha256=E-Hsny-iH34TmWIMXEmq6j-q0qNpAYv-cwnxZDeMnlg,4040
157
+ junifer/markers/functional_connectivity/__init__.py,sha256=Uq8aXpHJesedJNHEixpc4bn7VvYZMhf710jyiX45XlE,499
158
+ junifer/markers/functional_connectivity/crossparcellation_functional_connectivity.py,sha256=YEtjAnmEF98DQm6HRtWqoTdupF4bU1-UKh9rRx1LY-E,5215
159
+ junifer/markers/functional_connectivity/edge_functional_connectivity_parcels.py,sha256=z5iL8W1z2fDMxRIY_Exc99qnus_DVCPQ8aTnvfRrhp8,4339
160
+ junifer/markers/functional_connectivity/edge_functional_connectivity_spheres.py,sha256=fI2aa25NWRRTaP6AqXnaFL3FG3zpR6gYU85ZsxcpNG8,4994
161
+ junifer/markers/functional_connectivity/functional_connectivity_base.py,sha256=MKwngbj7pDVCxcJPZPrTAi7dh6hjak0McEonk20PkWI,5179
162
+ junifer/markers/functional_connectivity/functional_connectivity_parcels.py,sha256=QBaJQfgSqxGlnD47LMHJQqXvPlZF5a79yVmmDFJg-WQ,3990
163
+ junifer/markers/functional_connectivity/functional_connectivity_spheres.py,sha256=ZdMylng5uvlA4JDz-8giNeDh_hTWh4k2fuPx_HowfH0,4690
164
+ junifer/markers/functional_connectivity/tests/test_crossparcellation_functional_connectivity.py,sha256=0TOJhdjrD_96j80Yt4AmtOWxoQLDF_pdVW9mVHsm_uU,3142
165
+ junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_parcels.py,sha256=gXJHBm56TCwFMK7NGtO9PHOdyr0Ymlm0jByusfrBakE,1992
166
+ junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_spheres.py,sha256=FhlRqiKzk_W7v4Yc1pgyzUp6SKXu_9kq7dPc1GfkdXA,2197
167
+ junifer/markers/functional_connectivity/tests/test_functional_connectivity_base.py,sha256=RmPTrG0uLKb5RgdHXUnH6lon60FxN1JCtr-dsTBaX28,522
168
+ junifer/markers/functional_connectivity/tests/test_functional_connectivity_parcels.py,sha256=iV1HY2t0ywBjOn06SLBlfn3x2c3Yuopq8W4pPQyfdzQ,3096
169
+ junifer/markers/functional_connectivity/tests/test_functional_connectivity_spheres.py,sha256=wMK5GVcRz68zsCPMtTXxoG7H68Ab8wk9_bsrcyRz1R4,5090
170
+ junifer/markers/reho/__init__.py,sha256=9IfeAxKEVgMWbhud-8T54Le07I4pR6A29sMKeFtvEPg,189
171
+ junifer/markers/reho/_afni_reho.py,sha256=YZQAG8iPPOqYWZgnzbySLFbRKadL5WUYfaPbWAWHzEk,6444
172
+ junifer/markers/reho/_junifer_reho.py,sha256=oATv5cBbc42HdxpKbeokuflKYrx6vitqjiVfS_f4Ibs,9279
173
+ junifer/markers/reho/reho_base.py,sha256=04rQFivmeZx7EG9-fP00bp0rKruUAi8x_ngVoMSjSl4,4492
174
+ junifer/markers/reho/reho_parcels.py,sha256=zOx6pYPqwNQ40H-0qZguWUTOGo9XQ1NLiA2OtSJn8LI,6142
175
+ junifer/markers/reho/reho_spheres.py,sha256=xAnEVIV-5Hq9CbEkzcpoL2rlcU5SsifONib9BPJaVDA,6758
176
+ junifer/markers/reho/tests/test_reho_parcels.py,sha256=v3s52rZPeSgspL2vECpUCBp4dSuFh5_NKeEfBA6QQt0,3889
177
+ junifer/markers/reho/tests/test_reho_spheres.py,sha256=Gj-q2NajtYVRacvTsexxCyAQrpMWBQ-GbdXZpiDujIU,3803
178
+ junifer/markers/temporal_snr/__init__.py,sha256=gyJPT19xuig-og0yuzZZeRC_zX4ondcLf-wNKFDaGvs,243
179
+ junifer/markers/temporal_snr/temporal_snr_base.py,sha256=T5VGhiEPtTaUpF7pE5mTZAy_O9vtgdZMtthSLncI0P4,4024
180
+ junifer/markers/temporal_snr/temporal_snr_parcels.py,sha256=OLkA5YZoPwc0kfTyxS7LTT-j1jBDiwLgHm8ulFHQs7o,3299
181
+ junifer/markers/temporal_snr/temporal_snr_spheres.py,sha256=VoxVA_b48Ppf7P6cxYq05WKdiqK9YteIFPbCPfOOyTM,4007
182
+ junifer/markers/temporal_snr/tests/test_temporal_snr_base.py,sha256=KRln5ibLTJJQ_f3pnioATfwyhK5htGc2o2J7CPcoyfs,426
183
+ junifer/markers/temporal_snr/tests/test_temporal_snr_parcels.py,sha256=a2EUGmAdyauFCxKnDxmr9vVguYLUfbxrzl8rExBnplk,1961
184
+ junifer/markers/temporal_snr/tests/test_temporal_snr_spheres.py,sha256=VSc7CrN8iWsI7099REwlBIjeQ3BlmVdXWs56ZLfYGbI,2094
185
+ junifer/markers/tests/test_collection.py,sha256=crFB7vjdkll9uuyQtKsTW6BlqSvvjfv5e6wxa8nkU-0,6812
186
+ junifer/markers/tests/test_ets_rss.py,sha256=fjFOBBIG_vaNblyDFFYhoYc0asWS1rQR0B02Feb_8Vw,2448
187
+ junifer/markers/tests/test_marker_utils.py,sha256=SR3ADWI3uGv4ozYqVu-rMZnJVqP6JnjLBgo6qUm16Wk,1478
188
+ junifer/markers/tests/test_markers_base.py,sha256=cbuCeMmjyFMP1ea6J6XRsBQo8CivQ41ooABiT1Snj2k,3076
189
+ junifer/markers/tests/test_parcel_aggregation.py,sha256=N0Nn42BF1apQkhntZikiU73b5clJkY2LThBv2YScJPg,26531
190
+ junifer/markers/tests/test_sphere_aggregation.py,sha256=Xu2vrZvaK0oCZqjuJGiC6Tl8jSOFwVl75U4geclpy14,9747
191
+ junifer/onthefly/__init__.py,sha256=GG_Z5NgnVNph6CLPtGFI2HE_OIuVTZ874BOq72mA-ps,160
192
+ junifer/onthefly/read_transform.py,sha256=8ia2QktWpVhPDD20bKywuVHPU1Ys2Wyc_HvKyyRTcVo,4309
193
+ junifer/onthefly/tests/test_read_transform.py,sha256=D2C3IpXQHdsJSF07v8rEwGntLGXjZOserlRhebJUAVM,4719
194
+ junifer/pipeline/__init__.py,sha256=yV9vFzwb1OYwC5apEGzDVpjEGCZxfEOmx5FoEha9xY4,282
195
+ junifer/pipeline/pipeline_step_mixin.py,sha256=kU0Wut_chlT-iTUb8NP72c7YEoHAECbp7AC0vVsMejc,7219
196
+ junifer/pipeline/registry.py,sha256=12tRsFeDz_kj9D1nzy9SAkBpchu5IyRH7U2h7eqPDZA,4260
197
+ junifer/pipeline/singleton.py,sha256=-BiiyFiEO1EItztBcAWI_eyApR-oJTAGVRXkV706rQ4,985
198
+ junifer/pipeline/update_meta_mixin.py,sha256=WJhLdeIZQ3BjiEcPJM01wlH70ZNj0z5ZS2FfRTJG5oo,1532
199
+ junifer/pipeline/utils.py,sha256=qlDUPOFfAq53EDtyHK-klliUwgQBiFDsFghAJO2iHUQ,8039
200
+ junifer/pipeline/workdir_manager.py,sha256=s2I1I4vjxxqAVAT12ZrZx9KW0WxNMtxRTozB4Xcnh9M,8019
201
+ junifer/pipeline/tests/test_pipeline_step_mixin.py,sha256=_ykZzyNzREXy-r_yv1gY_jquLZzVBl8qwYrVORCKY_k,7807
202
+ junifer/pipeline/tests/test_registry.py,sha256=rYN0pO3gSueQ6XsasEM9VU5BkLyaNl8WaCZiaO8Rno0,4105
203
+ junifer/pipeline/tests/test_update_meta_mixin.py,sha256=UeWwpUi-Q5WVd36Fgfn_utXplSVXMSjLcdO2mR2xLTk,1355
204
+ junifer/pipeline/tests/test_workdir_manager.py,sha256=E1WY4C-GDsx2c49sePqr1WR_Y3nZ1kiRn4Veu506uTs,2801
205
+ junifer/preprocess/__init__.py,sha256=fPZPFvx-BIUswBP4bx5HdBG1vLFkUMI4mnn6li339wU,375
206
+ junifer/preprocess/base.py,sha256=Bn1VdonQ1f_DDPwFMpdaeyfLfNSnROulr-U8HuGQ81A,6697
207
+ junifer/preprocess/bold_warper.py,sha256=pEQ1GaWTV2Ili9WyqJgtq0PGHm4hNztXyY9ixoLNZnw,9060
208
+ junifer/preprocess/ants/__init__.py,sha256=Uobmbhh6_gOowkF2hQNSQOh3AYeaXzarBXEcLJzhERE,112
209
+ junifer/preprocess/ants/ants_apply_transforms_warper.py,sha256=1qkTq4NoW-c8CDEvh8j4uuN_HtneXSpG0mqRc6_qrNk,5556
210
+ junifer/preprocess/ants/tests/test_ants_apply_transforms_warper.py,sha256=IIwzo7iTFR2xy00S59ubXb0JSPukdPiRv6mdd25oeBA,1678
211
+ junifer/preprocess/confounds/__init__.py,sha256=EDlcD9jy8O9xluJr6XOnFXtjGCDVqwg6sDIRDMbM8ZU,235
212
+ junifer/preprocess/confounds/fmriprep_confound_remover.py,sha256=UN9B5P-Lqa5mA9jWi3gFJ7iBx1HSyfFrGuTZt4u4h1M,20841
213
+ junifer/preprocess/confounds/tests/test_fmriprep_confound_remover.py,sha256=noKP4YvghNzVvIRjDHnANCBFmbZiAKcDQG22dwqLvss,20757
214
+ junifer/preprocess/fsl/__init__.py,sha256=DerGFQ-dIuX5PT9a_BH6QkIXkJZVymjYy-woXF7tYGc,111
215
+ junifer/preprocess/fsl/apply_warper.py,sha256=k6ZzoDhXgsqcJZYYdx45Y3rN9xJERc02953_qhTqMtE,5144
216
+ junifer/preprocess/fsl/tests/test_apply_warper.py,sha256=eCrSPYIGTKFDiBtseZFkghjhU7j7np59TZeGdKHkhMs,1324
217
+ junifer/preprocess/tests/test_bold_warper.py,sha256=U_r7DwPWoO_it1LIkhuQWBe20a-6X5c8o0AvTOnWKEc,4636
218
+ junifer/preprocess/tests/test_preprocess_base.py,sha256=-0rpe8QjqYES36H6MHuDs3cv_6upHBdVHnFMgQsmEX4,2571
219
+ junifer/preprocess/warping/__init__.py,sha256=zW4DVt_RPJWT0-AsylGmh9wgFBDPkU-hx4VzV_qPayU,154
220
+ junifer/preprocess/warping/_ants_warper.py,sha256=Y1UzZ5jy1TvlLEkaQKW7jCNvEHufZMdQFbg2JpY3UaM,5690
221
+ junifer/preprocess/warping/_fsl_warper.py,sha256=eELmS44LYYANQaWR3VDKv8iwpEC2qnF9kbTYRanR2mE,3204
222
+ junifer/preprocess/warping/space_warper.py,sha256=BW7ymZdr4h7lJRtPLi3RT7qwgmu-HFJFqzZNUl341YU,6589
223
+ junifer/preprocess/warping/tests/test_space_warper.py,sha256=hHF97XUrMeAu8pIPBUrqD77PijbSv5_dAj9-Zte7UZM,5622
224
+ junifer/storage/__init__.py,sha256=QlzBw9UrRhmg_f7zQVas9h313u3sfZIBicA3_0Skm4M,337
225
+ junifer/storage/base.py,sha256=UxDvj81gSmqqHspbSs1X_i9HvW5wXysDippI7HWM7aM,9654
226
+ junifer/storage/hdf5.py,sha256=oxdPuCG0hxzSDNH0uHnYFwVr_wp0g9yvgZf8bv3PkJM,35631
227
+ junifer/storage/pandas_base.py,sha256=Qu3Az-xEaFftsiZwordONnOF2UBO1JgkrP8tmxhXUN4,7473
228
+ junifer/storage/sqlite.py,sha256=P-eKlrptY-vRxA4mDAC5UyJzqCWNC2C_rgKlZFGjiKg,21244
229
+ junifer/storage/utils.py,sha256=I-is6bGE29bNwlqv2P8B5QN2zAnY7A7fm8Y-AwMJ0MU,7258
230
+ junifer/storage/tests/test_hdf5.py,sha256=ACTGcO6p9iP_HVGBK9RJ4wF3sixR_aFewSL8PK8OBSI,29338
231
+ junifer/storage/tests/test_pandas_base.py,sha256=y_TfUGpuXkj_39yVon3rMDxMeBrZXs58ZW6OSty5LNw,4058
232
+ junifer/storage/tests/test_sqlite.py,sha256=JPfE6r34o86XkKaB6yjMVmO_2vUV40DjsaHICagUtjk,28318
233
+ junifer/storage/tests/test_storage_base.py,sha256=YzgfspuggzXejyPIoRCPST3ZzH9Pi7dgl0IHN7kynXM,3071
234
+ junifer/storage/tests/test_utils.py,sha256=vRGhbeOsSn2Izhjh5AaaJkp6X2EoIQVH3a-9COFVnzg,11854
235
+ junifer/testing/__init__.py,sha256=5rCgJOF9m2du2u4Qsaze9SZ1oDjKptn6-QbN7VPhD1I,235
236
+ junifer/testing/datagrabbers.py,sha256=4E368euqkZtSkNyf8Q45GTittMYGzev3mIwngCcAiMY,6496
237
+ junifer/testing/registry.py,sha256=iGH3hAt36VtvnZO7UQjybHGh2FI8vo1InY3uDSct5Ps,720
238
+ junifer/testing/utils.py,sha256=Qgf1ZPk-V1jU2g82a7K0P43VAxbTjOnnBfdV-9wDuMo,558
239
+ junifer/testing/data/sub-0001_task-anticipation_acq-seq_desc-confounds_regressors.tsv,sha256=iDY1apF5caxnyGqvBYWer5JRKQIfuOwoT-SzzsgL59s,406849
240
+ junifer/testing/tests/test_oasisvmbtesting_datagrabber.py,sha256=BtfExi4VF-jZsi5A3hHS_EGm2O_bJoXnxWF44Z_4i24,794
241
+ junifer/testing/tests/test_partlycloudytesting_datagrabber.py,sha256=1VY71RhGtLD9Yb40o617G4fWRJQkhDoE2N50udyn6ng,1276
242
+ junifer/testing/tests/test_spmauditory_datagrabber.py,sha256=1G1emk-Ze59HiNLaYsyIz5O1YGW9darcqlzvhE-J_Mc,919
243
+ junifer/testing/tests/test_testing_registry.py,sha256=oerticBaPRaRZm3yANzInLac0Mqph3Y0aZPQFayu7xA,827
244
+ junifer/tests/test_main.py,sha256=GMff7jlisGM9_FsiUwWDte43j-KQJGFRYZpwRRqTkd8,373
245
+ junifer/tests/test_stats.py,sha256=3vPMgYYpWxk8ECDFOMm3-dFBlh4XxjL83SwRBSBAHok,4155
246
+ junifer/utils/__init__.py,sha256=sFpsDKbPPtoU3Db3OSO9Vo45u4yE7UfocNaBtD-qvdk,310
247
+ junifer/utils/fs.py,sha256=Jd9AoV2fIF7pT7KhXsn8T1O1fJ1_SFZgaFuOBAM7DG8,460
248
+ junifer/utils/helpers.py,sha256=Hp3yGZa9x659BCqFTd4keEU1gbHXNAbJ1_lHG1M6lwI,1338
249
+ junifer/utils/logging.py,sha256=furcU3XIUpUvnpe4PEwzWWIWgmH4j2ZA4MQdvSGWjj0,9216
250
+ junifer/utils/tests/test_fs.py,sha256=WQS7cKlKEZ742CIuiOYYpueeAhY9PqlastfDVpVVtvE,923
251
+ junifer/utils/tests/test_helpers.py,sha256=k5qqfxK8dFyuewTJyR1Qn6-nFaYNuVr0ysc18bfPjyU,929
252
+ junifer/utils/tests/test_logging.py,sha256=l8oo-AiBV7H6_IzlsNcj__cLeZBUvgIGoaMszD9VaJg,7754
253
+ junifer-0.0.5.dev11.dist-info/AUTHORS.rst,sha256=rmULKpchpSol4ExWFdm-qu4fkpSZPYqIESVJBZtGb6E,163
254
+ junifer-0.0.5.dev11.dist-info/LICENSE.md,sha256=MqCnOBu8uXsEOzRZWh9EBVfVz-kE9NkXcLCrtGXo2yU,34354
255
+ junifer-0.0.5.dev11.dist-info/METADATA,sha256=M7Ha4lejBN2oMO2awvM7hGccPNH-aTvVDVk5GIxtOxs,8234
256
+ junifer-0.0.5.dev11.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
257
+ junifer-0.0.5.dev11.dist-info/entry_points.txt,sha256=DxFvKq0pOqRunAK0FxwJcoDfV1-dZvsFDpD5HRqSDhw,48
258
+ junifer-0.0.5.dev11.dist-info/top_level.txt,sha256=4bAq1R2QFQ4b3hohjys2JBvxrl0GKk5LNFzYvz9VGcA,8
259
+ junifer-0.0.5.dev11.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (71.1.0)
2
+ Generator: bdist_wheel (0.43.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,3 +0,0 @@
1
- #!/bin/bash
2
-
3
- run_freesurfer_docker.sh mri_binarize "$@"
@@ -1,3 +0,0 @@
1
- #!/bin/bash
2
-
3
- run_freesurfer_docker.sh mri_mc "$@"
@@ -1,3 +0,0 @@
1
- #!/bin/bash
2
-
3
- run_freesurfer_docker.sh mri_pretess "$@"
@@ -1,3 +0,0 @@
1
- #!/bin/bash
2
-
3
- run_freesurfer_docker.sh mris_convert "$@"