rapidtide 3.0.11__tar.gz → 3.1.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.11 → rapidtide-3.1.1}/CHANGELOG.md +21 -0
- rapidtide-3.1.1/CLAUDE.md +191 -0
- {rapidtide-3.0.11/rapidtide.egg-info → rapidtide-3.1.1}/PKG-INFO +10 -8
- {rapidtide-3.0.11 → rapidtide-3.1.1}/pyproject.toml +12 -8
- rapidtide-3.1.1/rapidtide/Colortables.py +677 -0
- rapidtide-3.1.1/rapidtide/OrthoImageItem.py +1626 -0
- rapidtide-3.1.1/rapidtide/RapidtideDataset.py +2858 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/_version.py +3 -3
- rapidtide-3.1.1/rapidtide/calccoherence.py +313 -0
- rapidtide-3.1.1/rapidtide/calcnullsimfunc.py +325 -0
- rapidtide-3.1.1/rapidtide/calcsimfunc.py +376 -0
- rapidtide-3.1.1/rapidtide/correlate.py +2083 -0
- rapidtide-3.1.1/rapidtide/data/examples/src/testLD +56 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testalign +1 -1
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testdelayvar +0 -1
- rapidtide-3.1.1/rapidtide/data/examples/src/testfmri +92 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testglmfilt +5 -5
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testhappy +29 -7
- rapidtide-3.1.1/rapidtide/data/examples/src/testppgproc +17 -0
- rapidtide-3.1.1/rapidtide/data/examples/src/testrolloff +11 -0
- rapidtide-3.1.1/rapidtide/data/models/model_cnn_pytorch/best_model.pth +0 -0
- rapidtide-3.1.1/rapidtide/data/models/model_cnn_pytorch/loss.png +0 -0
- rapidtide-3.1.1/rapidtide/data/models/model_cnn_pytorch/loss.txt +1 -0
- rapidtide-3.1.1/rapidtide/data/models/model_cnn_pytorch/model.pth +0 -0
- rapidtide-3.1.1/rapidtide/data/models/model_cnn_pytorch/model_meta.json +68 -0
- rapidtide-3.1.1/rapidtide/decorators.py +91 -0
- rapidtide-3.1.1/rapidtide/dlfilter.py +3763 -0
- rapidtide-3.1.1/rapidtide/dlfiltertorch.py +4842 -0
- rapidtide-3.1.1/rapidtide/externaltools.py +442 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/fMRIData_class.py +79 -40
- rapidtide-3.1.1/rapidtide/filter.py +3384 -0
- rapidtide-3.1.1/rapidtide/fit.py +4080 -0
- rapidtide-3.1.1/rapidtide/genericmultiproc.py +197 -0
- rapidtide-3.1.1/rapidtide/happy_supportfuncs.py +3558 -0
- rapidtide-3.1.1/rapidtide/helper_classes.py +871 -0
- rapidtide-3.1.1/rapidtide/io.py +4417 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/linfitfiltpass.py +346 -99
- rapidtide-3.1.1/rapidtide/makelaggedtcs.py +309 -0
- rapidtide-3.1.1/rapidtide/maskutil.py +710 -0
- rapidtide-3.1.1/rapidtide/miscmath.py +1300 -0
- rapidtide-3.1.1/rapidtide/multiproc.py +382 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/patchmatch.py +242 -42
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/peakeval.py +31 -31
- rapidtide-3.1.1/rapidtide/ppgproc.py +2203 -0
- rapidtide-3.1.1/rapidtide/qualitycheck.py +695 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/refinedelay.py +431 -57
- rapidtide-3.1.1/rapidtide/refineregressor.py +939 -0
- rapidtide-3.1.1/rapidtide/resample.py +1384 -0
- rapidtide-3.1.1/rapidtide/scripts/applyppgproc.py +28 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/showxcorr_legacy.py +7 -7
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/stupidramtricks.py +15 -17
- rapidtide-3.1.1/rapidtide/simFuncClasses.py +2113 -0
- rapidtide-3.1.1/rapidtide/simfuncfit.py +570 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/stats.py +540 -238
- rapidtide-3.1.1/rapidtide/tests/happycomp +9 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_cleanregressor.py +1 -2
- rapidtide-3.1.1/rapidtide/tests/test_dlfiltertorch.py +627 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_findmaxlag.py +24 -8
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_fullrunhappy_v1.py +0 -2
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_fullrunhappy_v2.py +0 -2
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_fullrunhappy_v3.py +11 -4
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_fullrunhappy_v4.py +10 -2
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_fullrunrapidtide_v7.py +1 -1
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_getparsers.py +11 -3
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_refinedelay.py +0 -1
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_simroundtrip.py +16 -8
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_stcorrelate.py +3 -1
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/utils.py +9 -8
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tidepoolTemplate.py +142 -38
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tidepoolTemplate_alt.py +165 -44
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tidepoolTemplate_big.py +189 -52
- rapidtide-3.1.1/rapidtide/util.py +2220 -0
- rapidtide-3.1.1/rapidtide/voxelData.py +1048 -0
- rapidtide-3.1.1/rapidtide/wiener.py +246 -0
- rapidtide-3.1.1/rapidtide/wiener2.py +227 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/adjustoffset.py +105 -3
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/aligntcs.py +85 -2
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/applydlfilter.py +87 -10
- rapidtide-3.1.1/rapidtide/workflows/applyppgproc.py +540 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/atlasaverage.py +210 -47
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/atlastool.py +100 -3
- rapidtide-3.1.1/rapidtide/workflows/calcSimFuncMap.py +490 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/calctexticc.py +201 -9
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/ccorrica.py +101 -6
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/cleanregressor.py +165 -31
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/delayvar.py +171 -23
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/diffrois.py +81 -3
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/endtidalproc.py +144 -4
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/fdica.py +195 -15
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/filtnifti.py +70 -3
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/filttc.py +74 -3
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/fitSimFuncMap.py +202 -51
- rapidtide-3.1.1/rapidtide/workflows/fixtr.py +134 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/gmscalc.py +113 -3
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/happy.py +801 -199
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/happy2std.py +144 -12
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/happy_parser.py +163 -23
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/histnifti.py +118 -2
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/histtc.py +84 -3
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/linfitfilt.py +117 -4
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/localflow.py +328 -28
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/mergequality.py +79 -3
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/niftidecomp.py +322 -18
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/niftistats.py +174 -4
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/pairproc.py +98 -4
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/pairwisemergenifti.py +85 -2
- rapidtide-3.1.1/rapidtide/workflows/parser_funcs.py +2307 -0
- rapidtide-3.1.1/rapidtide/workflows/physiofreq.py +304 -0
- rapidtide-3.1.1/rapidtide/workflows/pixelcomp.py +415 -0
- rapidtide-3.1.1/rapidtide/workflows/plethquality.py +213 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/polyfitim.py +151 -11
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/proj2flow.py +75 -2
- rapidtide-3.1.1/rapidtide/workflows/rankimage.py +217 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/rapidtide.py +368 -76
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/rapidtide2std.py +98 -2
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/rapidtide_parser.py +109 -9
- rapidtide-3.1.1/rapidtide/workflows/refineDelayMap.py +249 -0
- rapidtide-3.1.1/rapidtide/workflows/refineRegressor.py +1215 -0
- rapidtide-3.1.1/rapidtide/workflows/regressfrommaps.py +308 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/resamplenifti.py +85 -3
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/resampletc.py +91 -3
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/retrolagtcs.py +99 -9
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/retroregress.py +176 -26
- rapidtide-3.1.1/rapidtide/workflows/roisummarize.py +368 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/runqualitycheck.py +71 -3
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/showarbcorr.py +149 -6
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/showhist.py +86 -2
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/showstxcorr.py +160 -3
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/showtc.py +159 -3
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/showxcorrx.py +190 -10
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/showxy.py +185 -15
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/simdata.py +264 -38
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/spatialfit.py +77 -2
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/spatialmi.py +250 -27
- rapidtide-3.1.1/rapidtide/workflows/spectrogram.py +490 -0
- rapidtide-3.1.1/rapidtide/workflows/synthASL.py +316 -0
- rapidtide-3.1.1/rapidtide/workflows/tcfrom2col.py +134 -0
- rapidtide-3.1.1/rapidtide/workflows/tcfrom3col.py +132 -0
- rapidtide-3.1.1/rapidtide/workflows/tidepool.py +5363 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/utils.py +19 -14
- rapidtide-3.1.1/rapidtide/workflows/utils_doc.py +293 -0
- rapidtide-3.1.1/rapidtide/workflows/variabilityizer.py +200 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1/rapidtide.egg-info}/PKG-INFO +10 -8
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide.egg-info/SOURCES.txt +17 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide.egg-info/entry_points.txt +1 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide.egg-info/requires.txt +8 -5
- rapidtide-3.0.11/rapidtide/Colortables.py +0 -212
- rapidtide-3.0.11/rapidtide/OrthoImageItem.py +0 -623
- rapidtide-3.0.11/rapidtide/RapidtideDataset.py +0 -1411
- rapidtide-3.0.11/rapidtide/calccoherence.py +0 -146
- rapidtide-3.0.11/rapidtide/calcnullsimfunc.py +0 -177
- rapidtide-3.0.11/rapidtide/calcsimfunc.py +0 -176
- rapidtide-3.0.11/rapidtide/correlate.py +0 -1263
- rapidtide-3.0.11/rapidtide/data/examples/src/testfmri +0 -42
- rapidtide-3.0.11/rapidtide/dlfilter.py +0 -1647
- rapidtide-3.0.11/rapidtide/externaltools.py +0 -127
- rapidtide-3.0.11/rapidtide/filter.py +0 -2295
- rapidtide-3.0.11/rapidtide/fit.py +0 -2650
- rapidtide-3.0.11/rapidtide/genericmultiproc.py +0 -122
- rapidtide-3.0.11/rapidtide/happy_supportfuncs.py +0 -1683
- rapidtide-3.0.11/rapidtide/helper_classes.py +0 -330
- rapidtide-3.0.11/rapidtide/io.py +0 -2419
- rapidtide-3.0.11/rapidtide/makelaggedtcs.py +0 -123
- rapidtide-3.0.11/rapidtide/maskutil.py +0 -324
- rapidtide-3.0.11/rapidtide/miscmath.py +0 -594
- rapidtide-3.0.11/rapidtide/multiproc.py +0 -194
- rapidtide-3.0.11/rapidtide/qualitycheck.py +0 -382
- rapidtide-3.0.11/rapidtide/refineregressor.py +0 -634
- rapidtide-3.0.11/rapidtide/resample.py +0 -898
- rapidtide-3.0.11/rapidtide/simFuncClasses.py +0 -1138
- rapidtide-3.0.11/rapidtide/simfuncfit.py +0 -370
- rapidtide-3.0.11/rapidtide/util.py +0 -1121
- rapidtide-3.0.11/rapidtide/voxelData.py +0 -401
- rapidtide-3.0.11/rapidtide/wiener.py +0 -133
- rapidtide-3.0.11/rapidtide/wiener2.py +0 -121
- rapidtide-3.0.11/rapidtide/workflows/calcSimFuncMap.py +0 -271
- rapidtide-3.0.11/rapidtide/workflows/fixtr.py +0 -64
- rapidtide-3.0.11/rapidtide/workflows/parser_funcs.py +0 -926
- rapidtide-3.0.11/rapidtide/workflows/physiofreq.py +0 -178
- rapidtide-3.0.11/rapidtide/workflows/pixelcomp.py +0 -213
- rapidtide-3.0.11/rapidtide/workflows/plethquality.py +0 -131
- rapidtide-3.0.11/rapidtide/workflows/rankimage.py +0 -110
- rapidtide-3.0.11/rapidtide/workflows/refineDelayMap.py +0 -138
- rapidtide-3.0.11/rapidtide/workflows/refineRegressor.py +0 -636
- rapidtide-3.0.11/rapidtide/workflows/regressfrommaps.py +0 -184
- rapidtide-3.0.11/rapidtide/workflows/roisummarize.py +0 -199
- rapidtide-3.0.11/rapidtide/workflows/spectrogram.py +0 -217
- rapidtide-3.0.11/rapidtide/workflows/synthASL.py +0 -165
- rapidtide-3.0.11/rapidtide/workflows/tcfrom2col.py +0 -60
- rapidtide-3.0.11/rapidtide/workflows/tcfrom3col.py +0 -60
- rapidtide-3.0.11/rapidtide/workflows/tidepool.py +0 -2522
- rapidtide-3.0.11/rapidtide/workflows/variabilityizer.py +0 -87
- {rapidtide-3.0.11 → rapidtide-3.1.1}/CODE_OF_CONDUCT.md +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/CONTRIBUTING.md +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/INSTALL.rst +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/LICENSE +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/MANIFEST.in +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/README.rst +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/TODO.md +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/USAGE.rst +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/cloud/download-nda-data +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/cloud/downloadcmd-auther +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/cloud/gmscalc-HCPYA +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/cloud/list-rapidtide-relevant-images +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/cloud/mount-and-run +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/cloud/rapidtide-HCPYA +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/cloud/rapidtide-cloud-test +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/cloud/simple-cp-test +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/__init__.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/installtestdata +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/test_findmaxlag.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/test_io +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/test_mlregressallt.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/test_rapidtidecompare +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testatlasaverage +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testboth +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testcifti +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testcomplex +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testdecomp +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testfileorfloat +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testfingerprint +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testfmridocker +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testfrozen +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testfuncs +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testinitdelay +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testlinfit +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testlocalflow +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testmodels +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testnewrefine +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testnoiseamp +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testoscorr +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testpad +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testrefineonly +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testretro +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testretrolagtcs +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/examples/src/testsimdata +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/models/model_cnn_w064_l13_fn20_fl08/loss.png +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/models/model_cnn_w064_l13_fn20_fl08/loss.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/models/model_cnn_w064_l13_fn20_fl08/model.keras +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/models/model_cnn_w064_l13_fn20_fl08/model_meta.json +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/models/model_revised_tf2/model.keras +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/models/model_revised_tf2/model_meta.json +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/models/model_serdar2_tf2/model.keras +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/models/model_serdar2_tf2/model_meta.json +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/models/model_serdar_tf2/model.keras +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/models/model_serdar_tf2/model_meta.json +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/ASPECTS_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/ASPECTS_2mm_mask.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/ASPECTS_3mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/ASPECTS_3mm_mask.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/ASPECTS_regions.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/ATTbasedFlowTerritories_split_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/ATTbasedFlowTerritories_split_2mm_mask.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/ATTbasedFlowTerritories_split_regions.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200_binmask_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200_lag_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200_mask_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200_negmask_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200_sigma_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200_strength_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200v2_MTT_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200v2_binmask_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200v2_csf_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200v2_gray_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200v2_graylaghist.json +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200v2_graylaghist.tsv.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200v2_laghist.json +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200v2_laghist.tsv.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200v2_mask_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200v2_maxcorr_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200v2_maxtime_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200v2_maxwidth_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200v2_negmask_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200v2_timepercentile_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200v2_white_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200v2_whitelaghist.json +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/HCP1200v2_whitelaghist.tsv.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1-seg2.xml +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1-seg2_regions.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1-seg2_space-MNI152NLin6Asym_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1.xml +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_regions.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_space-MNI152NLin2009cAsym_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_space-MNI152NLin2009cAsym_2mm_mask.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_space-MNI152NLin6Asym_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_space-MNI152NLin6Asym_2mm_mask.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL2.xml +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL2_regions.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL2_space-MNI152NLin6Asym_2mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL2_space-MNI152NLin6Asym_2mm_mask.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/MNI152_T1_1mm_Brain_FAST_seg.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/MNI152_T1_1mm_Brain_Mask.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/MNI152_T1_2mm_Brain_FAST_seg.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/MNI152_T1_2mm_Brain_Mask.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/MNI152_T1_3mm.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/MNI152_T1_3mm_brain_mask.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/data/reference/slicetimes/HCP-YA_slicetimes.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/__init__.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/adjustoffset.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/aligntcs.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/applydlfilter.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/atlasaverage.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/atlastool.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/calcicc.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/calctexticc.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/calcttest.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/ccorrica.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/delayvar.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/diffrois.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/endtidalproc.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/fdica.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/filtnifti.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/filttc.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/fingerprint.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/fixtr.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/gmscalc.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/happy.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/happy2std.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/happywarp.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/histnifti.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/histtc.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/linfitfilt.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/localflow.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/mergequality.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/pairproc.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/pairwisemergenifti.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/physiofreq.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/pixelcomp.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/plethquality.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/polyfitim.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/proj2flow.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/rankimage.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/rapidtide.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/rapidtide2std.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/resamplenifti.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/resampletc.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/retrolagtcs.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/retroregress.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/roisummarize.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/runqualitycheck.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/showarbcorr.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/showhist.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/showstxcorr.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/showtc.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/showxcorrx.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/showxy.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/simdata.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/spatialdecomp.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/spatialfit.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/spatialmi.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/spectrogram.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/synthASL.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/tcfrom2col.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/tcfrom3col.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/temporaldecomp.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/testhrv.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/threeD.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/tidepool.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/scripts/variabilityizer.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/.coveragerc +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/__init__.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/cleanposttest +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/matplotlibrc +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/resethappytargets +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/resetrapidtidetargets +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/resettargets +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/runlocaltest +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/showdirectories +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/showkernels +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_aliasedcorrelate.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_aligntcs.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_calcicc.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_congrid.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_correlate.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_corrpass.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_delayestimation.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_doresample.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_externaltools.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_fastresampler.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_filter.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_fullrunhappy_v5.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_fullrunrapidtide_v1.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_fullrunrapidtide_v2.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_fullrunrapidtide_v3.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_fullrunrapidtide_v4.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_fullrunrapidtide_v5.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_fullrunrapidtide_v6.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_fullrunrapidtide_v8.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_io.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_linfitfiltpass.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_mi.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_miscmath.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_motionregress.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_nullcorr.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_padvec.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_parserfuncs.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_phaseanalysis.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_rapidtideparser.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_runmisc.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_sharedmem.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_simulate.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_timeshift.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_valtoindex.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/test_zRapidtideDataset.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/100206_REST1_LR_cardfromfmri_25.0Hz.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/100206_REST1_LR_cardfromfmri_dlfiltered_25.0Hz.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/100206_REST1_LR_info.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/100206_REST1_LR_normcardfromfmri_25.0Hz.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/100206_REST1_LR_normcardfromfmri_dlfiltered_25.0Hz.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/100206_REST1_LR_normpleth_25.0Hz.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/100206_REST1_LR_pleth_25.0Hz.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/100206_REST1_LR_pleth_dlfiltered_25.0Hz.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/fmri_globalmean.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/happy_phase1target_vesselmask.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/happy_phase2output_vesselmask.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/happy_target_vesselmask.nii.gz +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/lforegressor.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/lt_rt.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/phasetest.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/rapidtide2x_phase1target_reference_fmrires.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/stcorrtest_Rvalue.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/stcorrtest_delay.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/stcorrtest_mask.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/stcorrtest_pearson.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/stcorrtest_pvalue.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/testdata/testfilt.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/tmp/.placeholder.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tests/usercustomize.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tidepoolTemplate.ui +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tidepoolTemplate_alt.ui +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tidepoolTemplate_alt_qt6.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tidepoolTemplate_big.ui +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tidepoolTemplate_big_qt6.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/tidepoolTemplate_qt6.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide/workflows/__init__.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide.egg-info/dependency_links.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/rapidtide.egg-info/top_level.txt +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/setup.cfg +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/setup.py +0 -0
- {rapidtide-3.0.11 → rapidtide-3.1.1}/versioneer.py +0 -0
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Release history
|
|
2
2
|
|
|
3
|
+
## Version 3.1.1 (11/17/25)
|
|
4
|
+
* (rapidtide, retroregress) Correctly output relevant maps when doing CVR processing. Closes https://github.com/bbfrederick/rapidtide/issues/226. Thank you to https://github.com/beccaclements99 for finding this!
|
|
5
|
+
* (rapiditde) Fixed a crashing bug when using PCA to estimate the initial sLFO regressor.
|
|
6
|
+
* (happy) Made tensorflow an optional install because of more tf weirdness. If tensorflow is not present, default to using the pytorch deep learning filter. If tensorflow is present, enable the ``--usetensorflow`` option.
|
|
7
|
+
* (package) Added support for python 3.14 (if you use 3.14, you cannot currently install tensorflow, so happy will use the pytorch deep learning filter).
|
|
8
|
+
* (package) Lots of type hint refinements.
|
|
9
|
+
* (package) Fixed lots of typos and minor bugs.
|
|
10
|
+
|
|
11
|
+
## Version 3.1 (11/8/25)
|
|
12
|
+
* (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.
|
|
13
|
+
* (happy) Added "pulsatility" map output - the percentage pulsatile cardiac variation around the mean in each voxel.
|
|
14
|
+
* (happy) Made pass labelling consistent for output files.
|
|
15
|
+
* (happy) Switched nifti file output to use maplist (jsons have description fields now).
|
|
16
|
+
* (rapidtide) Output some timecourse statistics before and after sLFO regression.
|
|
17
|
+
* (atlasaverage) Fixed label output when extracting data from 3D files.
|
|
18
|
+
* (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).
|
|
19
|
+
* (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!).
|
|
20
|
+
* (package) Added support for python 3.13 (now that tensorflow is FINALLY available for 3.13).
|
|
21
|
+
* (package) Dropped support for python 3.9 (it doesn't support modern type hint formats).
|
|
22
|
+
* (package) More dependabot PRs.
|
|
23
|
+
|
|
3
24
|
## Version 3.0.11 (8/27/25)
|
|
4
25
|
* (Docker) Fixed a critical bug in building the container.
|
|
5
26
|
* (happy) Added the ability to specify an overall processing mask.
|
|
@@ -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
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rapidtide
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.1.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,32 +16,34 @@ 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
|
|
23
|
-
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Requires-Python: >=3.10
|
|
24
24
|
Description-Content-Type: text/x-rst
|
|
25
25
|
License-File: LICENSE
|
|
26
26
|
Requires-Dist: numpy
|
|
27
|
-
Requires-Dist: scipy
|
|
27
|
+
Requires-Dist: scipy
|
|
28
28
|
Requires-Dist: pandas
|
|
29
29
|
Requires-Dist: pyarrow
|
|
30
30
|
Requires-Dist: scikit-image
|
|
31
31
|
Requires-Dist: scikit-learn
|
|
32
32
|
Requires-Dist: nibabel
|
|
33
33
|
Requires-Dist: nilearn
|
|
34
|
-
Requires-Dist: matplotlib
|
|
35
|
-
Requires-Dist: pyqtgraph
|
|
34
|
+
Requires-Dist: matplotlib
|
|
35
|
+
Requires-Dist: pyqtgraph
|
|
36
36
|
Requires-Dist: pyqt6-sip
|
|
37
37
|
Requires-Dist: pyqt6
|
|
38
38
|
Requires-Dist: requests
|
|
39
39
|
Requires-Dist: statsmodels
|
|
40
40
|
Requires-Dist: pywavelets
|
|
41
|
-
Requires-Dist:
|
|
42
|
-
Requires-Dist: tf-keras>=2.18.0
|
|
41
|
+
Requires-Dist: torch
|
|
43
42
|
Requires-Dist: tqdm
|
|
44
43
|
Requires-Dist: versioneer
|
|
44
|
+
Provides-Extra: tf
|
|
45
|
+
Requires-Dist: tensorflow>=2.18.0; extra == "tf"
|
|
46
|
+
Requires-Dist: tf-keras>=2.18.0; extra == "tf"
|
|
45
47
|
Provides-Extra: test
|
|
46
48
|
Requires-Dist: codecov; extra == "test"
|
|
47
49
|
Requires-Dist: coverage; extra == "test"
|
|
@@ -14,30 +14,29 @@ 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
|
-
requires-python = '>=3.
|
|
22
|
+
requires-python = '>=3.10'
|
|
23
23
|
dependencies = [
|
|
24
24
|
'numpy',
|
|
25
|
-
'scipy
|
|
25
|
+
'scipy',
|
|
26
26
|
'pandas',
|
|
27
27
|
'pyarrow',
|
|
28
28
|
'scikit-image',
|
|
29
29
|
'scikit-learn',
|
|
30
30
|
'nibabel',
|
|
31
31
|
'nilearn',
|
|
32
|
-
'matplotlib
|
|
33
|
-
'pyqtgraph
|
|
32
|
+
'matplotlib',
|
|
33
|
+
'pyqtgraph',
|
|
34
34
|
'pyqt6-sip',
|
|
35
35
|
'pyqt6',
|
|
36
36
|
'requests',
|
|
37
37
|
'statsmodels',
|
|
38
38
|
'pywavelets',
|
|
39
|
-
'
|
|
40
|
-
'tf-keras >= 2.18.0',
|
|
39
|
+
'torch',
|
|
41
40
|
'tqdm',
|
|
42
41
|
'versioneer',
|
|
43
42
|
]
|
|
@@ -59,6 +58,10 @@ authors = [
|
|
|
59
58
|
'Changelog' = 'https://github.com/bbfrederick/rapidtide/blob/main/CHANGELOG.md'
|
|
60
59
|
|
|
61
60
|
[project.optional-dependencies]
|
|
61
|
+
tf = [
|
|
62
|
+
'tensorflow >= 2.18.0',
|
|
63
|
+
'tf-keras >= 2.18.0',
|
|
64
|
+
]
|
|
62
65
|
test = [
|
|
63
66
|
'codecov',
|
|
64
67
|
'coverage',
|
|
@@ -82,6 +85,7 @@ doc = [
|
|
|
82
85
|
adjustoffset = 'rapidtide.scripts.adjustoffset:entrypoint'
|
|
83
86
|
aligntcs = 'rapidtide.scripts.aligntcs:entrypoint'
|
|
84
87
|
applydlfilter = 'rapidtide.scripts.applydlfilter:entrypoint'
|
|
88
|
+
applyppgproc = 'rapidtide.scripts.applyppgproc:entrypoint'
|
|
85
89
|
atlasaverage = 'rapidtide.scripts.atlasaverage:entrypoint'
|
|
86
90
|
atlastool = 'rapidtide.scripts.atlastool:entrypoint'
|
|
87
91
|
calcicc = 'rapidtide.scripts.calcicc:entrypoint'
|
|
@@ -165,7 +169,7 @@ all = ['rapidtide[doc,test]']
|
|
|
165
169
|
|
|
166
170
|
[tool.black]
|
|
167
171
|
line-length = 99
|
|
168
|
-
target-version = ['
|
|
172
|
+
target-version = ['py310']
|
|
169
173
|
include = '\.pyi?$'
|
|
170
174
|
exclude = '''
|
|
171
175
|
(
|