rapidtide 3.0.10__tar.gz → 3.1__tar.gz
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.
- {rapidtide-3.0.10 → rapidtide-3.1}/CHANGELOG.md +22 -0
- rapidtide-3.1/CLAUDE.md +191 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/INSTALL.rst +11 -10
- {rapidtide-3.0.10/rapidtide.egg-info → rapidtide-3.1}/PKG-INFO +10 -9
- {rapidtide-3.0.10 → rapidtide-3.1}/pyproject.toml +6 -4
- rapidtide-3.1/rapidtide/Colortables.py +677 -0
- rapidtide-3.1/rapidtide/OrthoImageItem.py +1626 -0
- rapidtide-3.1/rapidtide/RapidtideDataset.py +2858 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/_version.py +3 -3
- rapidtide-3.1/rapidtide/calccoherence.py +313 -0
- rapidtide-3.1/rapidtide/calcnullsimfunc.py +328 -0
- rapidtide-3.1/rapidtide/calcsimfunc.py +379 -0
- rapidtide-3.1/rapidtide/correlate.py +2080 -0
- rapidtide-3.1/rapidtide/data/examples/src/testLD +56 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testalign +1 -1
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testdelayvar +0 -1
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testfmri +19 -1
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testglmfilt +5 -5
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testhappy +30 -1
- rapidtide-3.1/rapidtide/data/examples/src/testppgproc +17 -0
- rapidtide-3.1/rapidtide/data/examples/src/testrolloff +11 -0
- rapidtide-3.1/rapidtide/data/models/model_cnn_pytorch/best_model.pth +0 -0
- rapidtide-3.1/rapidtide/data/models/model_cnn_pytorch/loss.png +0 -0
- rapidtide-3.1/rapidtide/data/models/model_cnn_pytorch/loss.txt +1 -0
- rapidtide-3.1/rapidtide/data/models/model_cnn_pytorch/model.pth +0 -0
- rapidtide-3.1/rapidtide/data/models/model_cnn_pytorch/model_meta.json +68 -0
- rapidtide-3.1/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_space-MNI152NLin2009cAsym_2mm.nii.gz +0 -0
- rapidtide-3.1/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_space-MNI152NLin2009cAsym_2mm_mask.nii.gz +0 -0
- rapidtide-3.1/rapidtide/decorators.py +91 -0
- rapidtide-3.1/rapidtide/dlfilter.py +3764 -0
- rapidtide-3.1/rapidtide/dlfiltertorch.py +4843 -0
- rapidtide-3.1/rapidtide/externaltools.py +442 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/fMRIData_class.py +79 -40
- rapidtide-3.1/rapidtide/filter.py +3384 -0
- rapidtide-3.1/rapidtide/fit.py +4080 -0
- rapidtide-3.1/rapidtide/genericmultiproc.py +197 -0
- rapidtide-3.1/rapidtide/happy_supportfuncs.py +3556 -0
- rapidtide-3.1/rapidtide/helper_classes.py +871 -0
- rapidtide-3.1/rapidtide/io.py +4412 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/linfitfiltpass.py +341 -75
- rapidtide-3.1/rapidtide/makelaggedtcs.py +314 -0
- rapidtide-3.1/rapidtide/maskutil.py +694 -0
- rapidtide-3.1/rapidtide/miscmath.py +1300 -0
- rapidtide-3.1/rapidtide/multiproc.py +382 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/patchmatch.py +234 -33
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/peakeval.py +32 -30
- rapidtide-3.1/rapidtide/ppgproc.py +2203 -0
- rapidtide-3.1/rapidtide/qualitycheck.py +695 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/refinedelay.py +422 -57
- rapidtide-3.1/rapidtide/refineregressor.py +948 -0
- rapidtide-3.1/rapidtide/resample.py +1384 -0
- rapidtide-3.1/rapidtide/scripts/applyppgproc.py +28 -0
- rapidtide-3.1/rapidtide/simFuncClasses.py +2113 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/simfuncfit.py +260 -46
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/stats.py +540 -238
- rapidtide-3.1/rapidtide/tests/happycomp +9 -0
- rapidtide-3.1/rapidtide/tests/test_dlfiltertorch.py +627 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_findmaxlag.py +24 -8
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunhappy_v1.py +0 -2
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunhappy_v2.py +0 -2
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunhappy_v3.py +1 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunhappy_v4.py +2 -2
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunrapidtide_v7.py +1 -1
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_simroundtrip.py +8 -8
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/utils.py +9 -8
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tidepoolTemplate.py +142 -38
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tidepoolTemplate_alt.py +165 -44
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tidepoolTemplate_big.py +189 -52
- rapidtide-3.1/rapidtide/util.py +2220 -0
- rapidtide-3.1/rapidtide/voxelData.py +1048 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/wiener.py +19 -12
- rapidtide-3.1/rapidtide/wiener2.py +227 -0
- rapidtide-3.1/rapidtide/wiener_doc.py +255 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/adjustoffset.py +105 -3
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/aligntcs.py +85 -2
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/applydlfilter.py +87 -10
- rapidtide-3.1/rapidtide/workflows/applyppgproc.py +522 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/atlasaverage.py +210 -47
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/atlastool.py +100 -3
- rapidtide-3.1/rapidtide/workflows/calcSimFuncMap.py +501 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/calctexticc.py +201 -9
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/ccorrica.py +97 -4
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/cleanregressor.py +168 -29
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/delayvar.py +163 -10
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/diffrois.py +81 -3
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/endtidalproc.py +144 -4
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/fdica.py +195 -15
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/filtnifti.py +70 -3
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/filttc.py +74 -3
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/fitSimFuncMap.py +206 -48
- rapidtide-3.1/rapidtide/workflows/fixtr.py +134 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/gmscalc.py +113 -3
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/happy.py +813 -201
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/happy2std.py +144 -12
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/happy_parser.py +149 -8
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/histnifti.py +118 -2
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/histtc.py +84 -3
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/linfitfilt.py +117 -4
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/localflow.py +328 -28
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/mergequality.py +79 -3
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/niftidecomp.py +322 -18
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/niftistats.py +174 -4
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/pairproc.py +88 -2
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/pairwisemergenifti.py +85 -2
- rapidtide-3.1/rapidtide/workflows/parser_funcs.py +2307 -0
- rapidtide-3.1/rapidtide/workflows/physiofreq.py +304 -0
- rapidtide-3.1/rapidtide/workflows/pixelcomp.py +416 -0
- rapidtide-3.1/rapidtide/workflows/plethquality.py +213 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/polyfitim.py +151 -11
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/proj2flow.py +75 -2
- rapidtide-3.1/rapidtide/workflows/rankimage.py +217 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/rapidtide.py +272 -15
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/rapidtide2std.py +98 -2
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/rapidtide_parser.py +109 -9
- rapidtide-3.1/rapidtide/workflows/refineDelayMap.py +248 -0
- rapidtide-3.1/rapidtide/workflows/refineRegressor.py +1225 -0
- rapidtide-3.1/rapidtide/workflows/regressfrommaps.py +305 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/resamplenifti.py +85 -3
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/resampletc.py +91 -3
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/retrolagtcs.py +98 -6
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/retroregress.py +165 -9
- rapidtide-3.1/rapidtide/workflows/roisummarize.py +367 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/runqualitycheck.py +71 -3
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/showarbcorr.py +147 -4
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/showhist.py +86 -2
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/showstxcorr.py +160 -3
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/showtc.py +159 -3
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/showxcorrx.py +184 -4
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/showxy.py +185 -15
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/simdata.py +262 -36
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/spatialfit.py +77 -2
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/spatialmi.py +251 -27
- rapidtide-3.1/rapidtide/workflows/spectrogram.py +490 -0
- rapidtide-3.1/rapidtide/workflows/synthASL.py +316 -0
- rapidtide-3.1/rapidtide/workflows/tcfrom2col.py +134 -0
- rapidtide-3.1/rapidtide/workflows/tcfrom3col.py +132 -0
- rapidtide-3.1/rapidtide/workflows/tidepool.py +5361 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/utils.py +19 -14
- rapidtide-3.1/rapidtide/workflows/utils_doc.py +293 -0
- rapidtide-3.1/rapidtide/workflows/variabilityizer.py +200 -0
- {rapidtide-3.0.10 → rapidtide-3.1/rapidtide.egg-info}/PKG-INFO +10 -9
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide.egg-info/SOURCES.txt +20 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide.egg-info/entry_points.txt +1 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide.egg-info/requires.txt +2 -1
- rapidtide-3.0.10/rapidtide/Colortables.py +0 -212
- rapidtide-3.0.10/rapidtide/OrthoImageItem.py +0 -620
- rapidtide-3.0.10/rapidtide/RapidtideDataset.py +0 -1411
- rapidtide-3.0.10/rapidtide/calccoherence.py +0 -146
- rapidtide-3.0.10/rapidtide/calcnullsimfunc.py +0 -177
- rapidtide-3.0.10/rapidtide/calcsimfunc.py +0 -176
- rapidtide-3.0.10/rapidtide/correlate.py +0 -1263
- rapidtide-3.0.10/rapidtide/dlfilter.py +0 -1647
- rapidtide-3.0.10/rapidtide/externaltools.py +0 -127
- rapidtide-3.0.10/rapidtide/filter.py +0 -2295
- rapidtide-3.0.10/rapidtide/fit.py +0 -2650
- rapidtide-3.0.10/rapidtide/genericmultiproc.py +0 -122
- rapidtide-3.0.10/rapidtide/happy_supportfuncs.py +0 -1683
- rapidtide-3.0.10/rapidtide/helper_classes.py +0 -330
- rapidtide-3.0.10/rapidtide/io.py +0 -2419
- rapidtide-3.0.10/rapidtide/makelaggedtcs.py +0 -123
- rapidtide-3.0.10/rapidtide/maskutil.py +0 -324
- rapidtide-3.0.10/rapidtide/miscmath.py +0 -594
- rapidtide-3.0.10/rapidtide/multiproc.py +0 -194
- rapidtide-3.0.10/rapidtide/qualitycheck.py +0 -382
- rapidtide-3.0.10/rapidtide/refineregressor.py +0 -634
- rapidtide-3.0.10/rapidtide/resample.py +0 -898
- rapidtide-3.0.10/rapidtide/simFuncClasses.py +0 -1138
- rapidtide-3.0.10/rapidtide/util.py +0 -1121
- rapidtide-3.0.10/rapidtide/voxelData.py +0 -401
- rapidtide-3.0.10/rapidtide/wiener2.py +0 -121
- rapidtide-3.0.10/rapidtide/workflows/calcSimFuncMap.py +0 -271
- rapidtide-3.0.10/rapidtide/workflows/fixtr.py +0 -64
- rapidtide-3.0.10/rapidtide/workflows/parser_funcs.py +0 -926
- rapidtide-3.0.10/rapidtide/workflows/physiofreq.py +0 -178
- rapidtide-3.0.10/rapidtide/workflows/pixelcomp.py +0 -213
- rapidtide-3.0.10/rapidtide/workflows/plethquality.py +0 -131
- rapidtide-3.0.10/rapidtide/workflows/rankimage.py +0 -110
- rapidtide-3.0.10/rapidtide/workflows/refineDelayMap.py +0 -138
- rapidtide-3.0.10/rapidtide/workflows/refineRegressor.py +0 -636
- rapidtide-3.0.10/rapidtide/workflows/regressfrommaps.py +0 -184
- rapidtide-3.0.10/rapidtide/workflows/roisummarize.py +0 -199
- rapidtide-3.0.10/rapidtide/workflows/spectrogram.py +0 -217
- rapidtide-3.0.10/rapidtide/workflows/synthASL.py +0 -165
- rapidtide-3.0.10/rapidtide/workflows/tcfrom2col.py +0 -60
- rapidtide-3.0.10/rapidtide/workflows/tcfrom3col.py +0 -60
- rapidtide-3.0.10/rapidtide/workflows/tidepool.py +0 -2522
- rapidtide-3.0.10/rapidtide/workflows/variabilityizer.py +0 -87
- {rapidtide-3.0.10 → rapidtide-3.1}/CODE_OF_CONDUCT.md +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/CONTRIBUTING.md +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/LICENSE +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/MANIFEST.in +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/README.rst +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/TODO.md +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/USAGE.rst +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/cloud/download-nda-data +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/cloud/downloadcmd-auther +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/cloud/gmscalc-HCPYA +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/cloud/list-rapidtide-relevant-images +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/cloud/mount-and-run +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/cloud/rapidtide-HCPYA +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/cloud/rapidtide-cloud-test +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/cloud/simple-cp-test +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/__init__.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/installtestdata +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/test_findmaxlag.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/test_io +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/test_mlregressallt.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/test_rapidtidecompare +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testatlasaverage +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testboth +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testcifti +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testcomplex +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testdecomp +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testfileorfloat +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testfingerprint +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testfmridocker +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testfrozen +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testfuncs +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testinitdelay +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testlinfit +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testlocalflow +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testmodels +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testnewrefine +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testnoiseamp +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testoscorr +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testpad +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testrefineonly +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testretro +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testretrolagtcs +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testsimdata +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_cnn_w064_l13_fn20_fl08/loss.png +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_cnn_w064_l13_fn20_fl08/loss.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_cnn_w064_l13_fn20_fl08/model.keras +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_cnn_w064_l13_fn20_fl08/model_meta.json +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_revised_tf2/model.keras +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_revised_tf2/model_meta.json +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_serdar2_tf2/model.keras +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_serdar2_tf2/model_meta.json +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_serdar_tf2/model.keras +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_serdar_tf2/model_meta.json +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/ASPECTS_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/ASPECTS_2mm_mask.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/ASPECTS_3mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/ASPECTS_3mm_mask.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/ASPECTS_regions.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/ATTbasedFlowTerritories_split_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/ATTbasedFlowTerritories_split_2mm_mask.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/ATTbasedFlowTerritories_split_regions.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200_binmask_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200_lag_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200_mask_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200_negmask_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200_sigma_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200_strength_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_MTT_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_binmask_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_csf_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_gray_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_graylaghist.json +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_graylaghist.tsv.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_laghist.json +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_laghist.tsv.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_mask_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_maxcorr_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_maxtime_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_maxwidth_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_negmask_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_timepercentile_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_white_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_whitelaghist.json +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_whitelaghist.tsv.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1-seg2.xml +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1-seg2_regions.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1-seg2_space-MNI152NLin6Asym_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1.xml +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_regions.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_space-MNI152NLin6Asym_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_space-MNI152NLin6Asym_2mm_mask.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL2.xml +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL2_regions.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL2_space-MNI152NLin6Asym_2mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL2_space-MNI152NLin6Asym_2mm_mask.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/MNI152_T1_1mm_Brain_FAST_seg.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/MNI152_T1_1mm_Brain_Mask.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/MNI152_T1_2mm_Brain_FAST_seg.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/MNI152_T1_2mm_Brain_Mask.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/MNI152_T1_3mm.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/MNI152_T1_3mm_brain_mask.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/slicetimes/HCP-YA_slicetimes.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/__init__.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/adjustoffset.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/aligntcs.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/applydlfilter.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/atlasaverage.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/atlastool.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/calcicc.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/calctexticc.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/calcttest.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/ccorrica.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/delayvar.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/diffrois.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/endtidalproc.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/fdica.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/filtnifti.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/filttc.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/fingerprint.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/fixtr.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/gmscalc.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/happy.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/happy2std.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/happywarp.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/histnifti.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/histtc.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/linfitfilt.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/localflow.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/mergequality.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/pairproc.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/pairwisemergenifti.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/physiofreq.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/pixelcomp.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/plethquality.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/polyfitim.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/proj2flow.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/rankimage.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/rapidtide.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/rapidtide2std.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/resamplenifti.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/resampletc.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/retrolagtcs.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/retroregress.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/roisummarize.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/runqualitycheck.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/showarbcorr.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/showhist.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/showstxcorr.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/showtc.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/showxcorr_legacy.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/showxcorrx.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/showxy.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/simdata.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/spatialdecomp.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/spatialfit.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/spatialmi.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/spectrogram.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/stupidramtricks.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/synthASL.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/tcfrom2col.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/tcfrom3col.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/temporaldecomp.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/testhrv.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/threeD.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/tidepool.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/variabilityizer.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/.coveragerc +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/__init__.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/cleanposttest +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/matplotlibrc +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/resethappytargets +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/resetrapidtidetargets +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/resettargets +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/runlocaltest +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/showdirectories +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/showkernels +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_aliasedcorrelate.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_aligntcs.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_calcicc.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_cleanregressor.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_congrid.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_correlate.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_corrpass.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_delayestimation.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_doresample.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_externaltools.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fastresampler.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_filter.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunhappy_v5.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunrapidtide_v1.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunrapidtide_v2.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunrapidtide_v3.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunrapidtide_v4.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunrapidtide_v5.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunrapidtide_v6.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunrapidtide_v8.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_getparsers.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_io.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_linfitfiltpass.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_mi.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_miscmath.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_motionregress.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_nullcorr.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_padvec.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_parserfuncs.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_phaseanalysis.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_rapidtideparser.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_refinedelay.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_runmisc.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_sharedmem.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_simulate.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_stcorrelate.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_timeshift.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_valtoindex.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_zRapidtideDataset.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/100206_REST1_LR_cardfromfmri_25.0Hz.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/100206_REST1_LR_cardfromfmri_dlfiltered_25.0Hz.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/100206_REST1_LR_info.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/100206_REST1_LR_normcardfromfmri_25.0Hz.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/100206_REST1_LR_normcardfromfmri_dlfiltered_25.0Hz.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/100206_REST1_LR_normpleth_25.0Hz.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/100206_REST1_LR_pleth_25.0Hz.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/100206_REST1_LR_pleth_dlfiltered_25.0Hz.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/fmri_globalmean.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/happy_phase1target_vesselmask.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/happy_phase2output_vesselmask.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/happy_target_vesselmask.nii.gz +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/lforegressor.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/lt_rt.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/phasetest.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/rapidtide2x_phase1target_reference_fmrires.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/stcorrtest_Rvalue.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/stcorrtest_delay.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/stcorrtest_mask.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/stcorrtest_pearson.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/stcorrtest_pvalue.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/testfilt.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/tmp/.placeholder.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/usercustomize.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tidepoolTemplate.ui +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tidepoolTemplate_alt.ui +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tidepoolTemplate_alt_qt6.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tidepoolTemplate_big.ui +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tidepoolTemplate_big_qt6.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tidepoolTemplate_qt6.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/__init__.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide.egg-info/dependency_links.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide.egg-info/top_level.txt +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/setup.cfg +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/setup.py +0 -0
- {rapidtide-3.0.10 → rapidtide-3.1}/versioneer.py +0 -0
|
@@ -1,7 +1,29 @@
|
|
|
1
1
|
# Release history
|
|
2
2
|
|
|
3
|
+
## Version 3.1 (11/8/25)
|
|
4
|
+
* (happy) Moved to a pytorch implementation of the deep learning filter, as tensorflow seems to be barely maintained these days. The pytorch filter is now the default, and performance seems indistinguishable. I'll keep the tensorflow version around until it becomes (more) cumbersome to do so. Use ``--usetensorflow`` to get the old filter.
|
|
5
|
+
* (happy) Added "pulsatility" map output - the percentage pulsatile cardiac variation around the mean in each voxel.
|
|
6
|
+
* (happy) Made pass labelling consistent for output files.
|
|
7
|
+
* (happy) Switched nifti file output to use maplist (jsons have description fields now).
|
|
8
|
+
* (rapidtide) Output some timecourse statistics before and after sLFO regression.
|
|
9
|
+
* (atlasaverage) Fixed label output when extracting data from 3D files.
|
|
10
|
+
* (package) Added type hints to all core routines (thanks Claude!). Everything works, but I'll probably be finetuning the type hints for a while to make them more specific (and I'll be resolving sloppy type handling that I'm now aware of due to mypy).
|
|
11
|
+
* (package) Added docstrings to all core routines (thanks script I wrote that calls qwen3-coder locally so I don't run out of Claude tokens!).
|
|
12
|
+
* (package) Added support for python 3.13 (now that tensorflow is FINALLY available for 3.13).
|
|
13
|
+
* (package) Dropped support for python 3.9 (it doesn't support modern type hint formats).
|
|
14
|
+
* (package) More dependabot PRs.
|
|
15
|
+
|
|
16
|
+
## Version 3.0.11 (8/27/25)
|
|
17
|
+
* (Docker) Fixed a critical bug in building the container.
|
|
18
|
+
* (happy) Added the ability to specify an overall processing mask.
|
|
19
|
+
* (docs) Revised the singularity/apptainer installation section.
|
|
20
|
+
* (reference) Added MNI152NLin2009cAsym versions of the JHU atlases.
|
|
21
|
+
* (package) Miscellaneous code cleanups.
|
|
22
|
+
* (package) More dependabot PRs.
|
|
23
|
+
|
|
3
24
|
## Version 3.0.10 (8/18/25)
|
|
4
25
|
* (tidepool) Do better checking on which required files exist so it's more clear why a dataset won't load.
|
|
26
|
+
* (tidepool) Add support for PySide6 (in addition to PyQt5 and PyQt6).
|
|
5
27
|
* (docs) Clarified that the sLFO filtered output of rapidtide has NO other filtering applied to is - the temporal, spatial, and confound filtering is all discarded prior to the final sLFO filtering step.
|
|
6
28
|
* (package) Played with some coding models (qwen3-coder, Claude) to write some docstrings and check a few routines for bugs. It generally worked well, but you definitely have to check their work.
|
|
7
29
|
* (package) Adjusted coverage calculation.
|
rapidtide-3.1/CLAUDE.md
ADDED
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
# CLAUDE.md
|
|
2
|
+
|
|
3
|
+
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
|
4
|
+
|
|
5
|
+
## Project Overview
|
|
6
|
+
|
|
7
|
+
Rapidtide is a Python package for modeling, characterizing, visualizing, and removing time-varying physiological blood signals from fMRI and fNIRS datasets. The package has two primary workhorses:
|
|
8
|
+
|
|
9
|
+
- **rapidtide**: Characterizes bulk blood flow through time delay analysis on functional imaging data, finding time-lagged correlations between voxelwise time series in the low-frequency oscillation (LFO) band
|
|
10
|
+
- **happy**: Extracts and analyzes cardiac signals from fMRI data using hypersampling techniques, even when TR is too long to properly sample cardiac waveforms
|
|
11
|
+
|
|
12
|
+
## Architecture
|
|
13
|
+
|
|
14
|
+
### Code Organization
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
rapidtide/
|
|
18
|
+
├── scripts/ # Command-line entry points (~65 utilities)
|
|
19
|
+
├── workflows/ # Main processing pipelines (rapidtide, happy, and various utilities)
|
|
20
|
+
├── tests/ # Pytest test suite (~44 test files)
|
|
21
|
+
├── candidatetests/ # Work-in-progress tests (not run in CI)
|
|
22
|
+
├── data/ # Reference data, models, and examples
|
|
23
|
+
└── [modules] # Core processing modules (see below)
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
### Key Modules
|
|
27
|
+
|
|
28
|
+
- **io.py**: NIFTI/text file I/O operations
|
|
29
|
+
- **filter.py**: Signal filtering and preprocessing
|
|
30
|
+
- **correlate.py**: Cross-correlation and time-lag analysis
|
|
31
|
+
- **fit.py**: Peak fitting and parameter estimation
|
|
32
|
+
- **resample.py**: Time series resampling utilities
|
|
33
|
+
- **stats.py**: Statistical analysis functions
|
|
34
|
+
- **multiproc.py**: Parallel processing infrastructure
|
|
35
|
+
- **happy_supportfuncs.py**: Cardiac signal processing for happy workflow
|
|
36
|
+
- **dlfilter.py / dlfiltertorch.py**: Deep learning filters for signal cleaning
|
|
37
|
+
- **RapidtideDataset.py**: Dataset class for tidepool GUI
|
|
38
|
+
- **OrthoImageItem.py**: Orthogonal image display for tidepool GUI
|
|
39
|
+
|
|
40
|
+
### Script/Workflow Architecture
|
|
41
|
+
|
|
42
|
+
All command-line tools follow a consistent pattern:
|
|
43
|
+
1. `rapidtide/scripts/<name>.py` - Minimal entry point that imports from workflows
|
|
44
|
+
2. `rapidtide/workflows/<name>.py` - Main processing logic
|
|
45
|
+
3. `rapidtide/workflows/<name>_parser.py` - Argument parsing (for complex tools)
|
|
46
|
+
|
|
47
|
+
Entry points are registered in `pyproject.toml` under `[project.scripts]`.
|
|
48
|
+
|
|
49
|
+
### Main Workflows
|
|
50
|
+
|
|
51
|
+
**rapidtide workflow** (`rapidtide/workflows/rapidtide.py`):
|
|
52
|
+
- Performs voxel-wise time delay analysis on fMRI data
|
|
53
|
+
- Generates multiple 3D NIFTI maps (lag time, correlation values, masks, etc.)
|
|
54
|
+
- Outputs text files with significance thresholds and processing parameters
|
|
55
|
+
|
|
56
|
+
**happy workflow** (`rapidtide/workflows/happy.py`):
|
|
57
|
+
- Extracts cardiac waveforms from fMRI using slice-selective averaging
|
|
58
|
+
- Cleans estimates using deep learning filters
|
|
59
|
+
- Constructs cardiac pulsation maps over a single cardiac cycle
|
|
60
|
+
|
|
61
|
+
## Development Commands
|
|
62
|
+
|
|
63
|
+
### Setup and Installation
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
# Install package in development mode with all dependencies
|
|
67
|
+
pip install -e .[tests,doc]
|
|
68
|
+
|
|
69
|
+
# Or for all optional dependencies
|
|
70
|
+
pip install -e .[all]
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
### Testing
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
# Run full test suite
|
|
77
|
+
pytest rapidtide/tests/
|
|
78
|
+
|
|
79
|
+
# Run specific test file
|
|
80
|
+
pytest rapidtide/tests/test_filter.py
|
|
81
|
+
|
|
82
|
+
# Run with coverage
|
|
83
|
+
pytest --cov=rapidtide rapidtide/tests/
|
|
84
|
+
|
|
85
|
+
# Run specific test function
|
|
86
|
+
pytest rapidtide/tests/test_filter.py::test_function_name -v
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
Note: Tests are run in CI via CircleCI for Python 3.9, 3.10, 3.11, and 3.12.
|
|
90
|
+
|
|
91
|
+
### Code Formatting
|
|
92
|
+
|
|
93
|
+
```bash
|
|
94
|
+
# Format code with black (line length: 99)
|
|
95
|
+
black rapidtide/
|
|
96
|
+
|
|
97
|
+
# Check specific file
|
|
98
|
+
black --check rapidtide/filter.py
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
Black configuration in `pyproject.toml`:
|
|
102
|
+
- Line length: 99
|
|
103
|
+
- Target: Python 3.9+
|
|
104
|
+
- Excludes: versioneer files, candidatetests, disabledtests, data/examples
|
|
105
|
+
|
|
106
|
+
### Building and Distribution
|
|
107
|
+
|
|
108
|
+
```bash
|
|
109
|
+
# Build package
|
|
110
|
+
python -m build
|
|
111
|
+
|
|
112
|
+
# Install locally
|
|
113
|
+
pip install .
|
|
114
|
+
|
|
115
|
+
# Build Docker container
|
|
116
|
+
./builddocker.sh
|
|
117
|
+
|
|
118
|
+
# Test Docker container
|
|
119
|
+
./testdocker.sh
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
### Running Main Tools
|
|
123
|
+
|
|
124
|
+
```bash
|
|
125
|
+
# Run rapidtide analysis
|
|
126
|
+
rapidtide <input_4d_nifti> <output_root> [options]
|
|
127
|
+
|
|
128
|
+
# Run happy analysis
|
|
129
|
+
happy <input_4d_nifti> <output_root> [options]
|
|
130
|
+
|
|
131
|
+
# View results in GUI
|
|
132
|
+
tidepool # Then select a lag time map file
|
|
133
|
+
|
|
134
|
+
# Quick timecourse visualization
|
|
135
|
+
showtc <textfile>
|
|
136
|
+
|
|
137
|
+
# Cross-correlation between two timecourses
|
|
138
|
+
showxcorrx <file1> <file2>
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
## Important Constraints
|
|
142
|
+
|
|
143
|
+
### Python Version
|
|
144
|
+
- **Minimum**: Python 3.9
|
|
145
|
+
- **Maximum**: Python 3.12 (tensorflow limitation)
|
|
146
|
+
- Uses modern Python features (f-strings, type hints)
|
|
147
|
+
|
|
148
|
+
### Data Formats
|
|
149
|
+
- Input: 4D NIFTI files for fMRI data
|
|
150
|
+
- Output: 3D NIFTI maps, text files with timecourses/parameters
|
|
151
|
+
- Timecourses: Whitespace-separated text files
|
|
152
|
+
|
|
153
|
+
### FSL Dependency
|
|
154
|
+
Some tools (rapidtide2std, happy2std) require a working FSL installation for registration to MNI152 space.
|
|
155
|
+
|
|
156
|
+
## Key Design Patterns
|
|
157
|
+
|
|
158
|
+
### Versioning
|
|
159
|
+
Uses versioneer for automatic version management from git tags:
|
|
160
|
+
- Version set in `rapidtide/_version.py` (auto-generated)
|
|
161
|
+
- Tag prefix: `v` (e.g., v2.9.0)
|
|
162
|
+
|
|
163
|
+
### Testing Philosophy
|
|
164
|
+
- Main tests in `rapidtide/tests/` are run in CI
|
|
165
|
+
- Experimental/incomplete tests in `rapidtide/candidatetests/`
|
|
166
|
+
- Many tests use synthetic data and compare against reference outputs
|
|
167
|
+
- Full workflow tests: `test_fullrunrapidtide_v*.py`, `test_fullrunhappy_v*.py`
|
|
168
|
+
|
|
169
|
+
### Multiprocessing
|
|
170
|
+
Many operations support parallel processing:
|
|
171
|
+
- Uses `rapidtide/multiproc.py` and `rapidtide/genericmultiproc.py`
|
|
172
|
+
- Configurable number of worker processes
|
|
173
|
+
- Shared memory for efficiency
|
|
174
|
+
|
|
175
|
+
## Special Notes
|
|
176
|
+
|
|
177
|
+
- The codebase uses extensive command-line argument parsing with validation in `workflows/parser_funcs.py`
|
|
178
|
+
- Deep learning models for signal filtering are in `rapidtide/data/models/`
|
|
179
|
+
- The package includes a GUI tool (tidepool) built with PyQt6 for visualizing results
|
|
180
|
+
- Reference data and example datasets are in `rapidtide/data/`
|
|
181
|
+
- Documentation is built with Sphinx and hosted on ReadTheDocs
|
|
182
|
+
|
|
183
|
+
## Style Conventions
|
|
184
|
+
|
|
185
|
+
See the contributing guide at http://rapidtide.readthedocs.io/en/latest/contributing.html for full style guidelines.
|
|
186
|
+
|
|
187
|
+
Key points:
|
|
188
|
+
- Use Black formatter with 99-character line length
|
|
189
|
+
- Follow NumPy docstring format
|
|
190
|
+
- Keep changes focused on specific issues/features
|
|
191
|
+
- Work on feature branches, not main
|
|
@@ -65,7 +65,7 @@ source code, and type:
|
|
|
65
65
|
|
|
66
66
|
git clone https://github.com/bbfrederick/rapidtide.git
|
|
67
67
|
cd rapidtide
|
|
68
|
-
refresh
|
|
68
|
+
./refresh
|
|
69
69
|
|
|
70
70
|
|
|
71
71
|
to install all of the tools in the package. You should be able to run
|
|
@@ -74,11 +74,11 @@ subdirectories).
|
|
|
74
74
|
|
|
75
75
|
If you’ve made edits to the code, or want to sync up with the current version on Github,
|
|
76
76
|
cd into the
|
|
77
|
-
package directory and type
|
|
77
|
+
package directory and type ``./refresh``:
|
|
78
78
|
|
|
79
79
|
::
|
|
80
80
|
|
|
81
|
-
refresh
|
|
81
|
+
./refresh
|
|
82
82
|
|
|
83
83
|
|
|
84
84
|
This will uninstall the current version, sync up to github, and reinstall
|
|
@@ -190,22 +190,23 @@ Then the following command will work (you can replace 'tidepool' with any of the
|
|
|
190
190
|
Singularity installation
|
|
191
191
|
------------------------
|
|
192
192
|
|
|
193
|
-
Many times you can't use Docker, because of security concerns.
|
|
194
|
-
that runs entirely in user space, so the amount of mischief you can get up to is significantly less.
|
|
193
|
+
Many times you can't use Docker, because of security concerns. Apptainer (formerly singularity), from LBL, offers containerized computing
|
|
194
|
+
that runs entirely in user space, so the amount of mischief you can get up to is significantly less. Apptainer
|
|
195
195
|
containers can be created from Docker containers as follows (stealing from the fMRIprep documentation):
|
|
196
196
|
::
|
|
197
197
|
|
|
198
|
-
|
|
198
|
+
apptainer build \
|
|
199
|
+
/my_image_directory/rapidtide.sif \
|
|
200
|
+
docker://fredericklab/rapidtide:latest-release
|
|
199
201
|
|
|
200
202
|
|
|
201
203
|
Running the container is similar to Docker. The "-B" option is used to bind filesystems to mountpoints in the container.
|
|
202
|
-
For example, to run the simple
|
|
204
|
+
For example, to run the simple rapidtide analysis above, type the following:
|
|
203
205
|
::
|
|
204
206
|
|
|
205
|
-
|
|
206
|
-
--cleanenv \
|
|
207
|
+
apptainer run \
|
|
207
208
|
-B INPUTDIRECTORY:/data_in,OUTPUTDIRECTORY:/data_out \
|
|
208
|
-
rapidtide.
|
|
209
|
+
rapidtide.sif \
|
|
209
210
|
rapidtide \
|
|
210
211
|
/data_in/YOURNIFTIFILE.nii.gz \
|
|
211
212
|
/data_out/outputname \
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rapidtide
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.1
|
|
4
4
|
Summary: Tools for performing correlation analysis on fMRI data.
|
|
5
5
|
Author: Taylor Salo, Daniel M. Drucker, Ph.D., Jeffrey N Stout, Yaroslav O. Halchenko, Derek Monroe
|
|
6
6
|
Author-email: "Blaise deB. Frederick" <blaise.frederick@gmail.com>
|
|
@@ -16,10 +16,10 @@ Classifier: Development Status :: 5 - Production/Stable
|
|
|
16
16
|
Classifier: Intended Audience :: Science/Research
|
|
17
17
|
Classifier: Topic :: Scientific/Engineering :: Image Recognition
|
|
18
18
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
20
19
|
Classifier: Programming Language :: Python :: 3.10
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.11
|
|
22
21
|
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
23
23
|
Requires-Python: >=3.9
|
|
24
24
|
Description-Content-Type: text/x-rst
|
|
25
25
|
License-File: LICENSE
|
|
@@ -40,15 +40,16 @@ Requires-Dist: statsmodels
|
|
|
40
40
|
Requires-Dist: pywavelets
|
|
41
41
|
Requires-Dist: tensorflow>=2.18.0
|
|
42
42
|
Requires-Dist: tf-keras>=2.18.0
|
|
43
|
+
Requires-Dist: torch
|
|
43
44
|
Requires-Dist: tqdm
|
|
44
45
|
Requires-Dist: versioneer
|
|
45
|
-
Provides-Extra:
|
|
46
|
-
Requires-Dist: codecov; extra == "
|
|
47
|
-
Requires-Dist: coverage; extra == "
|
|
48
|
-
Requires-Dist: coveralls; extra == "
|
|
49
|
-
Requires-Dist: flake8-black; extra == "
|
|
50
|
-
Requires-Dist: pytest; extra == "
|
|
51
|
-
Requires-Dist: pytest-cov; extra == "
|
|
46
|
+
Provides-Extra: test
|
|
47
|
+
Requires-Dist: codecov; extra == "test"
|
|
48
|
+
Requires-Dist: coverage; extra == "test"
|
|
49
|
+
Requires-Dist: coveralls; extra == "test"
|
|
50
|
+
Requires-Dist: flake8-black; extra == "test"
|
|
51
|
+
Requires-Dist: pytest; extra == "test"
|
|
52
|
+
Requires-Dist: pytest-cov; extra == "test"
|
|
52
53
|
Provides-Extra: doc
|
|
53
54
|
Requires-Dist: sphinx; extra == "doc"
|
|
54
55
|
Requires-Dist: sphinx_rtd_theme; extra == "doc"
|
|
@@ -14,10 +14,10 @@ classifiers = [
|
|
|
14
14
|
'Intended Audience :: Science/Research',
|
|
15
15
|
'Topic :: Scientific/Engineering :: Image Recognition',
|
|
16
16
|
'License :: OSI Approved :: Apache Software License',
|
|
17
|
-
'Programming Language :: Python :: 3.9',
|
|
18
17
|
'Programming Language :: Python :: 3.10',
|
|
19
18
|
'Programming Language :: Python :: 3.11',
|
|
20
19
|
'Programming Language :: Python :: 3.12',
|
|
20
|
+
'Programming Language :: Python :: 3.13',
|
|
21
21
|
]
|
|
22
22
|
requires-python = '>=3.9'
|
|
23
23
|
dependencies = [
|
|
@@ -38,6 +38,7 @@ dependencies = [
|
|
|
38
38
|
'pywavelets',
|
|
39
39
|
'tensorflow >= 2.18.0',
|
|
40
40
|
'tf-keras >= 2.18.0',
|
|
41
|
+
'torch',
|
|
41
42
|
'tqdm',
|
|
42
43
|
'versioneer',
|
|
43
44
|
]
|
|
@@ -59,7 +60,7 @@ authors = [
|
|
|
59
60
|
'Changelog' = 'https://github.com/bbfrederick/rapidtide/blob/main/CHANGELOG.md'
|
|
60
61
|
|
|
61
62
|
[project.optional-dependencies]
|
|
62
|
-
|
|
63
|
+
test = [
|
|
63
64
|
'codecov',
|
|
64
65
|
'coverage',
|
|
65
66
|
'coveralls',
|
|
@@ -82,6 +83,7 @@ doc = [
|
|
|
82
83
|
adjustoffset = 'rapidtide.scripts.adjustoffset:entrypoint'
|
|
83
84
|
aligntcs = 'rapidtide.scripts.aligntcs:entrypoint'
|
|
84
85
|
applydlfilter = 'rapidtide.scripts.applydlfilter:entrypoint'
|
|
86
|
+
applyppgproc = 'rapidtide.scripts.applyppgproc:entrypoint'
|
|
85
87
|
atlasaverage = 'rapidtide.scripts.atlasaverage:entrypoint'
|
|
86
88
|
atlastool = 'rapidtide.scripts.atlastool:entrypoint'
|
|
87
89
|
calcicc = 'rapidtide.scripts.calcicc:entrypoint'
|
|
@@ -161,11 +163,11 @@ rapidtide = ['.eggs', '.git', '.github', '.pytest_cache', 'rapidtide/candidatete
|
|
|
161
163
|
# Aliases
|
|
162
164
|
docs = ['rapidtide[doc]']
|
|
163
165
|
tests = ['rapidtide[test]']
|
|
164
|
-
all = ['rapidtide[
|
|
166
|
+
all = ['rapidtide[doc,test]']
|
|
165
167
|
|
|
166
168
|
[tool.black]
|
|
167
169
|
line-length = 99
|
|
168
|
-
target-version = ['
|
|
170
|
+
target-version = ['py310']
|
|
169
171
|
include = '\.pyi?$'
|
|
170
172
|
exclude = '''
|
|
171
173
|
(
|