junifer 0.0.5.dev131__py3-none-any.whl → 0.0.5.dev145__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 (123) hide show
  1. junifer/__init__.py +17 -0
  2. junifer/_version.py +2 -2
  3. junifer/api/__init__.py +3 -0
  4. junifer/api/decorators.py +9 -0
  5. junifer/api/functions.py +7 -4
  6. junifer/api/parser.py +3 -0
  7. junifer/api/queue_context/__init__.py +3 -0
  8. junifer/api/res/afni/run_afni_docker.sh +1 -1
  9. junifer/api/res/ants/run_ants_docker.sh +1 -1
  10. junifer/api/res/fsl/run_fsl_docker.sh +1 -1
  11. junifer/configs/juseless/__init__.py +3 -0
  12. junifer/configs/juseless/datagrabbers/__init__.py +9 -0
  13. junifer/configs/juseless/datagrabbers/aomic_id1000_vbm.py +3 -0
  14. junifer/configs/juseless/datagrabbers/camcan_vbm.py +3 -0
  15. junifer/configs/juseless/datagrabbers/ixi_vbm.py +3 -0
  16. junifer/configs/juseless/datagrabbers/ucla.py +3 -0
  17. junifer/configs/juseless/datagrabbers/ukb_vbm.py +3 -0
  18. junifer/data/__init__.py +20 -0
  19. junifer/data/coordinates.py +8 -0
  20. junifer/data/masks.py +10 -0
  21. junifer/data/parcellations.py +9 -0
  22. junifer/data/template_spaces.py +3 -0
  23. junifer/data/utils.py +3 -0
  24. junifer/datagrabber/__init__.py +15 -0
  25. junifer/datagrabber/aomic/__init__.py +3 -0
  26. junifer/datagrabber/aomic/id1000.py +3 -0
  27. junifer/datagrabber/aomic/piop1.py +3 -0
  28. junifer/datagrabber/aomic/piop2.py +3 -0
  29. junifer/datagrabber/base.py +3 -0
  30. junifer/datagrabber/datalad_base.py +3 -0
  31. junifer/datagrabber/hcp1200/__init__.py +3 -0
  32. junifer/datagrabber/hcp1200/datalad_hcp1200.py +3 -0
  33. junifer/datagrabber/hcp1200/hcp1200.py +3 -0
  34. junifer/datagrabber/multiple.py +3 -0
  35. junifer/datagrabber/pattern.py +3 -0
  36. junifer/datagrabber/pattern_datalad.py +3 -0
  37. junifer/datagrabber/utils.py +3 -0
  38. junifer/datareader/__init__.py +3 -0
  39. junifer/datareader/default.py +3 -0
  40. junifer/markers/__init__.py +21 -0
  41. junifer/markers/base.py +21 -7
  42. junifer/markers/brainprint.py +3 -0
  43. junifer/markers/collection.py +3 -0
  44. junifer/markers/complexity/__init__.py +10 -0
  45. junifer/markers/complexity/complexity_base.py +3 -0
  46. junifer/markers/complexity/hurst_exponent.py +3 -0
  47. junifer/markers/complexity/multiscale_entropy_auc.py +3 -0
  48. junifer/markers/complexity/perm_entropy.py +3 -0
  49. junifer/markers/complexity/range_entropy.py +3 -0
  50. junifer/markers/complexity/range_entropy_auc.py +3 -0
  51. junifer/markers/complexity/sample_entropy.py +3 -0
  52. junifer/markers/complexity/tests/test_hurst_exponent.py +7 -0
  53. junifer/markers/complexity/tests/test_multiscale_entropy_auc.py +7 -0
  54. junifer/markers/complexity/tests/test_perm_entropy.py +7 -0
  55. junifer/markers/complexity/tests/test_range_entropy.py +7 -0
  56. junifer/markers/complexity/tests/test_range_entropy_auc.py +7 -0
  57. junifer/markers/complexity/tests/test_sample_entropy.py +7 -0
  58. junifer/markers/complexity/tests/test_weighted_perm_entropy.py +7 -0
  59. junifer/markers/complexity/weighted_perm_entropy.py +3 -0
  60. junifer/markers/ets_rss.py +3 -0
  61. junifer/markers/falff/__init__.py +3 -0
  62. junifer/markers/falff/_afni_falff.py +3 -0
  63. junifer/markers/falff/_junifer_falff.py +3 -0
  64. junifer/markers/falff/falff_base.py +3 -0
  65. junifer/markers/falff/falff_parcels.py +3 -0
  66. junifer/markers/falff/falff_spheres.py +3 -0
  67. junifer/markers/functional_connectivity/__init__.py +9 -0
  68. junifer/markers/functional_connectivity/crossparcellation_functional_connectivity.py +3 -0
  69. junifer/markers/functional_connectivity/edge_functional_connectivity_parcels.py +3 -0
  70. junifer/markers/functional_connectivity/edge_functional_connectivity_spheres.py +3 -0
  71. junifer/markers/functional_connectivity/functional_connectivity_base.py +3 -0
  72. junifer/markers/functional_connectivity/functional_connectivity_parcels.py +3 -0
  73. junifer/markers/functional_connectivity/functional_connectivity_spheres.py +3 -0
  74. junifer/markers/parcel_aggregation.py +3 -0
  75. junifer/markers/reho/__init__.py +3 -0
  76. junifer/markers/reho/_afni_reho.py +3 -0
  77. junifer/markers/reho/_junifer_reho.py +3 -0
  78. junifer/markers/reho/reho_base.py +2 -0
  79. junifer/markers/reho/reho_parcels.py +3 -0
  80. junifer/markers/reho/reho_spheres.py +3 -0
  81. junifer/markers/sphere_aggregation.py +3 -0
  82. junifer/markers/temporal_snr/__init__.py +3 -0
  83. junifer/markers/temporal_snr/temporal_snr_base.py +3 -0
  84. junifer/markers/temporal_snr/temporal_snr_parcels.py +3 -0
  85. junifer/markers/temporal_snr/temporal_snr_spheres.py +3 -0
  86. junifer/onthefly/__init__.py +3 -0
  87. junifer/onthefly/read_transform.py +3 -0
  88. junifer/pipeline/__init__.py +8 -0
  89. junifer/pipeline/pipeline_step_mixin.py +3 -0
  90. junifer/pipeline/registry.py +3 -0
  91. junifer/pipeline/singleton.py +3 -0
  92. junifer/pipeline/update_meta_mixin.py +3 -0
  93. junifer/pipeline/utils.py +3 -0
  94. junifer/pipeline/workdir_manager.py +3 -0
  95. junifer/preprocess/__init__.py +8 -0
  96. junifer/preprocess/base.py +4 -1
  97. junifer/preprocess/confounds/__init__.py +3 -0
  98. junifer/preprocess/confounds/fmriprep_confound_remover.py +3 -0
  99. junifer/preprocess/smoothing/__init__.py +3 -0
  100. junifer/preprocess/warping/__init__.py +3 -0
  101. junifer/preprocess/warping/_ants_warper.py +3 -0
  102. junifer/preprocess/warping/_fsl_warper.py +3 -0
  103. junifer/stats.py +3 -0
  104. junifer/storage/__init__.py +8 -0
  105. junifer/storage/base.py +3 -0
  106. junifer/storage/hdf5.py +3 -0
  107. junifer/storage/pandas_base.py +3 -0
  108. junifer/storage/sqlite.py +3 -0
  109. junifer/storage/utils.py +9 -0
  110. junifer/testing/__init__.py +3 -0
  111. junifer/testing/datagrabbers.py +7 -0
  112. junifer/testing/utils.py +3 -0
  113. junifer/utils/__init__.py +10 -0
  114. junifer/utils/fs.py +3 -0
  115. junifer/utils/helpers.py +3 -0
  116. junifer/utils/logging.py +10 -0
  117. {junifer-0.0.5.dev131.dist-info → junifer-0.0.5.dev145.dist-info}/METADATA +1 -1
  118. {junifer-0.0.5.dev131.dist-info → junifer-0.0.5.dev145.dist-info}/RECORD +123 -123
  119. {junifer-0.0.5.dev131.dist-info → junifer-0.0.5.dev145.dist-info}/AUTHORS.rst +0 -0
  120. {junifer-0.0.5.dev131.dist-info → junifer-0.0.5.dev145.dist-info}/LICENSE.md +0 -0
  121. {junifer-0.0.5.dev131.dist-info → junifer-0.0.5.dev145.dist-info}/WHEEL +0 -0
  122. {junifer-0.0.5.dev131.dist-info → junifer-0.0.5.dev145.dist-info}/entry_points.txt +0 -0
  123. {junifer-0.0.5.dev131.dist-info → junifer-0.0.5.dev145.dist-info}/top_level.txt +0 -0
@@ -27,6 +27,9 @@ from ...utils import logger, raise_error
27
27
  from ..base import BasePreprocessor
28
28
 
29
29
 
