junifer 0.0.6.dev393__py3-none-any.whl → 0.0.6.dev408__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.
- junifer/_version.py +2 -2
- junifer/markers/complexity/tests/test_complexity_base.py +1 -1
- junifer/markers/complexity/tests/test_hurst_exponent.py +5 -5
- junifer/markers/complexity/tests/test_multiscale_entropy_auc.py +5 -5
- junifer/markers/complexity/tests/test_perm_entropy.py +5 -5
- junifer/markers/complexity/tests/test_range_entropy.py +5 -5
- junifer/markers/complexity/tests/test_range_entropy_auc.py +5 -5
- junifer/markers/complexity/tests/test_sample_entropy.py +5 -5
- junifer/markers/complexity/tests/test_weighted_perm_entropy.py +5 -5
- {junifer-0.0.6.dev393.dist-info → junifer-0.0.6.dev408.dist-info}/METADATA +1 -1
- {junifer-0.0.6.dev393.dist-info → junifer-0.0.6.dev408.dist-info}/RECORD +16 -16
- {junifer-0.0.6.dev393.dist-info → junifer-0.0.6.dev408.dist-info}/AUTHORS.rst +0 -0
- {junifer-0.0.6.dev393.dist-info → junifer-0.0.6.dev408.dist-info}/LICENSE.md +0 -0
- {junifer-0.0.6.dev393.dist-info → junifer-0.0.6.dev408.dist-info}/WHEEL +0 -0
- {junifer-0.0.6.dev393.dist-info → junifer-0.0.6.dev408.dist-info}/entry_points.txt +0 -0
- {junifer-0.0.6.dev393.dist-info → junifer-0.0.6.dev408.dist-info}/top_level.txt +0 -0
junifer/_version.py
CHANGED
@@ -12,5 +12,5 @@ __version__: str
|
|
12
12
|
__version_tuple__: VERSION_TUPLE
|
13
13
|
version_tuple: VERSION_TUPLE
|
14
14
|
|
15
|
-
__version__ = version = '0.0.6.
|
16
|
-
__version_tuple__ = version_tuple = (0, 0, 6, '
|
15
|
+
__version__ = version = '0.0.6.dev408'
|
16
|
+
__version_tuple__ = version_tuple = (0, 0, 6, 'dev408')
|
@@ -12,11 +12,11 @@ import pytest
|
|
12
12
|
pytest.importorskip("neurokit2")
|
13
13
|
|
14
14
|
|
15
|
-
from junifer.datareader import DefaultDataReader
|
16
|
-
from junifer.markers.complexity import HurstExponent
|
17
|
-
from junifer.pipeline.utils import _check_ants
|
18
|
-
from junifer.storage import SQLiteFeatureStorage
|
19
|
-
from junifer.testing.datagrabbers import (
|
15
|
+
from junifer.datareader import DefaultDataReader
|
16
|
+
from junifer.markers.complexity import HurstExponent
|
17
|
+
from junifer.pipeline.utils import _check_ants
|
18
|
+
from junifer.storage import SQLiteFeatureStorage
|
19
|
+
from junifer.testing.datagrabbers import (
|
20
20
|
SPMAuditoryTestingDataGrabber,
|
21
21
|
)
|
22
22
|
|
@@ -11,11 +11,11 @@ import pytest
|
|
11
11
|
|
12
12
|
pytest.importorskip("neurokit2")
|
13
13
|
|
14
|
-
from junifer.datareader import DefaultDataReader
|
15
|
-
from junifer.markers.complexity import MultiscaleEntropyAUC
|
16
|
-
from junifer.pipeline.utils import _check_ants
|
17
|
-
from junifer.storage import SQLiteFeatureStorage
|
18
|
-
from junifer.testing.datagrabbers import (
|
14
|
+
from junifer.datareader import DefaultDataReader
|
15
|
+
from junifer.markers.complexity import MultiscaleEntropyAUC
|
16
|
+
from junifer.pipeline.utils import _check_ants
|
17
|
+
from junifer.storage import SQLiteFeatureStorage
|
18
|
+
from junifer.testing.datagrabbers import (
|
19
19
|
SPMAuditoryTestingDataGrabber,
|
20
20
|
)
|
21
21
|
|
@@ -11,11 +11,11 @@ import pytest
|
|
11
11
|
|
12
12
|
pytest.importorskip("neurokit2")
|
13
13
|
|
14
|
-
from junifer.datareader import DefaultDataReader
|
15
|
-
from junifer.markers.complexity import PermEntropy
|
16
|
-
from junifer.pipeline.utils import _check_ants
|
17
|
-
from junifer.storage import SQLiteFeatureStorage
|
18
|
-
from junifer.testing.datagrabbers import (
|
14
|
+
from junifer.datareader import DefaultDataReader
|
15
|
+
from junifer.markers.complexity import PermEntropy
|
16
|
+
from junifer.pipeline.utils import _check_ants
|
17
|
+
from junifer.storage import SQLiteFeatureStorage
|
18
|
+
from junifer.testing.datagrabbers import (
|
19
19
|
SPMAuditoryTestingDataGrabber,
|
20
20
|
)
|
21
21
|
|
@@ -12,11 +12,11 @@ import pytest
|
|
12
12
|
pytest.importorskip("neurokit2")
|
13
13
|
|
14
14
|
|
15
|
-
from junifer.datareader import DefaultDataReader
|
16
|
-
from junifer.markers.complexity import RangeEntropy
|
17
|
-
from junifer.pipeline.utils import _check_ants
|
18
|
-
from junifer.storage import SQLiteFeatureStorage
|
19
|
-
from junifer.testing.datagrabbers import (
|
15
|
+
from junifer.datareader import DefaultDataReader
|
16
|
+
from junifer.markers.complexity import RangeEntropy
|
17
|
+
from junifer.pipeline.utils import _check_ants
|
18
|
+
from junifer.storage import SQLiteFeatureStorage
|
19
|
+
from junifer.testing.datagrabbers import (
|
20
20
|
SPMAuditoryTestingDataGrabber,
|
21
21
|
)
|
22
22
|
|
@@ -12,11 +12,11 @@ import pytest
|
|
12
12
|
pytest.importorskip("neurokit2")
|
13
13
|
|
14
14
|
|
15
|
-
from junifer.datareader import DefaultDataReader
|
16
|
-
from junifer.markers.complexity import RangeEntropyAUC
|
17
|
-
from junifer.pipeline.utils import _check_ants
|
18
|
-
from junifer.storage import SQLiteFeatureStorage
|
19
|
-
from junifer.testing.datagrabbers import (
|
15
|
+
from junifer.datareader import DefaultDataReader
|
16
|
+
from junifer.markers.complexity import RangeEntropyAUC
|
17
|
+
from junifer.pipeline.utils import _check_ants
|
18
|
+
from junifer.storage import SQLiteFeatureStorage
|
19
|
+
from junifer.testing.datagrabbers import (
|
20
20
|
SPMAuditoryTestingDataGrabber,
|
21
21
|
)
|
22
22
|
|
@@ -11,11 +11,11 @@ import pytest
|
|
11
11
|
|
12
12
|
pytest.importorskip("neurokit2")
|
13
13
|
|
14
|
-
from junifer.datareader import DefaultDataReader
|
15
|
-
from junifer.markers.complexity import SampleEntropy
|
16
|
-
from junifer.pipeline.utils import _check_ants
|
17
|
-
from junifer.storage import SQLiteFeatureStorage
|
18
|
-
from junifer.testing.datagrabbers import (
|
14
|
+
from junifer.datareader import DefaultDataReader
|
15
|
+
from junifer.markers.complexity import SampleEntropy
|
16
|
+
from junifer.pipeline.utils import _check_ants
|
17
|
+
from junifer.storage import SQLiteFeatureStorage
|
18
|
+
from junifer.testing.datagrabbers import (
|
19
19
|
SPMAuditoryTestingDataGrabber,
|
20
20
|
)
|
21
21
|
|
@@ -11,11 +11,11 @@ import pytest
|
|
11
11
|
|
12
12
|
pytest.importorskip("neurokit2")
|
13
13
|
|
14
|
-
from junifer.datareader import DefaultDataReader
|
15
|
-
from junifer.markers.complexity import WeightedPermEntropy
|
16
|
-
from junifer.pipeline.utils import _check_ants
|
17
|
-
from junifer.storage import SQLiteFeatureStorage
|
18
|
-
from junifer.testing.datagrabbers import (
|
14
|
+
from junifer.datareader import DefaultDataReader
|
15
|
+
from junifer.markers.complexity import WeightedPermEntropy
|
16
|
+
from junifer.pipeline.utils import _check_ants
|
17
|
+
from junifer.storage import SQLiteFeatureStorage
|
18
|
+
from junifer.testing.datagrabbers import (
|
19
19
|
SPMAuditoryTestingDataGrabber,
|
20
20
|
)
|
21
21
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: junifer
|
3
|
-
Version: 0.0.6.
|
3
|
+
Version: 0.0.6.dev408
|
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,6 +1,6 @@
|
|
1
1
|
junifer/__init__.py,sha256=2McgH1yNue6Z1V26-uN_mfMjbTcx4CLhym-DMBl5xA4,266
|
2
2
|
junifer/__init__.pyi,sha256=SsTvgq2Dod6UqJN96GH1lCphH6hJQQurEJHGNhHjGUI,508
|
3
|
-
junifer/_version.py,sha256=
|
3
|
+
junifer/_version.py,sha256=XEge1e1yTF4Uc-MOBy8hWnXT85e71f078ldsm3YOVk0,428
|
4
4
|
junifer/conftest.py,sha256=PWYkkRDU8ly2lYwv7VBKMHje4et6HX7Yey3Md_I2KbA,613
|
5
5
|
junifer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
junifer/stats.py,sha256=e9aaagMGtgpRfW3Wdpz9ocpnYld1IWylCDcjFUgX9Mk,6225
|
@@ -198,14 +198,14 @@ junifer/markers/complexity/range_entropy.py,sha256=4q23tK4T4JCxJsmuNeUAxJ2Eso21z
|
|
198
198
|
junifer/markers/complexity/range_entropy_auc.py,sha256=0jFCiVhfamK4PaXceEJNbiIOepC_CsjHz-BMZYJHlSE,5005
|
199
199
|
junifer/markers/complexity/sample_entropy.py,sha256=5hcd8YYHpB5-9he5O_7yq7bI-2KNqzIIdAdc7b6d-jU,4473
|
200
200
|
junifer/markers/complexity/weighted_perm_entropy.py,sha256=eNDPLICRcggYSKEsYw4i96-qPjkhb2qhNisweWhOeiA,4525
|
201
|
-
junifer/markers/complexity/tests/test_complexity_base.py,sha256=
|
202
|
-
junifer/markers/complexity/tests/test_hurst_exponent.py,sha256=
|
203
|
-
junifer/markers/complexity/tests/test_multiscale_entropy_auc.py,sha256=
|
204
|
-
junifer/markers/complexity/tests/test_perm_entropy.py,sha256=
|
205
|
-
junifer/markers/complexity/tests/test_range_entropy.py,sha256=
|
206
|
-
junifer/markers/complexity/tests/test_range_entropy_auc.py,sha256=
|
207
|
-
junifer/markers/complexity/tests/test_sample_entropy.py,sha256=
|
208
|
-
junifer/markers/complexity/tests/test_weighted_perm_entropy.py,sha256=
|
201
|
+
junifer/markers/complexity/tests/test_complexity_base.py,sha256=5-JqcADqDx-wDvbCE2Eplw4TUe7q_s9TDcxjLC1j6_Q,439
|
202
|
+
junifer/markers/complexity/tests/test_hurst_exponent.py,sha256=HmAK3-k5IugZ8RCgETeqzF3zWStC7rWKBDQqWZ7WYoU,2241
|
203
|
+
junifer/markers/complexity/tests/test_multiscale_entropy_auc.py,sha256=M-BmO-gQDlf16tJSdPZ1lsFxefY5Tz0ai0OlpDQvNn4,2312
|
204
|
+
junifer/markers/complexity/tests/test_perm_entropy.py,sha256=dXnZZErUmykn0C-P1sEH3hBJVRmDe37frcE2o2cRhuE,2229
|
205
|
+
junifer/markers/complexity/tests/test_range_entropy.py,sha256=oUC9ccLJuYsHf2XDIp3qpjTxvr802v71kzkpkBGFCaQ,2232
|
206
|
+
junifer/markers/complexity/tests/test_range_entropy_auc.py,sha256=k_FOKL_doreEqDuj8LVSY_IyV7hwoU26bQGEqHS-0j4,2268
|
207
|
+
junifer/markers/complexity/tests/test_sample_entropy.py,sha256=4lPQvhAEkp_GW3Q74lrJVj2j9t7l20EPhIFv3c-wJ1E,2240
|
208
|
+
junifer/markers/complexity/tests/test_weighted_perm_entropy.py,sha256=ogWOwmD224FtZhFXaxx-lmk4rvJ_OuNr2zi56Ftfjlg,2303
|
209
209
|
junifer/markers/falff/__init__.py,sha256=qxdx_3FsVrn7h3gtbocK0ZmvqZwPQZGKuVkPm31ejNM,217
|
210
210
|
junifer/markers/falff/__init__.pyi,sha256=X-q2zBjUX0imQ37yN2Cg5gKfDvq8sh_9y2hRH4g5ufY,120
|
211
211
|
junifer/markers/falff/_afni_falff.py,sha256=PYkSOFMyaHoGYDvmBjKLW1ALyWBe7yI36JBqZ71ji2c,4223
|
@@ -341,10 +341,10 @@ junifer/utils/tests/test_config.py,sha256=7ltIXuwb_W4Mv_1dxQWyiyM10XgUAfsWKV6D_i
|
|
341
341
|
junifer/utils/tests/test_fs.py,sha256=WQS7cKlKEZ742CIuiOYYpueeAhY9PqlastfDVpVVtvE,923
|
342
342
|
junifer/utils/tests/test_helpers.py,sha256=k5qqfxK8dFyuewTJyR1Qn6-nFaYNuVr0ysc18bfPjyU,929
|
343
343
|
junifer/utils/tests/test_logging.py,sha256=duO4ou365hxwa_kwihFtKPLaL6LC5XHiyhOijrrngbA,8009
|
344
|
-
junifer-0.0.6.
|
345
|
-
junifer-0.0.6.
|
346
|
-
junifer-0.0.6.
|
347
|
-
junifer-0.0.6.
|
348
|
-
junifer-0.0.6.
|
349
|
-
junifer-0.0.6.
|
350
|
-
junifer-0.0.6.
|
344
|
+
junifer-0.0.6.dev408.dist-info/AUTHORS.rst,sha256=rmULKpchpSol4ExWFdm-qu4fkpSZPYqIESVJBZtGb6E,163
|
345
|
+
junifer-0.0.6.dev408.dist-info/LICENSE.md,sha256=MqCnOBu8uXsEOzRZWh9EBVfVz-kE9NkXcLCrtGXo2yU,34354
|
346
|
+
junifer-0.0.6.dev408.dist-info/METADATA,sha256=L_hOkAn4h0UdmAnE_uM4bdtOGX18ldVWUAUgSJWyQDo,8429
|
347
|
+
junifer-0.0.6.dev408.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
348
|
+
junifer-0.0.6.dev408.dist-info/entry_points.txt,sha256=6O8ru0BP-SP7YMUZiizFNoaZ2HvJpadO2G7nKk4PwjI,48
|
349
|
+
junifer-0.0.6.dev408.dist-info/top_level.txt,sha256=4bAq1R2QFQ4b3hohjys2JBvxrl0GKk5LNFzYvz9VGcA,8
|
350
|
+
junifer-0.0.6.dev408.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|