30
+ __all__ = ["fMRIPrepConfoundRemover"]
31
+
32
+
30
33
  FMRIPREP_BASICS = {
31
34
  "motion": [
32
35
  "trans_x",
@@ -4,3 +4,6 @@
4
4
  # License: AGPL
5
5
 
6
6
  from .smoothing import Smoothing
7
+
8
+
9
+ __all__ = ["Smoothing"]
@@ -4,3 +4,6 @@
4
4
  # License: AGPL
5
5
 
6
6
  from .space_warper import SpaceWarper
7
+
8
+
9
+ __all__ = ["SpaceWarper"]
@@ -20,6 +20,9 @@ from ...pipeline import WorkDirManager
20
20
  from ...utils import logger, run_ext_cmd
21
21
 
22
22
 
23
+ __all__ = ["ANTsWarper"]
24
+
25
+
23
26
  class ANTsWarper:
24
27
  """Class for space warping via ANTs antsApplyTransforms.
25
28
 
@@ -19,6 +19,9 @@ from ...pipeline import WorkDirManager
19
19
  from ...utils import logger, run_ext_cmd
20
20
 
21
21
 
22
+ __all__ = ["FSLWarper"]
23
+
24
+
22
25
  class FSLWarper:
23
26
  """Class for space warping via FSL FLIRT.
24
27
 
junifer/stats.py CHANGED
@@ -13,6 +13,9 @@ from scipy.stats.mstats import winsorize
13
13
  from .utils import logger, raise_error
14
14
 
15
15
 
16
+ __all__ = ["get_aggfunc_by_name", "count", "winsorized_mean", "select"]
17
+
18
+
16
19
  def get_aggfunc_by_name(
17
20
  name: str, func_params: Optional[Dict[str, Any]] = None
18
21
  ) -> Callable:
@@ -8,3 +8,11 @@ from .base import BaseFeatureStorage
8
8
  from .pandas_base import PandasBaseFeatureStorage
9
9
  from .sqlite import SQLiteFeatureStorage
10
10
  from .hdf5 import HDF5FeatureStorage
11
+
12
+
13
+ __all__ = [
14
+ "BaseFeatureStorage",
15
+ "PandasBaseFeatureStorage",
16
+ "SQLiteFeatureStorage",
17
+ "HDF5FeatureStorage",
18
+ ]
junifer/storage/base.py CHANGED
@@ -15,6 +15,9 @@ from ..utils import raise_error
15
15
  from .utils import process_meta
16
16
 
17
17
 
18
+ __all__ = ["BaseFeatureStorage"]
19
+
20
+
18
21
  class BaseFeatureStorage(ABC):
19
22
  """Abstract base class for feature storage.
20
23
 
junifer/storage/hdf5.py CHANGED
@@ -26,6 +26,9 @@ from .base import BaseFeatureStorage
26
26
  from .utils import element_to_prefix, matrix_to_vector, store_matrix_checks
27
27
 
28
28
 
29
+ __all__ = ["HDF5FeatureStorage"]
30
+
31
+
29
32
  def _create_chunk(
30
33
  chunk_data: List[np.ndarray],
31
34
  kind: str,
@@ -15,6 +15,9 @@ from ..utils import raise_error
15
15
  from .base import BaseFeatureStorage
16
16
 
17
17
 
18
+ __all__ = ["PandasBaseFeatureStorage"]
19
+
20
+
18
21
  class PandasBaseFeatureStorage(BaseFeatureStorage):
19
22
  """Abstract base class for feature storage via pandas.
20
23
 
junifer/storage/sqlite.py CHANGED
@@ -25,6 +25,9 @@ if TYPE_CHECKING:
25
25
  from sqlalchemy.engine import Engine
26
26
 
27
27
 
28
+ __all__ = ["SQLiteFeatureStorage"]
29
+
30
+
28
31
  @register_storage
29
32
  class SQLiteFeatureStorage(PandasBaseFeatureStorage):
30
33
  """Concrete implementation for feature storage via SQLite.
junifer/storage/utils.py CHANGED
@@ -14,6 +14,15 @@ 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
+
17
26
  def get_dependency_version(dependency: str) -> str:
18
27
  """Get dependency version.
19
28
 
@@ -6,3 +6,6 @@
6
6
 
7
7
  from . import datagrabbers
8
8
  from .utils import get_testing_data
9
+
10
+
11
+ __all__ = ["datagrabbers", "get_testing_data"]
@@ -14,6 +14,13 @@ 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
+
17
24
  class OasisVBMTestingDataGrabber(BaseDataGrabber):
18
25
  """DataGrabber for Oasis VBM testing data.
19
26
 
junifer/testing/utils.py CHANGED
@@ -6,6 +6,9 @@
6
6
  from pathlib import Path
7
7
 
8
8
 
9
+ __all__ = ["get_testing_data"]
10
+
11
+
9
12
  def get_testing_data(fname: str) -> Path:
10
13
  """Get the path to a testing data file.
11
14
 
junifer/utils/__init__.py CHANGED
@@ -7,3 +7,13 @@
7
7
  from .fs import make_executable
8
8
  from .logging import configure_logging, logger, raise_error, warn_with_log
9
9
  from .helpers import run_ext_cmd
10
+
11
+
12
+ __all__ = [
13
+ "make_executable",
14
+ "configure_logging",
15
+ "logger",
16
+ "raise_error",
17
+ "warn_with_log",
18
+ "run_ext_cmd",
19
+ ]
junifer/utils/fs.py CHANGED
@@ -8,6 +8,9 @@ import stat
8
8
  from pathlib import Path
9
9
 
10
10
 
11
+ __all__ = ["make_executable"]
12
+
13
+
11
14
  def make_executable(path: Path) -> None:
12
15
  """Make ``path`` executable.
13
16
 
junifer/utils/helpers.py CHANGED
@@ -9,6 +9,9 @@ from typing import List
9
9
  from .logging import logger, raise_error
10
10
 
11
11
 
12
+ __all__ = ["run_ext_cmd"]
13
+
14
+
12
15
  def run_ext_cmd(name: str, cmd: List[str]) -> None:
13
16
  """Run external command via subprocess.
14
17
 
junifer/utils/logging.py CHANGED
@@ -19,6 +19,16 @@ from warnings import warn
19
19
  import datalad
20
20
 
21
21
 
22
+ __all__ = [
23
+ "WrapStdOut",
24
+ "get_versions",
25
+ "log_versions",
26
+ "configure_logging",
27
+ "raise_error",
28
+ "warn_with_log",
29
+ ]
30
+
31
+
22
32
  logger = logging.getLogger("JUNIFER")
23
33
 
24
34
  # Set up datalad logger level to warning by default
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: junifer
3
- Version: 0.0.5.dev131
3
+ Version: 0.0.5.dev145
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>
@@ -1,13 +1,13 @@
1
- junifer/__init__.py,sha256=x1UR2jUcrUdm2HNl-3Qvyi4UUrU6ms5qm2qcmNY7zZk,391
2
- junifer/_version.py,sha256=xJ0ry6UqPABBfQQRadaTablPb10PPmU0qhy9lgF2Fjo,428
3
- junifer/stats.py,sha256=jN22_qFvWYBU9ZIMnCSzN4iOscWnWrcrUPIdLeDkV64,6163
4
- junifer/api/__init__.py,sha256=pSj8V8tmwOAQ3sshWJfRfB-n3z5bcJj3pHOBX4-8ONc,251
1
+ junifer/__init__.py,sha256=-T9XmiCCL0j3YLx-0Pph15sPfL5FlcBDscajjJ-V4sU,604
2
+ junifer/_version.py,sha256=LLX_zE2hwuXoJcCrJFHp63l96uwV1o-_baS2uJTkq4Y,428
3
+ junifer/stats.py,sha256=BjQb2lfTGDP9l4UuQYmJFcJJNRfbJDGlNvC06SJaDDE,6237
4
+ junifer/api/__init__.py,sha256=lwyIF0hPc7fICuSoddJfay0LPqlTRxHJ_xbtizgFYZA,312
5
5
  junifer/api/cli.py,sha256=53pews3mXkJ7DUDSkV51PbitYnuVAdQRkWG-gjO08Uw,16142
6
- junifer/api/decorators.py,sha256=8bnwHPAe7VgzKxl--M_e0umdAlTVSzaJQHEJZ5kof5k,2580
7
- junifer/api/functions.py,sha256=hkiJhqIRgclWHFmThGFntAXno9vFI38FQfBrEwm1-AY,13047
8
- junifer/api/parser.py,sha256=a3SSC2xO-PF1pqXZXFq8Sh9aVd-dmHolJbCkGyOUTAM,4416
6
+ junifer/api/decorators.py,sha256=DCctYgmBf8QTZGtjKXLCYYeBapt00IwskH2_0NoIDT4,2727
7
+ junifer/api/functions.py,sha256=dnQvLDHE3bSLP9yBj3MkNLYdy8jhvjTF5vI4IDGwpbE,13105
8
+ junifer/api/parser.py,sha256=f7xZbn3MW1GEEJnb1SlCGkAj9n6gvquzjDB5knmBDcA,4443
9
9
  junifer/api/utils.py,sha256=dyjTdPMwX9qeCrn8SQT2Pjshfnu-y1FEyujV7lCzvm0,3333
10
- junifer/api/queue_context/__init__.py,sha256=_yXJ8woTxLNLoSR3yLxAW7MtC5sa-oCRxewsZ9D3j98,271
10
+ junifer/api/queue_context/__init__.py,sha256=1ZO7e0rlfCvgXeVsfqZhHTqqIEbE_lOExCLro5jYaFA,353
11
11
  junifer/api/queue_context/gnu_parallel_local_adapter.py,sha256=x2eQRVkhwJKd-Kx8AYia4F8nYnOLJrFzMGMjcwUygEc,9561
12
12
  junifer/api/queue_context/htcondor_adapter.py,sha256=92pt4M_r52inBVlQ2M8Di6quEKW4Xcq3qVNRXaV4rGY,13233
13
13
  junifer/api/queue_context/queue_context_adapter.py,sha256=a6UE8xavDfuaZbkWYsayVs6l-rwIrbpFSpqSyHsEeYY,1577
@@ -21,11 +21,11 @@ junifer/api/res/afni/3dAFNItoNIFTI,sha256=Fsy5S5rwIBb1MepLfl_5FQhE7gv6NDwNyAR_k0
21
21
  junifer/api/res/afni/3dRSFC,sha256=MkPtS_nKEoJOHDAT3ZP9IA-SvMdhyzZDiyxObV_XI3g,44
22
22
  junifer/api/res/afni/3dReHo,sha256=Jb5B97iPPPQ14zAz7tK5BVG4jPZyOe9c6kgM6ixKaY8,44
23
23
  junifer/api/res/afni/afni,sha256=idLvNWHwd6P4jWXfk6hMXQckdpcTJYbvnLC3uNP6sBg,42
24
- junifer/api/res/afni/run_afni_docker.sh,sha256=_MHr4oEfnjvFEegx8VWl3S0Js0KioySvtJfdxyea0JE,1130
24
+ junifer/api/res/afni/run_afni_docker.sh,sha256=aXUBL7RaTDpXJFmLXTUH3lkr7K3SRm78sOzh32M_wew,1130
25
25
  junifer/api/res/ants/ResampleImage,sha256=oJKZ31rBAW20ETozB8Ub5SbXMuhmZfrerpJTnRu-hOY,51
26
26
  junifer/api/res/ants/antsApplyTransforms,sha256=SqlQEJ2RMMw_qGyDaNTXKzQqO7Bvrm6y5SEPmyqHiYc,57
27
27
  junifer/api/res/ants/antsApplyTransformsToPoints,sha256=lqyvQGo8oI-RNpNlRqz-BvLHh7Th5HQgsDZjHF6nEeI,65
28
- junifer/api/res/ants/run_ants_docker.sh,sha256=d6lZ9CCPP3nsCALhW4T4tI67gyUSiM4AuXj5JPKTLtA,1119
28
+ junifer/api/res/ants/run_ants_docker.sh,sha256=IZN1o2ppW7roe83t1Hi7bzAM4qQ26l-5PW36YA5IQEg,1120
29
29
  junifer/api/res/freesurfer/mri_binarize,sha256=d6tjwyOTvLxaMcmUMaeYdR6gE0aI0Bj7ITnDLO3eNdk,56
30
30
  junifer/api/res/freesurfer/mri_mc,sha256=sTVbj27M_rjs1RIj6dyp_OTSN4ZB3Q_7f2A5z-ri1QA,50
31
31
  junifer/api/res/freesurfer/mri_pretess,sha256=BxhyeD8M3jxIpA_1i6sMAHcsaBQQtvfPu2i1u_nGFBg,55
@@ -34,7 +34,7 @@ junifer/api/res/freesurfer/run_freesurfer_docker.sh,sha256=zn6fa0lNAMx3KNZqLcjUY
34
34
  junifer/api/res/fsl/applywarp,sha256=DBgHfsn1yXWq0t-P7J0YvrjjJNgiblwDsh9L1hF9v_w,46
35
35
  junifer/api/res/fsl/flirt,sha256=tSjiUco8ui8AbHD7mTzChEwbR0Rf_4iJTgzYTPF_WuQ,42
36
36
  junifer/api/res/fsl/img2imgcoord,sha256=Zmaw3oJYrEltcXiPyEubXry9ppAq3SND52tdDWGgeZk,49
37
- junifer/api/res/fsl/run_fsl_docker.sh,sha256=mRLtZo0OgDwleoee2MG6rYI37HVuGNk9zOADwcl97RA,1122
37
+ junifer/api/res/fsl/run_fsl_docker.sh,sha256=pq-fcNdLuvHzVIQePN4GebZGlcE2UF-xj5rBIqAMz4g,1122
38
38
  junifer/api/res/fsl/std2imgcoord,sha256=-X5wRH6XMl0yqnTACJX6MFhO8DFOEWg42MHRxGvimXg,49
39
39
  junifer/api/tests/test_api_utils.py,sha256=j_QLYRofctz3GP6_Zbz_ABpdiuXWAK9ue_AzP7Rxuu4,2745
40
40
  junifer/api/tests/test_cli.py,sha256=kyDu-51lBmIBlQ2MnmmecC3nENrQuZRpk0bCkAPqmWM,10969
@@ -44,24 +44,24 @@ junifer/api/tests/data/gmd_mean.yaml,sha256=Ohb_C5cfQMK-59U9O1ZhejXyBtzLc5Y4cv8Q
44
44
  junifer/api/tests/data/gmd_mean_htcondor.yaml,sha256=f7NLv_KIJXTiPNFmOWl2Vw8EfwojhfkGtwbh5prbd6w,417
45
45
  junifer/api/tests/data/partly_cloudy_agg_mean_tian.yml,sha256=nS8K_R1hEuV71Vv-i9SYjnDGAK2FClQqBiE4kOuQ_ys,313
46
46
  junifer/configs/__init__.py,sha256=mE70B1Sc7Tn4uts1vMVF7Ie6hdj7PuDvmDmie3soA9I,121
47
- junifer/configs/juseless/__init__.py,sha256=mT1pnQcoH32bIqmU2mBO31pFsdc0jKrGBNVxxJ6fdao,159
48
- junifer/configs/juseless/datagrabbers/__init__.py,sha256=kLcoJyUZMrrAmgWynuTvute9tZ3sSVWrEm7t0nKCO4s,460
49
- junifer/configs/juseless/datagrabbers/aomic_id1000_vbm.py,sha256=4Vf1AC6WSDkCaYXKJXEkJHS2UsdON57wdhj_oqpK-vw,1428
50
- junifer/configs/juseless/datagrabbers/camcan_vbm.py,sha256=GXnDML55kKEGSb38olRUWL_AFdN9IvPViEGP9CaDTUQ,1497
51
- junifer/configs/juseless/datagrabbers/ixi_vbm.py,sha256=mCuv-27AsN9bReoq3Fo7CJaC2Jkmd5Y1sFEk5ExGqUo,2263
52
- junifer/configs/juseless/datagrabbers/ucla.py,sha256=2ZjK6n9eJ9terKm8tDqwAyOIbYgvssQMI0dIBKrUXCc,4846
53
- junifer/configs/juseless/datagrabbers/ukb_vbm.py,sha256=d2N3X1OVrcmkKNVkruNDKzU2iqBH9oGUnhfxkg0-7aw,1485
47
+ junifer/configs/juseless/__init__.py,sha256=kQ8b7wIYfpUqQXlWzZQkGzSUfAOi_VLyLq4brRz6-Dg,188
48
+ junifer/configs/juseless/datagrabbers/__init__.py,sha256=vDg8wL5fs3mpsA4modWXpXqYkRy6neP-RiMlGdfTe58,623
49
+ junifer/configs/juseless/datagrabbers/aomic_id1000_vbm.py,sha256=dhOeIQg-IVDatJu2Y1ObuAANdMoYDgACtMOu-9SHzh8,1474
50
+ junifer/configs/juseless/datagrabbers/camcan_vbm.py,sha256=_d_nMmKQbGEK644wCMmVfHaI2ioTmDmg5ypr_Ik3hDI,1538
51
+ junifer/configs/juseless/datagrabbers/ixi_vbm.py,sha256=ZfjtHiAnhk-pbYPGXiVuOqjcQLwd0xTDkRHwl7JMel8,2301
52
+ junifer/configs/juseless/datagrabbers/ucla.py,sha256=ucU2pUjlfK-psQykaxdPXl26ilcfhWArV7KceqalqAI,4875
53
+ junifer/configs/juseless/datagrabbers/ukb_vbm.py,sha256=gn7O4Oo7Sc5bw4J6ZKmb2Hmr5bs52oE0_zCK1-Vb378,1523
54
54
  junifer/configs/juseless/datagrabbers/tests/test_aomic_id1000_vbm.py,sha256=Y_npFmmj0MN0TYv8jaxVMgFHLMQLZ8vXl8lWQKvOYbc,1001
55
55
  junifer/configs/juseless/datagrabbers/tests/test_camcan_vbm.py,sha256=o0dzptS97pxrWaY7I1m0dpJtsnAwmIXNqdU9ABTWCqI,975
56
56
  junifer/configs/juseless/datagrabbers/tests/test_ixi_vbm.py,sha256=8jxpNZelXwpJGvA5LOfpso2X8yt1chvERAYmv76hS_g,1252
57
57
  junifer/configs/juseless/datagrabbers/tests/test_ucla.py,sha256=NfEKlpaMNImiPLGyETDDCMoWZ7_oHGsiVAbQNYsfi3o,3252
58
58
  junifer/configs/juseless/datagrabbers/tests/test_ukb_vbm.py,sha256=b9hjc1mgO--PSRC3id2EzzfE2yWNsuZ2UI47a6sfGZU,1025
59
- junifer/data/__init__.py,sha256=Z3CdIXpXK3Avxm2Qj7MsuNNZSM8Pc5KBa9D51DYd1v0,602
60
- junifer/data/coordinates.py,sha256=AovvAdPhl9oQoH4T24jhzW0UuNL8wRYtkYrYHhvtRC8,12381
61
- junifer/data/masks.py,sha256=ii7wEnJjnVR22KgigvdxIE2jsvwW7PrfKnyMhMRmZUU,20810
62
- junifer/data/parcellations.py,sha256=S2Hs_FwvqWZ_rFEumTW5b2aX2iyZEw_9KGAO9Z0-dxM,65343
63
- junifer/data/template_spaces.py,sha256=2dD9GIBgsd764ol3ZvmHL11VrsaBC78CwrMaMh4TCGQ,5756
64
- junifer/data/utils.py,sha256=Jmbc7SLzy4nLP_zkWv_aJzb1MZ27tutJ98ifsECCamM,1295
59
+ junifer/data/__init__.py,sha256=orvgHyoKkgw9aAR5WCucKI7ZBu9dZL7e7au3TECFD-s,968
60
+ junifer/data/coordinates.py,sha256=1HH2Kz5nzZKN6-wJRmYotPH76fPaL1yYbCt8AhONogk,12496
61
+ junifer/data/masks.py,sha256=kUhH9_YNrT67CE3TEBfk2Uk8hpUr_KX3wxWfH27rXWU,20925
62
+ junifer/data/parcellations.py,sha256=mw1xa6yFWAaVktTkkpCt2ZgSUapZbPwloN2UoPdLzdg,65490
63
+ junifer/data/template_spaces.py,sha256=7I2Hgy-Wh-Uqm_vOvpYQ5H9CFg1Qn5YRX4QU-HZAloc,5796
64
+ junifer/data/utils.py,sha256=dIdhCJMJHoXsjTjEMi2b-NXyCiSKsFZQt-5Ca00Obd4,1330
65
65
  junifer/data/VOIs/meta/AutobiographicalMemory_VOIs.txt,sha256=9af38naeL18Tlt_gy_ep6vyTAxOB336JYjbo5FvP8PQ,686
66
66
  junifer/data/VOIs/meta/CogAC_VOIs.txt,sha256=Sr5_E712OLdeQRyUcDNM0wLBvZIyO6gc9Q7KkyJHX1A,398
67
67
  junifer/data/VOIs/meta/CogAR_VOIs.txt,sha256=t3NLwEVUZTPP34p15SaB3UInLrQyK-7Qc4iLBuQlZu8,189
@@ -89,24 +89,24 @@ junifer/data/tests/test_data_utils.py,sha256=_DaiC8K79gs9HFHxr-udNeE2YTM6JA0-1i-
89
89
  junifer/data/tests/test_masks.py,sha256=qgrcBAX3oqrca8mKACDxdt_9sDXXUZIU8jTNDlJzLQU,15183
90
90
  junifer/data/tests/test_parcellations.py,sha256=ZEU1VHIK0AyxpclcJhG_0rQU0phaBU_dHP7Erfi3mN8,38222
91
91
  junifer/data/tests/test_template_spaces.py,sha256=PJulN7xHpAcSOTY-UzTG_WPywZEBSlAZGiNG4gzk1_8,3144
92
- junifer/datagrabber/__init__.py,sha256=fhHKsZyBeqCFJJMr53VF6EUkNrFuUZkNR8QZbaoHTNg,680
93
- junifer/datagrabber/base.py,sha256=KgMSKfkwd4yLW4PhoJDoWMgcDkGmDoIs6jkgKyOJd9A,6303
94
- junifer/datagrabber/datalad_base.py,sha256=gP-DsyCd2F8W-aF2PXOg99Ntp2bj8QEtb535y06q39o,11009
92
+ junifer/datagrabber/__init__.py,sha256=uR31UhuNwNZ0i9m3oo8RZtHUyMbnG2sd1i9aLa6aG_o,967
93
+ junifer/datagrabber/base.py,sha256=qVEeWtnnl95owug9gBCmhfG6km3402o0k5VH4QsPt8A,6335
94
+ junifer/datagrabber/datalad_base.py,sha256=6B7XMIMFlBw3uixDnfoaH4gBU9EzJIO5gwmc0iHniRo,11044
95
95
  junifer/datagrabber/dmcc13_benchmark.py,sha256=se9F6QVw9WX22MNld33OQv_BtdW-yPvXXu6kYykxLNw,12225
96
- junifer/datagrabber/multiple.py,sha256=eXQIsvSNvD8GuEITjMaMoi1GwoeyWXXbQMRi-f2qgc4,4923
97
- junifer/datagrabber/pattern.py,sha256=xwemCi1zKwudlWe5G2mSkCe-OGTRgA3jgM2i8vXAjiM,15978
98
- junifer/datagrabber/pattern_datalad.py,sha256=R3LMeknT7tAXs2AN0XVPRf6tGkCMPgDfkNT2bfi7UNc,4526
99
- junifer/datagrabber/utils.py,sha256=2ujwltVc__qPJ2RwnEhSSoC_RkDchGEBNw7bC0a3bvk,9898
100
- junifer/datagrabber/aomic/__init__.py,sha256=R7yrRVBWsBW25CH0fw-KHpFwb_EC-MlPKDzssGfj5A0,281
101
- junifer/datagrabber/aomic/id1000.py,sha256=2Lhu3Wf-U3RRLgoWbrSQCGxfri3--OQTsk9nrowK5G4,7184
102
- junifer/datagrabber/aomic/piop1.py,sha256=r_OsORrVAU6mbOxuergIxo0ZR0Msx_I8MyrfiT_gD3E,9603
103
- junifer/datagrabber/aomic/piop2.py,sha256=Twu2yN4-h-aR3-ZCg0ERxI54HGxr6C64cmBo6Nq3TAI,9222
96
+ junifer/datagrabber/multiple.py,sha256=p_rq99kKtHNr1sAl0GJ4RJ5Ss-uUKMsJVHrdWGi1XB8,4959
97
+ junifer/datagrabber/pattern.py,sha256=pGiYlczva76JRxtsCY7Xuok5wPCGcXWHNZMCXNGUJ_k,16013
98
+ junifer/datagrabber/pattern_datalad.py,sha256=QPWXIToYHDU4mvm9lz_hy8BjdqqoCXiGiJKCcATrT-w,4568
99
+ junifer/datagrabber/utils.py,sha256=XoS2B8Gg0YTR7HaJR9GpPFr0drZOn8p1HO7al735mO0,9975
100
+ junifer/datagrabber/aomic/__init__.py,sha256=lRezU9dyIEoL4tJYglMX01P-F5_hrnZrJxuaQxF_z2w,358
101
+ junifer/datagrabber/aomic/id1000.py,sha256=wJpZiSZrsfil5w-506bOtKMWm3FllnbB8-cMvGDPiLM,7219
102
+ junifer/datagrabber/aomic/piop1.py,sha256=AcjIueSUmhepuIfmbMEpocV7grUbJ2xKXG94O1dq2FA,9637
103
+ junifer/datagrabber/aomic/piop2.py,sha256=LLP8zMrAJfjH1VNA-XHqkh9hGyYddklxsTBY4Q5zVBg,9256
104
104
  junifer/datagrabber/aomic/tests/test_id1000.py,sha256=AWacDroSxvRjzozFjyRlDpiJpPflYRfhDm_RANrYAKM,3283
105
105
  junifer/datagrabber/aomic/tests/test_piop1.py,sha256=J9ei2HLzdJPciysWjRo33cbZsqPF1OEDySmQWWNvYuM,4820
106
106
  junifer/datagrabber/aomic/tests/test_piop2.py,sha256=Bk23KvRse4clMTuC88YntSfJnJyTunafC79Y1OJwJI0,4166
107
- junifer/datagrabber/hcp1200/__init__.py,sha256=zy4Qq1_m3vECEhioG-UDteco2b5cni_8xuElICaRtt4,189
108
- junifer/datagrabber/hcp1200/datalad_hcp1200.py,sha256=p5Bbg09qoM46km9eFSlspwLwOe6LMJFSIZ9NC9E2lmc,2432
109
- junifer/datagrabber/hcp1200/hcp1200.py,sha256=ohXHmrQHWjqRZSEXI6E5zla1d_t6LZTbv-cAj79w3PU,6091
107
+ junifer/datagrabber/hcp1200/__init__.py,sha256=yKINewhzkPRcqVpBd6DG02jrs3qLsUbUsi93YJZOUIk,231
108
+ junifer/datagrabber/hcp1200/datalad_hcp1200.py,sha256=hngQYLv4b8tC9Ep2X5A5R_L2sFM3ZJ8dmWTr_OlRLAA,2463
109
+ junifer/datagrabber/hcp1200/hcp1200.py,sha256=xgIU-WZXrEvI7we2RX3sqKowKz1NxtdjtHM6g5RcPzQ,6115
110
110
  junifer/datagrabber/hcp1200/tests/test_hcp1200.py,sha256=KJ-Jq01l0a6TaboG898qjBdPTHG1E3PZtHCjJ7n-1X0,10765
111
111
  junifer/datagrabber/tests/test_base.py,sha256=fZdVhNhvfht9lpTHrAUf5E6mAfNNUP7OTQ5KLaBQ1gI,3506
112
112
  junifer/datagrabber/tests/test_datagrabber_utils.py,sha256=x1nqFiHI9xHBQFwXji0DPUG8crVoEzw6zmi3pKdhJQk,6513
@@ -115,8 +115,8 @@ junifer/datagrabber/tests/test_dmcc13_benchmark.py,sha256=DcqkDXXBoabHFVbxekGR2N
115
115
  junifer/datagrabber/tests/test_multiple.py,sha256=Mx3xfDrQiWG2W5MW24P5L2XiSeALpJ2-jFlzWkKtu9w,5659
116
116
  junifer/datagrabber/tests/test_pattern.py,sha256=H55jYRPfT3rMsoIQOAnWJgw3nGrkU7m2xFa3-ed6NQE,9527
117
117
  junifer/datagrabber/tests/test_pattern_datalad.py,sha256=hxw_aXBwHjUo-aUrHescBA2dn1bSJxh-0oV8495iIEA,6483
118
- junifer/datareader/__init__.py,sha256=_vtrLX_vxlHFD90gPa3gWnhTuvfWM7Uzyj6y8ZPaWm8,259
119
- junifer/datareader/default.py,sha256=Md2q0hjoh454F-fmFFlyzwZMcu9vmFFT-akR42SSwUs,6711
118
+ junifer/datareader/__init__.py,sha256=9TXyHpy5o-yfs-q8QHGfjUCcWdORp7qv_jrokAOPBP8,293
119
+ junifer/datareader/default.py,sha256=peNQTYHx9x3ZqGjm2Uj5yCLlsJ6X86r0f2XiUgnpw1M,6745
120
120
  junifer/datareader/tests/test_default_reader.py,sha256=9dPZSkba1YQjFsA0XwdUbx5sq8DVIEZoy_WfMAcvRus,5220
121
121
  junifer/external/__init__.py,sha256=CBB7eQul2hf-WWwT_PYFV1MS9KkXlZBO7oQWWVLgB_I,110
122
122
  junifer/external/BrainPrint/brainprint/__init__.py,sha256=Q7EQjLww8j2LbxCySqYLtPK5giHEAWQ2Ae_wbcL3OY4,222
@@ -135,64 +135,64 @@ junifer/external/h5io/h5io/chunked_list.py,sha256=1Y5BbuWzurJlEFQzJNuDdC3fNZ39EN
135
135
  junifer/external/nilearn/__init__.py,sha256=a2Umwm3_WeqIC7DqPUmnUonYfX3LUdQ0ScDGZrNP6y4,180
136
136
  junifer/external/nilearn/junifer_nifti_spheres_masker.py,sha256=sA8fbdaTHk2omYidApNO1hN0ObwDJR_h26P9i3MhbvM,16274
137
137
  junifer/external/nilearn/tests/test_junifer_nifti_spheres_masker.py,sha256=qlMFWjo9y8mNLrdmN2qCEK6_nplASv2OlomSfTxDcuw,10370
138
- junifer/markers/__init__.py,sha256=JWc7xh6r2LqFaheaDGE-KyCLGGjREXqc5BSBZqmpR_E,804
139
- junifer/markers/base.py,sha256=Af8TyoNAIHWREZkIgi2su6PUqoloJXVGT-KW13WlWUM,6370
140
- junifer/markers/brainprint.py,sha256=at_MHm_GhWd_Ls4XQQihfD2_SF1SGH2rbyjDQbWniIA,21766
141
- junifer/markers/collection.py,sha256=iqxP4waKFLHj5vgIxdZFFv-zOtjmMEJE5rShf_0sVcs,5511
142
- junifer/markers/ets_rss.py,sha256=7fr6mmbMM5NKIDV6bUyyu-pwHJH56GwYv6oozK4EX6k,4557
143
- junifer/markers/parcel_aggregation.py,sha256=FECIPG7x8GXxbE2wNCqw6o1-630nlQxvm2YMkzb4HLs,8714
144
- junifer/markers/sphere_aggregation.py,sha256=3gC8-Z0qbX2y_q-YbwpnPll6lmKZY5V-DdQQA7tFzWc,8275
138
+ junifer/markers/__init__.py,sha256=u4BFgS_3GXAwFN2HfqdAhlBkyenLw4IYlMlwXwnjkVQ,1235
139
+ junifer/markers/base.py,sha256=7_TLrz8dZH_3t1zgSSW2yCnDO2DGGAxFMZLHDkvJ_NM,6985
140
+ junifer/markers/brainprint.py,sha256=On1M8Hp14g-S-o-3TVVYTGfviJEz-xjuAVg0mRHyxFg,21793
141
+ junifer/markers/collection.py,sha256=13nccLKJp2nMs07hLpvcSYlvfj_L1fntmFrYeAE2jLM,5544
142
+ junifer/markers/ets_rss.py,sha256=gyy8BPPSEhM1fWh0aQqzjxLihTslnXhKqyJcdhZQsdA,4586
143
+ junifer/markers/parcel_aggregation.py,sha256=QaPqweCocO_dsC4rHyl-lWwDaXrqCzrsK5g32zjbsZU,8748
144
+ junifer/markers/sphere_aggregation.py,sha256=zgLcFhpu_bJJiMAVA_UGOUvMC5ZsmuDMcHr-MsIg6-U,8309
145
145
  junifer/markers/utils.py,sha256=b6Bt_isqsOD2OF7oHvEpHyilauxYZzyz8YcbGWq6J4A,3833
146
- junifer/markers/complexity/__init__.py,sha256=nzL6GpVlFhMDaWyJ-ZtpPx940LUSAUmYcyqLoQ7K1-E,818
147
- junifer/markers/complexity/complexity_base.py,sha256=Lb8UnWoeplZg1-SdS5GLMq_pY5Qow3JSciQMtZRNhAo,4405
148
- junifer/markers/complexity/hurst_exponent.py,sha256=3j8blekVAJKWu_yBg_Rnn1z4Du5Xgej43sRXLcBq1Ag,4667
149
- junifer/markers/complexity/multiscale_entropy_auc.py,sha256=UhSc53rPrcvPGB4Kh94bQCg8l0WSzpGrQ3JxMoDZmlg,4891
150
- junifer/markers/complexity/perm_entropy.py,sha256=HxbSJg0Go8zahVmkyBJh_wurIN1b3y7mTvnn1rIvcq0,4418
151
- junifer/markers/complexity/range_entropy.py,sha256=lHu2en5vCkOdbmNJDmhV8q8T_11svCLFQCpOxyHid0E,4548
152
- junifer/markers/complexity/range_entropy_auc.py,sha256=MCmhbsBcgIXZ89VZw6mmmB6tlA5i4wdEDXgoJ9iZ_UA,5028
153
- junifer/markers/complexity/sample_entropy.py,sha256=EghzytwNmXKbCiNJuf3ZY1mtyZ78Z7E0Vw07rD6-XPk,4498
154
- junifer/markers/complexity/weighted_perm_entropy.py,sha256=n4o07BrUFboVw9kqB4u4ZpNQn37KhblfYDvsL3jrk_k,4544
146
+ junifer/markers/complexity/__init__.py,sha256=M0e022QPcVlpfWUiXss4odv8EZg1fEtECmIgG-w00CU,1028
147
+ junifer/markers/complexity/complexity_base.py,sha256=Ugh0nc9yPUx0G3PVqcV5W-fq2uVyV4cNj9y-Eq0bd7U,4436
148
+ junifer/markers/complexity/hurst_exponent.py,sha256=gx8ZRzfJq6UIwnfPFXhZrHdMuhWO-arqM12iZx7ZzBo,4697
149
+ junifer/markers/complexity/multiscale_entropy_auc.py,sha256=6FbRHA1CAPaZQNUL6VZsjODDDMUPpCb9CN2qQWE_U50,4928
150
+ junifer/markers/complexity/perm_entropy.py,sha256=WPE4bdPZ9_FyCemR3C30mdOxQDYrM0N3uZz3-2DYmrc,4446
151
+ junifer/markers/complexity/range_entropy.py,sha256=Bhc5gvsM8BS9FQIAHWiFzySMuOz8nkcFWGrxUxDxDKI,4577
152
+ junifer/markers/complexity/range_entropy_auc.py,sha256=PuuyluXhzghPY66er-bWIlDMEFyHMfFTFtY_JhrVmPs,5060
153
+ junifer/markers/complexity/sample_entropy.py,sha256=a-4qBavXNTSC-JnnCJBnGJu1Wwn5s0pNjfeFrXp-3qc,4528
154
+ junifer/markers/complexity/weighted_perm_entropy.py,sha256=bMQOlgvOrIimFmlAhKCqutOewTNc3xMF4hZuhiB-Vj8,4580
155
155
  junifer/markers/complexity/tests/test_complexity_base.py,sha256=0E0AjjBqenIb6ZzK-EMie24J4vVjWUjAPfkvvognu9Y,453
156
- junifer/markers/complexity/tests/test_hurst_exponent.py,sha256=2LN8Z_D6LeEuspc9V4BIHwg6Q0JOKe2_2I0mVoSg9Kk,2026
157
- junifer/markers/complexity/tests/test_multiscale_entropy_auc.py,sha256=ZcqaBthio0O4uwoYGlnjs2nES5En6IBZmYFAeKyKsLM,2097
158
- junifer/markers/complexity/tests/test_perm_entropy.py,sha256=O0imYQ-Pdj_iNywJM64UiXeLAllfK-0WSXU-4ogrH4c,2014
159
- junifer/markers/complexity/tests/test_range_entropy.py,sha256=bu0O3XCV2DPqoqDL9P6N6XjvL8YnId9XfG9RsK2iAAo,2017
160
- junifer/markers/complexity/tests/test_range_entropy_auc.py,sha256=SOpUjFRbNopfMUKW3Slsmzd0bdNDv_g8wiwOuuhCDkA,2053
161
- junifer/markers/complexity/tests/test_sample_entropy.py,sha256=3IeDnDgSeFNmUoPxQAJTSZvwN6S04-5r7NDvb0lzHmI,2025
162
- junifer/markers/complexity/tests/test_weighted_perm_entropy.py,sha256=M7Qt_SFZSmptMi0cBGh5Merd1_3hPieIddl_pz7MWbs,2088
163
- junifer/markers/falff/__init__.py,sha256=QAUIVtaOFWDL7B8xFrDgsmRum7Q0DCENyDYD1cPMJmM,197
164
- junifer/markers/falff/_afni_falff.py,sha256=VzlpoSsxypjiz4GSUqYU6MWukKYwNLu38kRPIosXHBI,4496
165
- junifer/markers/falff/_junifer_falff.py,sha256=DAwimHqYrZ0EITXwceM5R8cQdGvy-wWjSJwVf3aZgcU,4389
166
- junifer/markers/falff/falff_base.py,sha256=ywfPqMa11xSHiY1W-OeLrmK67WQx-9mRoXUV2gIZJOo,5698
167
- junifer/markers/falff/falff_parcels.py,sha256=xQu73cfYDQvOPqZv7HFmxy7YR1Apx0w3Qr2nzUMPFeU,5012
168
- junifer/markers/falff/falff_spheres.py,sha256=wQzNI_IAQMRiwZPB3shjd0wlbW-IKIXArMCQuVy8C4I,5543
156
+ junifer/markers/complexity/tests/test_hurst_exponent.py,sha256=QsFl-ZPtbZ6v_KSyi8mZps9Jl2ZNdEHXL6xwGi4rFLQ,2263
157
+ junifer/markers/complexity/tests/test_multiscale_entropy_auc.py,sha256=qW552NsAl5YTa3Pg-zTk3BtPqHzeinpD3LECOdCHzn4,2334
158
+ junifer/markers/complexity/tests/test_perm_entropy.py,sha256=S_ULYV7uwxbrKiUlF5MLhl5Kq_Wp43vNGtXHxHbJqAI,2251
159
+ junifer/markers/complexity/tests/test_range_entropy.py,sha256=PqXK9xEEqGutgjOH0Ya5p-KJ02SNc9_YVyp7H3w81ZM,2254
160
+ junifer/markers/complexity/tests/test_range_entropy_auc.py,sha256=G6kpmAfYUKid9B1B6y-LlZr4eTODvUOeA_VOiTc9M5k,2290
161
+ junifer/markers/complexity/tests/test_sample_entropy.py,sha256=tgx4dN88CwxkrkCHFFRN9204fdK19l2mHmIjQZ0mq6E,2262
162
+ junifer/markers/complexity/tests/test_weighted_perm_entropy.py,sha256=z7BFk5LIZCEbMNPqR9IWqhhOfJ7yIsK71Thylg08Xx0,2325
163
+ junifer/markers/falff/__init__.py,sha256=qGr8HFhTnwTMWGTf96nRLYZgIXYmf4DLLIcsMiS62p0,240
164
+ junifer/markers/falff/_afni_falff.py,sha256=UZSclcN2F-fEuDnrPUMXfUBOBnNdH0etvcPOMoig-W8,4521
165
+ junifer/markers/falff/_junifer_falff.py,sha256=Datf23VxbiD6ZiC-3tANN9MMVHuZKzQx04nX1GXA25c,4417
166
+ junifer/markers/falff/falff_base.py,sha256=XXnL-voEjWgLLq9ueX_SJcIwKGAZPxIpdEhpuq8cNuo,5723
167
+ junifer/markers/falff/falff_parcels.py,sha256=G3ZVD7_SdJvrLy7Nyl-qypm0SFxa55PFJWIvQORCJoc,5040
168
+ junifer/markers/falff/falff_spheres.py,sha256=JBhNJlDS7T4Jy-jXisvJ6FcraBVH_4SJgTl7N3aQyiA,5571
169
169
  junifer/markers/falff/tests/test_falff_parcels.py,sha256=xvEJ9PPjvOfsmyYyEAiycj_35EOivEkLue5yPHSptCs,4009
170
170
  junifer/markers/falff/tests/test_falff_spheres.py,sha256=E-Hsny-iH34TmWIMXEmq6j-q0qNpAYv-cwnxZDeMnlg,4040
171
- junifer/markers/functional_connectivity/__init__.py,sha256=Uq8aXpHJesedJNHEixpc4bn7VvYZMhf710jyiX45XlE,499
172
- junifer/markers/functional_connectivity/crossparcellation_functional_connectivity.py,sha256=YEtjAnmEF98DQm6HRtWqoTdupF4bU1-UKh9rRx1LY-E,5215
173
- junifer/markers/functional_connectivity/edge_functional_connectivity_parcels.py,sha256=z5iL8W1z2fDMxRIY_Exc99qnus_DVCPQ8aTnvfRrhp8,4339
174
- junifer/markers/functional_connectivity/edge_functional_connectivity_spheres.py,sha256=fI2aa25NWRRTaP6AqXnaFL3FG3zpR6gYU85ZsxcpNG8,4994
175
- junifer/markers/functional_connectivity/functional_connectivity_base.py,sha256=MKwngbj7pDVCxcJPZPrTAi7dh6hjak0McEonk20PkWI,5179
176
- junifer/markers/functional_connectivity/functional_connectivity_parcels.py,sha256=QBaJQfgSqxGlnD47LMHJQqXvPlZF5a79yVmmDFJg-WQ,3990
177
- junifer/markers/functional_connectivity/functional_connectivity_spheres.py,sha256=ZdMylng5uvlA4JDz-8giNeDh_hTWh4k2fuPx_HowfH0,4690
171
+ junifer/markers/functional_connectivity/__init__.py,sha256=j7HshYNBjSbjXXM8h_PBKORk--Gb3qw-MSEm0i3XgTI,672
172
+ junifer/markers/functional_connectivity/crossparcellation_functional_connectivity.py,sha256=0wBaW7h5fjThkS-QmmzoHX9eZLfos0lSm3v5lqjeACc,5251
173
+ junifer/markers/functional_connectivity/edge_functional_connectivity_parcels.py,sha256=OvJwxfwmBWGrbOwvzNjo7UGtyW-mRsIRDlu-7yy7_6c,4376
174
+ junifer/markers/functional_connectivity/edge_functional_connectivity_spheres.py,sha256=663O_1TKicaX1CL1tjN7QLlyoEx1_AB_rEnk32li3wY,5031
175
+ junifer/markers/functional_connectivity/functional_connectivity_base.py,sha256=rdr05Er8rNU-TbyjAICWLE0X5RZX_6Ejgw2ZMMkAeYk,5222
176
+ junifer/markers/functional_connectivity/functional_connectivity_parcels.py,sha256=6lZf5X5Y36zC3mGOpPQSpuyGzYZ7uanyCSw5DKWBZmA,4036
177
+ junifer/markers/functional_connectivity/functional_connectivity_spheres.py,sha256=NVszcu5ybtKoMxci4Au88oWHQ2hpTZX1vHTKOlUQkrA,4736
178
178
  junifer/markers/functional_connectivity/tests/test_crossparcellation_functional_connectivity.py,sha256=0TOJhdjrD_96j80Yt4AmtOWxoQLDF_pdVW9mVHsm_uU,3142
179
179
  junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_parcels.py,sha256=gXJHBm56TCwFMK7NGtO9PHOdyr0Ymlm0jByusfrBakE,1992
180
180
  junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_spheres.py,sha256=FhlRqiKzk_W7v4Yc1pgyzUp6SKXu_9kq7dPc1GfkdXA,2197
181
181
  junifer/markers/functional_connectivity/tests/test_functional_connectivity_base.py,sha256=RmPTrG0uLKb5RgdHXUnH6lon60FxN1JCtr-dsTBaX28,522
182
182
  junifer/markers/functional_connectivity/tests/test_functional_connectivity_parcels.py,sha256=iV1HY2t0ywBjOn06SLBlfn3x2c3Yuopq8W4pPQyfdzQ,3096
183
183
  junifer/markers/functional_connectivity/tests/test_functional_connectivity_spheres.py,sha256=wMK5GVcRz68zsCPMtTXxoG7H68Ab8wk9_bsrcyRz1R4,5090
184
- junifer/markers/reho/__init__.py,sha256=9IfeAxKEVgMWbhud-8T54Le07I4pR6A29sMKeFtvEPg,189
185
- junifer/markers/reho/_afni_reho.py,sha256=otk5Gk8Za6rfnk5CjnjHbxuuACQnpkc1K_nUK0SejfQ,6444
186
- junifer/markers/reho/_junifer_reho.py,sha256=5Y0E7-u7mxbA7iOdNXIsPdACtu4nI4Bjh6ucOgE9_lc,9279
187
- junifer/markers/reho/reho_base.py,sha256=04rQFivmeZx7EG9-fP00bp0rKruUAi8x_ngVoMSjSl4,4492
188
- junifer/markers/reho/reho_parcels.py,sha256=JZjMkRL7R615fu06hi7QHDwPoakqRjl0c8Zt-E7n7Sw,6142
189
- junifer/markers/reho/reho_spheres.py,sha256=00LuIJ_dOB6k3vAwBmwRsxIZMNTLMA19PXoJ6TsB1zw,6758
184
+ junifer/markers/reho/__init__.py,sha256=_6WkTQcg0ksZguSQGi1XuoMKuGwYs5tvDLVZ1h6xB5E,232
185
+ junifer/markers/reho/_afni_reho.py,sha256=eMEAJXW8Pgiid9Ijmc0Rf4cE9BmRxRmLyFkhifWx8ls,6469
186
+ junifer/markers/reho/_junifer_reho.py,sha256=7-jD28YQQWb3dfT6SxyYfGugFSq8wi7_2hUA-ryiGAo,9307
187
+ junifer/markers/reho/reho_base.py,sha256=HQ75f5qQ8RL10BpzNiHWmo7AwM7L58gs5sAPZLP8hfc,4516
188
+ junifer/markers/reho/reho_parcels.py,sha256=tqAl7_X0mQZ-ipQtC9qiV5vz_dh76z3mdfjBSQx4vYg,6170
189
+ junifer/markers/reho/reho_spheres.py,sha256=krSaVc1yeCffg8GwykT1mywoDW8Ll9_i0ivK07W5dw8,6786
190
190
  junifer/markers/reho/tests/test_reho_parcels.py,sha256=v3s52rZPeSgspL2vECpUCBp4dSuFh5_NKeEfBA6QQt0,3889
191
191
  junifer/markers/reho/tests/test_reho_spheres.py,sha256=Gj-q2NajtYVRacvTsexxCyAQrpMWBQ-GbdXZpiDujIU,3803
192
- junifer/markers/temporal_snr/__init__.py,sha256=gyJPT19xuig-og0yuzZZeRC_zX4ondcLf-wNKFDaGvs,243
193
- junifer/markers/temporal_snr/temporal_snr_base.py,sha256=T5VGhiEPtTaUpF7pE5mTZAy_O9vtgdZMtthSLncI0P4,4024
194
- junifer/markers/temporal_snr/temporal_snr_parcels.py,sha256=OLkA5YZoPwc0kfTyxS7LTT-j1jBDiwLgHm8ulFHQs7o,3299
195
- junifer/markers/temporal_snr/temporal_snr_spheres.py,sha256=VoxVA_b48Ppf7P6cxYq05WKdiqK9YteIFPbCPfOOyTM,4007
192
+ junifer/markers/temporal_snr/__init__.py,sha256=L9mT7lX8jdIPiyFxIxb19qJtt7QKGElIoK76ekOVZNc,300
193
+ junifer/markers/temporal_snr/temporal_snr_base.py,sha256=-4BnN3yCSTo3_aorrKg9P0Ccbg7hNN0cP5MJ_DSN_Iw,4056
194
+ junifer/markers/temporal_snr/temporal_snr_parcels.py,sha256=mdE-NrUB16Yli3rN7iEErB-O6xyXWMVmRjs9ewMbjy4,3334
195
+ junifer/markers/temporal_snr/temporal_snr_spheres.py,sha256=V2dTyZx7q-F7wj9iWLVEN0m57AOPlvjcVfd4_6WseBw,4042
196
196
  junifer/markers/temporal_snr/tests/test_temporal_snr_base.py,sha256=KRln5ibLTJJQ_f3pnioATfwyhK5htGc2o2J7CPcoyfs,426
197
197
  junifer/markers/temporal_snr/tests/test_temporal_snr_parcels.py,sha256=a2EUGmAdyauFCxKnDxmr9vVguYLUfbxrzl8rExBnplk,1961
198
198
  junifer/markers/temporal_snr/tests/test_temporal_snr_spheres.py,sha256=VSc7CrN8iWsI7099REwlBIjeQ3BlmVdXWs56ZLfYGbI,2094
@@ -203,52 +203,52 @@ junifer/markers/tests/test_marker_utils.py,sha256=SR3ADWI3uGv4ozYqVu-rMZnJVqP6Jn
203
203
  junifer/markers/tests/test_markers_base.py,sha256=cbuCeMmjyFMP1ea6J6XRsBQo8CivQ41ooABiT1Snj2k,3076
204
204
  junifer/markers/tests/test_parcel_aggregation.py,sha256=N0Nn42BF1apQkhntZikiU73b5clJkY2LThBv2YScJPg,26531
205
205
  junifer/markers/tests/test_sphere_aggregation.py,sha256=Xu2vrZvaK0oCZqjuJGiC6Tl8jSOFwVl75U4geclpy14,9747
206
- junifer/onthefly/__init__.py,sha256=hXPczDl10JzCuKe6MNhigXIdFwvftEaRY5fXqCuaRJM,153
207
- junifer/onthefly/read_transform.py,sha256=8ia2QktWpVhPDD20bKywuVHPU1Ys2Wyc_HvKyyRTcVo,4309
206
+ junifer/onthefly/__init__.py,sha256=WykjD_q_zWyX40Y5iKsFXhPJLzD1NPcN-XKFKZDMXfc,184
207
+ junifer/onthefly/read_transform.py,sha256=kZ-N_fKe9glaBTjhj_HXrdTtWXGI-fMoBpsawcOgsTw,4340
208
208
  junifer/onthefly/tests/test_read_transform.py,sha256=D2C3IpXQHdsJSF07v8rEwGntLGXjZOserlRhebJUAVM,4719
209
- junifer/pipeline/__init__.py,sha256=oTnyotkwfw6K7s7t8c0U8Ew3trx4wnkXlK4xw_h8PHY,261
210
- junifer/pipeline/pipeline_step_mixin.py,sha256=kU0Wut_chlT-iTUb8NP72c7YEoHAECbp7AC0vVsMejc,7219
211
- junifer/pipeline/registry.py,sha256=12tRsFeDz_kj9D1nzy9SAkBpchu5IyRH7U2h7eqPDZA,4260
212
- junifer/pipeline/singleton.py,sha256=-BiiyFiEO1EItztBcAWI_eyApR-oJTAGVRXkV706rQ4,985
213
- junifer/pipeline/update_meta_mixin.py,sha256=WJhLdeIZQ3BjiEcPJM01wlH70ZNj0z5ZS2FfRTJG5oo,1532
214
- junifer/pipeline/utils.py,sha256=70LPMyitmr4d1IiboajI6mo6zPQg6oolYWJIvenYtnA,10252
215
- junifer/pipeline/workdir_manager.py,sha256=s2I1I4vjxxqAVAT12ZrZx9KW0WxNMtxRTozB4Xcnh9M,8019
209
+ junifer/pipeline/__init__.py,sha256=mmhtYuRGetBmBvKPVb9MxklcEK_R9ly-dgkzQiOp3g8,363
210
+ junifer/pipeline/pipeline_step_mixin.py,sha256=Zry02iJUg47gECXaZe_89xwW1coH7Q0-1bwiMOghZfo,7253
211
+ junifer/pipeline/registry.py,sha256=UDByAvfWjTImUVrI7d9Ol2C7_s287-mSjtj8lMvhIck,4325
212
+ junifer/pipeline/singleton.py,sha256=c5U8Xn10MQqaXjlLzxLbw3AmSYW6aTw_iSL0rDkbuMU,1011
213
+ junifer/pipeline/update_meta_mixin.py,sha256=A_gYCPqdPlM0Xpum9TjJowb41O7ntxQg6y4YOgYeyy4,1564
214
+ junifer/pipeline/utils.py,sha256=CAp0P7rZST7bsJ9lSlkvZgIJebHW2cIm8VXTuu1A6tE,10291
215
+ junifer/pipeline/workdir_manager.py,sha256=8vBKdb7FtQaGV66Ngu_ucJJPrh2xoxf_1jMeNpJKT2Y,8050
216
216
  junifer/pipeline/tests/test_pipeline_step_mixin.py,sha256=_ykZzyNzREXy-r_yv1gY_jquLZzVBl8qwYrVORCKY_k,7807
217
217
  junifer/pipeline/tests/test_registry.py,sha256=rYN0pO3gSueQ6XsasEM9VU5BkLyaNl8WaCZiaO8Rno0,4105
218
218
  junifer/pipeline/tests/test_update_meta_mixin.py,sha256=UeWwpUi-Q5WVd36Fgfn_utXplSVXMSjLcdO2mR2xLTk,1355
219
219
  junifer/pipeline/tests/test_workdir_manager.py,sha256=E1WY4C-GDsx2c49sePqr1WR_Y3nZ1kiRn4Veu506uTs,2801
220
- junifer/preprocess/__init__.py,sha256=lpkT_mhsRjkmk676u-jWDMlPTp1Kdls-KLsXHrhiDyw,392
221
- junifer/preprocess/base.py,sha256=eahA4sjtW5t89Q7oVYEWHknGiC3KatspiMXBQ6TAiLg,6648
222
- junifer/preprocess/confounds/__init__.py,sha256=EDlcD9jy8O9xluJr6XOnFXtjGCDVqwg6sDIRDMbM8ZU,235
223
- junifer/preprocess/confounds/fmriprep_confound_remover.py,sha256=wxKiCIygaRo0WDQD4onE9mPanQXoJHxuabpfwFe7B9I,20111
220
+ junifer/preprocess/__init__.py,sha256=xxvQQJFhCk6eM6kz2Vv2PSSh1JvbcPKNcdq3quZpgjY,499
221
+ junifer/preprocess/base.py,sha256=v6azVA3RwDe3HriYlcaISOX1A6gYgFUKNzQeIDLx92Q,6681
222
+ junifer/preprocess/confounds/__init__.py,sha256=LvgaRJz1-JtkaPoLZHUYlwJX5Hs1tm4EYmE8xfeDtx4,275
223
+ junifer/preprocess/confounds/fmriprep_confound_remover.py,sha256=g5thIiva1XAP_zkKMV0_CydLtkRUGokBxmQ1GdXCroc,20151
224
224
  junifer/preprocess/confounds/tests/test_fmriprep_confound_remover.py,sha256=xN9tPkktuRHQtmY1UOP0H_sXT7LXPY282kMgYkoQTFE,19973
225
- junifer/preprocess/smoothing/__init__.py,sha256=3l8nay8Zm_BIZLEj4CwmIye5-q7lQ_niGO_Cv4Hd21c,151
225
+ junifer/preprocess/smoothing/__init__.py,sha256=M-402qVDu_AZH0HadPb6kPOla9kpI0Mz5rBwx-pOh5Y,177
226
226
  junifer/preprocess/smoothing/_afni_smoothing.py,sha256=FLJIrlYGxMT8rJdhV3LjALFIC9EPp902OuXt0FqAA_s,3266
227
227
  junifer/preprocess/smoothing/_fsl_smoothing.py,sha256=ZBdP4VsaQEYD9JYUitAXSccwvP3GZ0FyqhriV8gJxyk,3035
228
228
  junifer/preprocess/smoothing/_nilearn_smoothing.py,sha256=bshMj2DKEFkNiUbpaBoBfFFI6O80FIN49Oa3nc6FgaA,1928
229
229
  junifer/preprocess/smoothing/smoothing.py,sha256=Bb9_0wvt1CfwzpxN_svPiQ2euOZkAT9S--4qr8omhyQ,5355
230
230
  junifer/preprocess/smoothing/tests/test_smoothing.py,sha256=t1j3zEvJk5XLO4fzcb-wQyBMH-xuvR1k6WYm8zriwik,2390
231
231
  junifer/preprocess/tests/test_preprocess_base.py,sha256=-0rpe8QjqYES36H6MHuDs3cv_6upHBdVHnFMgQsmEX4,2571
232
- junifer/preprocess/warping/__init__.py,sha256=zW4DVt_RPJWT0-AsylGmh9wgFBDPkU-hx4VzV_qPayU,154
233
- junifer/preprocess/warping/_ants_warper.py,sha256=Y1UzZ5jy1TvlLEkaQKW7jCNvEHufZMdQFbg2JpY3UaM,5690
234
- junifer/preprocess/warping/_fsl_warper.py,sha256=eELmS44LYYANQaWR3VDKv8iwpEC2qnF9kbTYRanR2mE,3204
232
+ junifer/preprocess/warping/__init__.py,sha256=TaRuiobsaHuoQiAZ39Mmf846bpmimSX_tdKiRlDVZhU,182
233
+ junifer/preprocess/warping/_ants_warper.py,sha256=d1f2HDAdU8X_V0naPsTigkLZYGeP8Vlq-RwysQngtYs,5717
234
+ junifer/preprocess/warping/_fsl_warper.py,sha256=ClmRlJswB7HnTktGMcG3A0iz4pZu5xb4DOR7kCYyoEI,3230
235
235
  junifer/preprocess/warping/space_warper.py,sha256=BW7ymZdr4h7lJRtPLi3RT7qwgmu-HFJFqzZNUl341YU,6589
236
236
  junifer/preprocess/warping/tests/test_space_warper.py,sha256=hHF97XUrMeAu8pIPBUrqD77PijbSv5_dAj9-Zte7UZM,5622
237
- junifer/storage/__init__.py,sha256=5ve0Vy1stGmn9iQv0c4w-76-sg-gFqZE2IlRlJhFWpQ,337
238
- junifer/storage/base.py,sha256=X4AYx21tW1MGDhiMA8AFilbzbrMbDzcuzdAuMjM4Az0,10836
239
- junifer/storage/hdf5.py,sha256=BVvojmiRNICOcxrmqpDdIsBT94wqLNQ6pk6MGLaHmXo,37951
240
- junifer/storage/pandas_base.py,sha256=Qu3Az-xEaFftsiZwordONnOF2UBO1JgkrP8tmxhXUN4,7473
241
- junifer/storage/sqlite.py,sha256=P-eKlrptY-vRxA4mDAC5UyJzqCWNC2C_rgKlZFGjiKg,21244
242
- junifer/storage/utils.py,sha256=I-is6bGE29bNwlqv2P8B5QN2zAnY7A7fm8Y-AwMJ0MU,7258
237
+ junifer/storage/__init__.py,sha256=k1grTibXqDb1ZSdwtxYUPGS2EWIl75f1cHbBKNS7bRk,465
238
+ junifer/storage/base.py,sha256=ZzbvLr0_RNPKwRpBXkWtjyJQ6w8u7RuA7SWLQoB2Mzc,10871
239
+ junifer/storage/hdf5.py,sha256=jFUkCTLydPwUZaRmc4GwXq202wLr8JzQ4YOgQN44L3c,37986
240
+ junifer/storage/pandas_base.py,sha256=Ex9YCle8ZrQbJZiThiehpYci-LWeESPLtMbocd_SZqM,7514
241
+ junifer/storage/sqlite.py,sha256=f__LJR20hxT4F1sWJQS-bXV85eoQg1dxRMjhd6C84kM,21281
242
+ junifer/storage/utils.py,sha256=l0oWCqUId7yJ97Ro-j5Nh7fu04449m5T71VWC8I-x6Q,7400
243
243
  junifer/storage/tests/test_hdf5.py,sha256=PybSXK0VA1UUFve1xqV-_Wqc7UyCDZGj_C58Z48c6tc,31512
244
244
  junifer/storage/tests/test_pandas_base.py,sha256=y_TfUGpuXkj_39yVon3rMDxMeBrZXs58ZW6OSty5LNw,4058
245
245
  junifer/storage/tests/test_sqlite.py,sha256=JPfE6r34o86XkKaB6yjMVmO_2vUV40DjsaHICagUtjk,28318
246
246
  junifer/storage/tests/test_storage_base.py,sha256=YzgfspuggzXejyPIoRCPST3ZzH9Pi7dgl0IHN7kynXM,3071
247
247
  junifer/storage/tests/test_utils.py,sha256=vRGhbeOsSn2Izhjh5AaaJkp6X2EoIQVH3a-9COFVnzg,11854
248
- junifer/testing/__init__.py,sha256=LYkax9qpZlxcZnMpZLlvnPSmUr_JoF_CjO3gugvj1Co,214
249
- junifer/testing/datagrabbers.py,sha256=SQGjYCTLIXpGOklnQ1RMmp6MvXaDHjOYeRj4pkqJJvQ,6476
248
+ junifer/testing/__init__.py,sha256=1O9KTxkUwEDrEvtU5k-rnSlJVZ7DHsgxgSoGmlfTVHE,263
249
+ junifer/testing/datagrabbers.py,sha256=iYS4IjYbOFQw4fH8e7HNvBOsYgVjMZNodNCLoI25oNA,6601
250
250
  junifer/testing/registry.py,sha256=iGH3hAt36VtvnZO7UQjybHGh2FI8vo1InY3uDSct5Ps,720
251
- junifer/testing/utils.py,sha256=Qgf1ZPk-V1jU2g82a7K0P43VAxbTjOnnBfdV-9wDuMo,558
251
+ junifer/testing/utils.py,sha256=TEIwdV7etWglXOFQX1O5ZR18GzfYZ0LcRqXuK-JPo8U,591
252
252
  junifer/testing/data/sub-0001_task-anticipation_acq-seq_desc-confounds_regressors.tsv,sha256=iDY1apF5caxnyGqvBYWer5JRKQIfuOwoT-SzzsgL59s,406849
253
253
  junifer/testing/tests/test_oasisvmbtesting_datagrabber.py,sha256=BtfExi4VF-jZsi5A3hHS_EGm2O_bJoXnxWF44Z_4i24,794
254
254
  junifer/testing/tests/test_partlycloudytesting_datagrabber.py,sha256=ggU8XQQ6F0HSCh9VkbNGoaZM6CUxKXKlcuf_kGkrRF4,1297
@@ -256,17 +256,17 @@ junifer/testing/tests/test_spmauditory_datagrabber.py,sha256=1G1emk-Ze59HiNLaYsy
256
256
  junifer/testing/tests/test_testing_registry.py,sha256=oerticBaPRaRZm3yANzInLac0Mqph3Y0aZPQFayu7xA,827
257
257
  junifer/tests/test_main.py,sha256=GMff7jlisGM9_FsiUwWDte43j-KQJGFRYZpwRRqTkd8,373
258
258
  junifer/tests/test_stats.py,sha256=3vPMgYYpWxk8ECDFOMm3-dFBlh4XxjL83SwRBSBAHok,4155
259
- junifer/utils/__init__.py,sha256=pnx76oY_PbQzuN7DKRZ2c7K81XDOm8tOvB46wMfhZW8,302
260
- junifer/utils/fs.py,sha256=Jd9AoV2fIF7pT7KhXsn8T1O1fJ1_SFZgaFuOBAM7DG8,460
261
- junifer/utils/helpers.py,sha256=Hp3yGZa9x659BCqFTd4keEU1gbHXNAbJ1_lHG1M6lwI,1338
262
- junifer/utils/logging.py,sha256=furcU3XIUpUvnpe4PEwzWWIWgmH4j2ZA4MQdvSGWjj0,9216
259
+ junifer/utils/__init__.py,sha256=V1-1FKPhACiS2nUr8TTgQFq7irEnp2an5YdIU3Zz7RY,439
260
+ junifer/utils/fs.py,sha256=M3CKBLh4gPS6s9giyopgb1hHMXzLb6k3cung2wHVBjs,492
261
+ junifer/utils/helpers.py,sha256=uEdZ3wCgvbWwp1v0DdxIbaV8qORmNSoJIaWmb9haKh0,1366
262
+ junifer/utils/logging.py,sha256=b02qVTdE-WNVo6uxCYdIHVmNfM7An0NdCJNq_2Gte8o,9355
263
263
  junifer/utils/tests/test_fs.py,sha256=WQS7cKlKEZ742CIuiOYYpueeAhY9PqlastfDVpVVtvE,923
264
264
  junifer/utils/tests/test_helpers.py,sha256=k5qqfxK8dFyuewTJyR1Qn6-nFaYNuVr0ysc18bfPjyU,929
265
265
  junifer/utils/tests/test_logging.py,sha256=l8oo-AiBV7H6_IzlsNcj__cLeZBUvgIGoaMszD9VaJg,7754
266
- junifer-0.0.5.dev131.dist-info/AUTHORS.rst,sha256=rmULKpchpSol4ExWFdm-qu4fkpSZPYqIESVJBZtGb6E,163
267
- junifer-0.0.5.dev131.dist-info/LICENSE.md,sha256=MqCnOBu8uXsEOzRZWh9EBVfVz-kE9NkXcLCrtGXo2yU,34354
268
- junifer-0.0.5.dev131.dist-info/METADATA,sha256=X2Z8pWnC9xNVhFFD_oPVV5x2RlKuD-VuVTLpNEvSD8w,8270
269
- junifer-0.0.5.dev131.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
270
- junifer-0.0.5.dev131.dist-info/entry_points.txt,sha256=DxFvKq0pOqRunAK0FxwJcoDfV1-dZvsFDpD5HRqSDhw,48
271
- junifer-0.0.5.dev131.dist-info/top_level.txt,sha256=4bAq1R2QFQ4b3hohjys2JBvxrl0GKk5LNFzYvz9VGcA,8
272
- junifer-0.0.5.dev131.dist-info/RECORD,,
266
+ junifer-0.0.5.dev145.dist-info/AUTHORS.rst,sha256=rmULKpchpSol4ExWFdm-qu4fkpSZPYqIESVJBZtGb6E,163
267
+ junifer-0.0.5.dev145.dist-info/LICENSE.md,sha256=MqCnOBu8uXsEOzRZWh9EBVfVz-kE9NkXcLCrtGXo2yU,34354
268
+ junifer-0.0.5.dev145.dist-info/METADATA,sha256=wLNrUZogrVkFN8xbkxvaSa9uJys188Aq-NJ4OrWeUAU,8270
269
+ junifer-0.0.5.dev145.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
270
+ junifer-0.0.5.dev145.dist-info/entry_points.txt,sha256=DxFvKq0pOqRunAK0FxwJcoDfV1-dZvsFDpD5HRqSDhw,48
271
+ junifer-0.0.5.dev145.dist-info/top_level.txt,sha256=4bAq1R2QFQ4b3hohjys2JBvxrl0GKk5LNFzYvz9VGcA,8
272
+ junifer-0.0.5.dev145.dist-info/RECORD,,