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.
Files changed (438) hide show
  1. {rapidtide-3.0.10 → rapidtide-3.1}/CHANGELOG.md +22 -0
  2. rapidtide-3.1/CLAUDE.md +191 -0
  3. {rapidtide-3.0.10 → rapidtide-3.1}/INSTALL.rst +11 -10
  4. {rapidtide-3.0.10/rapidtide.egg-info → rapidtide-3.1}/PKG-INFO +10 -9
  5. {rapidtide-3.0.10 → rapidtide-3.1}/pyproject.toml +6 -4
  6. rapidtide-3.1/rapidtide/Colortables.py +677 -0
  7. rapidtide-3.1/rapidtide/OrthoImageItem.py +1626 -0
  8. rapidtide-3.1/rapidtide/RapidtideDataset.py +2858 -0
  9. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/_version.py +3 -3
  10. rapidtide-3.1/rapidtide/calccoherence.py +313 -0
  11. rapidtide-3.1/rapidtide/calcnullsimfunc.py +328 -0
  12. rapidtide-3.1/rapidtide/calcsimfunc.py +379 -0
  13. rapidtide-3.1/rapidtide/correlate.py +2080 -0
  14. rapidtide-3.1/rapidtide/data/examples/src/testLD +56 -0
  15. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testalign +1 -1
  16. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testdelayvar +0 -1
  17. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testfmri +19 -1
  18. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testglmfilt +5 -5
  19. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testhappy +30 -1
  20. rapidtide-3.1/rapidtide/data/examples/src/testppgproc +17 -0
  21. rapidtide-3.1/rapidtide/data/examples/src/testrolloff +11 -0
  22. rapidtide-3.1/rapidtide/data/models/model_cnn_pytorch/best_model.pth +0 -0
  23. rapidtide-3.1/rapidtide/data/models/model_cnn_pytorch/loss.png +0 -0
  24. rapidtide-3.1/rapidtide/data/models/model_cnn_pytorch/loss.txt +1 -0
  25. rapidtide-3.1/rapidtide/data/models/model_cnn_pytorch/model.pth +0 -0
  26. rapidtide-3.1/rapidtide/data/models/model_cnn_pytorch/model_meta.json +68 -0
  27. rapidtide-3.1/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_space-MNI152NLin2009cAsym_2mm.nii.gz +0 -0
  28. rapidtide-3.1/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_space-MNI152NLin2009cAsym_2mm_mask.nii.gz +0 -0
  29. rapidtide-3.1/rapidtide/decorators.py +91 -0
  30. rapidtide-3.1/rapidtide/dlfilter.py +3764 -0
  31. rapidtide-3.1/rapidtide/dlfiltertorch.py +4843 -0
  32. rapidtide-3.1/rapidtide/externaltools.py +442 -0
  33. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/fMRIData_class.py +79 -40
  34. rapidtide-3.1/rapidtide/filter.py +3384 -0
  35. rapidtide-3.1/rapidtide/fit.py +4080 -0
  36. rapidtide-3.1/rapidtide/genericmultiproc.py +197 -0
  37. rapidtide-3.1/rapidtide/happy_supportfuncs.py +3556 -0
  38. rapidtide-3.1/rapidtide/helper_classes.py +871 -0
  39. rapidtide-3.1/rapidtide/io.py +4412 -0
  40. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/linfitfiltpass.py +341 -75
  41. rapidtide-3.1/rapidtide/makelaggedtcs.py +314 -0
  42. rapidtide-3.1/rapidtide/maskutil.py +694 -0
  43. rapidtide-3.1/rapidtide/miscmath.py +1300 -0
  44. rapidtide-3.1/rapidtide/multiproc.py +382 -0
  45. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/patchmatch.py +234 -33
  46. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/peakeval.py +32 -30
  47. rapidtide-3.1/rapidtide/ppgproc.py +2203 -0
  48. rapidtide-3.1/rapidtide/qualitycheck.py +695 -0
  49. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/refinedelay.py +422 -57
  50. rapidtide-3.1/rapidtide/refineregressor.py +948 -0
  51. rapidtide-3.1/rapidtide/resample.py +1384 -0
  52. rapidtide-3.1/rapidtide/scripts/applyppgproc.py +28 -0
  53. rapidtide-3.1/rapidtide/simFuncClasses.py +2113 -0
  54. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/simfuncfit.py +260 -46
  55. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/stats.py +540 -238
  56. rapidtide-3.1/rapidtide/tests/happycomp +9 -0
  57. rapidtide-3.1/rapidtide/tests/test_dlfiltertorch.py +627 -0
  58. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_findmaxlag.py +24 -8
  59. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunhappy_v1.py +0 -2
  60. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunhappy_v2.py +0 -2
  61. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunhappy_v3.py +1 -0
  62. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunhappy_v4.py +2 -2
  63. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunrapidtide_v7.py +1 -1
  64. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_simroundtrip.py +8 -8
  65. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/utils.py +9 -8
  66. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tidepoolTemplate.py +142 -38
  67. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tidepoolTemplate_alt.py +165 -44
  68. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tidepoolTemplate_big.py +189 -52
  69. rapidtide-3.1/rapidtide/util.py +2220 -0
  70. rapidtide-3.1/rapidtide/voxelData.py +1048 -0
  71. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/wiener.py +19 -12
  72. rapidtide-3.1/rapidtide/wiener2.py +227 -0
  73. rapidtide-3.1/rapidtide/wiener_doc.py +255 -0
  74. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/adjustoffset.py +105 -3
  75. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/aligntcs.py +85 -2
  76. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/applydlfilter.py +87 -10
  77. rapidtide-3.1/rapidtide/workflows/applyppgproc.py +522 -0
  78. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/atlasaverage.py +210 -47
  79. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/atlastool.py +100 -3
  80. rapidtide-3.1/rapidtide/workflows/calcSimFuncMap.py +501 -0
  81. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/calctexticc.py +201 -9
  82. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/ccorrica.py +97 -4
  83. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/cleanregressor.py +168 -29
  84. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/delayvar.py +163 -10
  85. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/diffrois.py +81 -3
  86. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/endtidalproc.py +144 -4
  87. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/fdica.py +195 -15
  88. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/filtnifti.py +70 -3
  89. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/filttc.py +74 -3
  90. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/fitSimFuncMap.py +206 -48
  91. rapidtide-3.1/rapidtide/workflows/fixtr.py +134 -0
  92. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/gmscalc.py +113 -3
  93. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/happy.py +813 -201
  94. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/happy2std.py +144 -12
  95. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/happy_parser.py +149 -8
  96. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/histnifti.py +118 -2
  97. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/histtc.py +84 -3
  98. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/linfitfilt.py +117 -4
  99. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/localflow.py +328 -28
  100. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/mergequality.py +79 -3
  101. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/niftidecomp.py +322 -18
  102. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/niftistats.py +174 -4
  103. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/pairproc.py +88 -2
  104. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/pairwisemergenifti.py +85 -2
  105. rapidtide-3.1/rapidtide/workflows/parser_funcs.py +2307 -0
  106. rapidtide-3.1/rapidtide/workflows/physiofreq.py +304 -0
  107. rapidtide-3.1/rapidtide/workflows/pixelcomp.py +416 -0
  108. rapidtide-3.1/rapidtide/workflows/plethquality.py +213 -0
  109. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/polyfitim.py +151 -11
  110. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/proj2flow.py +75 -2
  111. rapidtide-3.1/rapidtide/workflows/rankimage.py +217 -0
  112. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/rapidtide.py +272 -15
  113. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/rapidtide2std.py +98 -2
  114. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/rapidtide_parser.py +109 -9
  115. rapidtide-3.1/rapidtide/workflows/refineDelayMap.py +248 -0
  116. rapidtide-3.1/rapidtide/workflows/refineRegressor.py +1225 -0
  117. rapidtide-3.1/rapidtide/workflows/regressfrommaps.py +305 -0
  118. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/resamplenifti.py +85 -3
  119. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/resampletc.py +91 -3
  120. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/retrolagtcs.py +98 -6
  121. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/retroregress.py +165 -9
  122. rapidtide-3.1/rapidtide/workflows/roisummarize.py +367 -0
  123. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/runqualitycheck.py +71 -3
  124. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/showarbcorr.py +147 -4
  125. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/showhist.py +86 -2
  126. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/showstxcorr.py +160 -3
  127. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/showtc.py +159 -3
  128. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/showxcorrx.py +184 -4
  129. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/showxy.py +185 -15
  130. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/simdata.py +262 -36
  131. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/spatialfit.py +77 -2
  132. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/spatialmi.py +251 -27
  133. rapidtide-3.1/rapidtide/workflows/spectrogram.py +490 -0
  134. rapidtide-3.1/rapidtide/workflows/synthASL.py +316 -0
  135. rapidtide-3.1/rapidtide/workflows/tcfrom2col.py +134 -0
  136. rapidtide-3.1/rapidtide/workflows/tcfrom3col.py +132 -0
  137. rapidtide-3.1/rapidtide/workflows/tidepool.py +5361 -0
  138. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/utils.py +19 -14
  139. rapidtide-3.1/rapidtide/workflows/utils_doc.py +293 -0
  140. rapidtide-3.1/rapidtide/workflows/variabilityizer.py +200 -0
  141. {rapidtide-3.0.10 → rapidtide-3.1/rapidtide.egg-info}/PKG-INFO +10 -9
  142. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide.egg-info/SOURCES.txt +20 -0
  143. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide.egg-info/entry_points.txt +1 -0
  144. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide.egg-info/requires.txt +2 -1
  145. rapidtide-3.0.10/rapidtide/Colortables.py +0 -212
  146. rapidtide-3.0.10/rapidtide/OrthoImageItem.py +0 -620
  147. rapidtide-3.0.10/rapidtide/RapidtideDataset.py +0 -1411
  148. rapidtide-3.0.10/rapidtide/calccoherence.py +0 -146
  149. rapidtide-3.0.10/rapidtide/calcnullsimfunc.py +0 -177
  150. rapidtide-3.0.10/rapidtide/calcsimfunc.py +0 -176
  151. rapidtide-3.0.10/rapidtide/correlate.py +0 -1263
  152. rapidtide-3.0.10/rapidtide/dlfilter.py +0 -1647
  153. rapidtide-3.0.10/rapidtide/externaltools.py +0 -127
  154. rapidtide-3.0.10/rapidtide/filter.py +0 -2295
  155. rapidtide-3.0.10/rapidtide/fit.py +0 -2650
  156. rapidtide-3.0.10/rapidtide/genericmultiproc.py +0 -122
  157. rapidtide-3.0.10/rapidtide/happy_supportfuncs.py +0 -1683
  158. rapidtide-3.0.10/rapidtide/helper_classes.py +0 -330
  159. rapidtide-3.0.10/rapidtide/io.py +0 -2419
  160. rapidtide-3.0.10/rapidtide/makelaggedtcs.py +0 -123
  161. rapidtide-3.0.10/rapidtide/maskutil.py +0 -324
  162. rapidtide-3.0.10/rapidtide/miscmath.py +0 -594
  163. rapidtide-3.0.10/rapidtide/multiproc.py +0 -194
  164. rapidtide-3.0.10/rapidtide/qualitycheck.py +0 -382
  165. rapidtide-3.0.10/rapidtide/refineregressor.py +0 -634
  166. rapidtide-3.0.10/rapidtide/resample.py +0 -898
  167. rapidtide-3.0.10/rapidtide/simFuncClasses.py +0 -1138
  168. rapidtide-3.0.10/rapidtide/util.py +0 -1121
  169. rapidtide-3.0.10/rapidtide/voxelData.py +0 -401
  170. rapidtide-3.0.10/rapidtide/wiener2.py +0 -121
  171. rapidtide-3.0.10/rapidtide/workflows/calcSimFuncMap.py +0 -271
  172. rapidtide-3.0.10/rapidtide/workflows/fixtr.py +0 -64
  173. rapidtide-3.0.10/rapidtide/workflows/parser_funcs.py +0 -926
  174. rapidtide-3.0.10/rapidtide/workflows/physiofreq.py +0 -178
  175. rapidtide-3.0.10/rapidtide/workflows/pixelcomp.py +0 -213
  176. rapidtide-3.0.10/rapidtide/workflows/plethquality.py +0 -131
  177. rapidtide-3.0.10/rapidtide/workflows/rankimage.py +0 -110
  178. rapidtide-3.0.10/rapidtide/workflows/refineDelayMap.py +0 -138
  179. rapidtide-3.0.10/rapidtide/workflows/refineRegressor.py +0 -636
  180. rapidtide-3.0.10/rapidtide/workflows/regressfrommaps.py +0 -184
  181. rapidtide-3.0.10/rapidtide/workflows/roisummarize.py +0 -199
  182. rapidtide-3.0.10/rapidtide/workflows/spectrogram.py +0 -217
  183. rapidtide-3.0.10/rapidtide/workflows/synthASL.py +0 -165
  184. rapidtide-3.0.10/rapidtide/workflows/tcfrom2col.py +0 -60
  185. rapidtide-3.0.10/rapidtide/workflows/tcfrom3col.py +0 -60
  186. rapidtide-3.0.10/rapidtide/workflows/tidepool.py +0 -2522
  187. rapidtide-3.0.10/rapidtide/workflows/variabilityizer.py +0 -87
  188. {rapidtide-3.0.10 → rapidtide-3.1}/CODE_OF_CONDUCT.md +0 -0
  189. {rapidtide-3.0.10 → rapidtide-3.1}/CONTRIBUTING.md +0 -0
  190. {rapidtide-3.0.10 → rapidtide-3.1}/LICENSE +0 -0
  191. {rapidtide-3.0.10 → rapidtide-3.1}/MANIFEST.in +0 -0
  192. {rapidtide-3.0.10 → rapidtide-3.1}/README.rst +0 -0
  193. {rapidtide-3.0.10 → rapidtide-3.1}/TODO.md +0 -0
  194. {rapidtide-3.0.10 → rapidtide-3.1}/USAGE.rst +0 -0
  195. {rapidtide-3.0.10 → rapidtide-3.1}/cloud/download-nda-data +0 -0
  196. {rapidtide-3.0.10 → rapidtide-3.1}/cloud/downloadcmd-auther +0 -0
  197. {rapidtide-3.0.10 → rapidtide-3.1}/cloud/gmscalc-HCPYA +0 -0
  198. {rapidtide-3.0.10 → rapidtide-3.1}/cloud/list-rapidtide-relevant-images +0 -0
  199. {rapidtide-3.0.10 → rapidtide-3.1}/cloud/mount-and-run +0 -0
  200. {rapidtide-3.0.10 → rapidtide-3.1}/cloud/rapidtide-HCPYA +0 -0
  201. {rapidtide-3.0.10 → rapidtide-3.1}/cloud/rapidtide-cloud-test +0 -0
  202. {rapidtide-3.0.10 → rapidtide-3.1}/cloud/simple-cp-test +0 -0
  203. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/__init__.py +0 -0
  204. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/installtestdata +0 -0
  205. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/test_findmaxlag.py +0 -0
  206. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/test_io +0 -0
  207. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/test_mlregressallt.py +0 -0
  208. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/test_rapidtidecompare +0 -0
  209. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testatlasaverage +0 -0
  210. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testboth +0 -0
  211. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testcifti +0 -0
  212. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testcomplex +0 -0
  213. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testdecomp +0 -0
  214. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testfileorfloat +0 -0
  215. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testfingerprint +0 -0
  216. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testfmridocker +0 -0
  217. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testfrozen +0 -0
  218. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testfuncs +0 -0
  219. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testinitdelay +0 -0
  220. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testlinfit +0 -0
  221. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testlocalflow +0 -0
  222. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testmodels +0 -0
  223. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testnewrefine +0 -0
  224. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testnoiseamp +0 -0
  225. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testoscorr +0 -0
  226. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testpad +0 -0
  227. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testrefineonly +0 -0
  228. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testretro +0 -0
  229. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testretrolagtcs +0 -0
  230. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/examples/src/testsimdata +0 -0
  231. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_cnn_w064_l13_fn20_fl08/loss.png +0 -0
  232. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_cnn_w064_l13_fn20_fl08/loss.txt +0 -0
  233. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_cnn_w064_l13_fn20_fl08/model.keras +0 -0
  234. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_cnn_w064_l13_fn20_fl08/model_meta.json +0 -0
  235. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_revised_tf2/model.keras +0 -0
  236. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_revised_tf2/model_meta.json +0 -0
  237. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_serdar2_tf2/model.keras +0 -0
  238. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_serdar2_tf2/model_meta.json +0 -0
  239. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_serdar_tf2/model.keras +0 -0
  240. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/models/model_serdar_tf2/model_meta.json +0 -0
  241. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/ASPECTS_2mm.nii.gz +0 -0
  242. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/ASPECTS_2mm_mask.nii.gz +0 -0
  243. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/ASPECTS_3mm.nii.gz +0 -0
  244. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/ASPECTS_3mm_mask.nii.gz +0 -0
  245. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/ASPECTS_regions.txt +0 -0
  246. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/ATTbasedFlowTerritories_split_2mm.nii.gz +0 -0
  247. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/ATTbasedFlowTerritories_split_2mm_mask.nii.gz +0 -0
  248. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/ATTbasedFlowTerritories_split_regions.txt +0 -0
  249. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200_binmask_2mm.nii.gz +0 -0
  250. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200_lag_2mm.nii.gz +0 -0
  251. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200_mask_2mm.nii.gz +0 -0
  252. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200_negmask_2mm.nii.gz +0 -0
  253. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200_sigma_2mm.nii.gz +0 -0
  254. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200_strength_2mm.nii.gz +0 -0
  255. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_MTT_2mm.nii.gz +0 -0
  256. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_binmask_2mm.nii.gz +0 -0
  257. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_csf_2mm.nii.gz +0 -0
  258. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_gray_2mm.nii.gz +0 -0
  259. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_graylaghist.json +0 -0
  260. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_graylaghist.tsv.gz +0 -0
  261. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_laghist.json +0 -0
  262. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_laghist.tsv.gz +0 -0
  263. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_mask_2mm.nii.gz +0 -0
  264. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_maxcorr_2mm.nii.gz +0 -0
  265. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_maxtime_2mm.nii.gz +0 -0
  266. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_maxwidth_2mm.nii.gz +0 -0
  267. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_negmask_2mm.nii.gz +0 -0
  268. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_timepercentile_2mm.nii.gz +0 -0
  269. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_white_2mm.nii.gz +0 -0
  270. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_whitelaghist.json +0 -0
  271. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/HCP1200v2_whitelaghist.tsv.gz +0 -0
  272. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1-seg2.xml +0 -0
  273. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1-seg2_regions.txt +0 -0
  274. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1-seg2_space-MNI152NLin6Asym_2mm.nii.gz +0 -0
  275. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1.xml +0 -0
  276. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_regions.txt +0 -0
  277. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_space-MNI152NLin6Asym_2mm.nii.gz +0 -0
  278. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_space-MNI152NLin6Asym_2mm_mask.nii.gz +0 -0
  279. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL2.xml +0 -0
  280. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL2_regions.txt +0 -0
  281. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL2_space-MNI152NLin6Asym_2mm.nii.gz +0 -0
  282. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL2_space-MNI152NLin6Asym_2mm_mask.nii.gz +0 -0
  283. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/MNI152_T1_1mm_Brain_FAST_seg.nii.gz +0 -0
  284. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/MNI152_T1_1mm_Brain_Mask.nii.gz +0 -0
  285. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/MNI152_T1_2mm_Brain_FAST_seg.nii.gz +0 -0
  286. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/MNI152_T1_2mm_Brain_Mask.nii.gz +0 -0
  287. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/MNI152_T1_3mm.nii.gz +0 -0
  288. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/MNI152_T1_3mm_brain_mask.nii.gz +0 -0
  289. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/data/reference/slicetimes/HCP-YA_slicetimes.txt +0 -0
  290. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/__init__.py +0 -0
  291. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/adjustoffset.py +0 -0
  292. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/aligntcs.py +0 -0
  293. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/applydlfilter.py +0 -0
  294. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/atlasaverage.py +0 -0
  295. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/atlastool.py +0 -0
  296. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/calcicc.py +0 -0
  297. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/calctexticc.py +0 -0
  298. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/calcttest.py +0 -0
  299. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/ccorrica.py +0 -0
  300. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/delayvar.py +0 -0
  301. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/diffrois.py +0 -0
  302. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/endtidalproc.py +0 -0
  303. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/fdica.py +0 -0
  304. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/filtnifti.py +0 -0
  305. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/filttc.py +0 -0
  306. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/fingerprint.py +0 -0
  307. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/fixtr.py +0 -0
  308. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/gmscalc.py +0 -0
  309. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/happy.py +0 -0
  310. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/happy2std.py +0 -0
  311. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/happywarp.py +0 -0
  312. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/histnifti.py +0 -0
  313. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/histtc.py +0 -0
  314. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/linfitfilt.py +0 -0
  315. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/localflow.py +0 -0
  316. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/mergequality.py +0 -0
  317. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/pairproc.py +0 -0
  318. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/pairwisemergenifti.py +0 -0
  319. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/physiofreq.py +0 -0
  320. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/pixelcomp.py +0 -0
  321. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/plethquality.py +0 -0
  322. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/polyfitim.py +0 -0
  323. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/proj2flow.py +0 -0
  324. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/rankimage.py +0 -0
  325. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/rapidtide.py +0 -0
  326. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/rapidtide2std.py +0 -0
  327. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/resamplenifti.py +0 -0
  328. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/resampletc.py +0 -0
  329. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/retrolagtcs.py +0 -0
  330. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/retroregress.py +0 -0
  331. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/roisummarize.py +0 -0
  332. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/runqualitycheck.py +0 -0
  333. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/showarbcorr.py +0 -0
  334. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/showhist.py +0 -0
  335. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/showstxcorr.py +0 -0
  336. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/showtc.py +0 -0
  337. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/showxcorr_legacy.py +0 -0
  338. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/showxcorrx.py +0 -0
  339. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/showxy.py +0 -0
  340. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/simdata.py +0 -0
  341. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/spatialdecomp.py +0 -0
  342. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/spatialfit.py +0 -0
  343. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/spatialmi.py +0 -0
  344. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/spectrogram.py +0 -0
  345. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/stupidramtricks.py +0 -0
  346. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/synthASL.py +0 -0
  347. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/tcfrom2col.py +0 -0
  348. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/tcfrom3col.py +0 -0
  349. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/temporaldecomp.py +0 -0
  350. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/testhrv.py +0 -0
  351. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/threeD.py +0 -0
  352. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/tidepool.py +0 -0
  353. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/scripts/variabilityizer.py +0 -0
  354. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/.coveragerc +0 -0
  355. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/__init__.py +0 -0
  356. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/cleanposttest +0 -0
  357. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/matplotlibrc +0 -0
  358. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/resethappytargets +0 -0
  359. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/resetrapidtidetargets +0 -0
  360. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/resettargets +0 -0
  361. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/runlocaltest +0 -0
  362. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/showdirectories +0 -0
  363. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/showkernels +0 -0
  364. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_aliasedcorrelate.py +0 -0
  365. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_aligntcs.py +0 -0
  366. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_calcicc.py +0 -0
  367. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_cleanregressor.py +0 -0
  368. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_congrid.py +0 -0
  369. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_correlate.py +0 -0
  370. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_corrpass.py +0 -0
  371. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_delayestimation.py +0 -0
  372. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_doresample.py +0 -0
  373. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_externaltools.py +0 -0
  374. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fastresampler.py +0 -0
  375. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_filter.py +0 -0
  376. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunhappy_v5.py +0 -0
  377. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunrapidtide_v1.py +0 -0
  378. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunrapidtide_v2.py +0 -0
  379. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunrapidtide_v3.py +0 -0
  380. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunrapidtide_v4.py +0 -0
  381. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunrapidtide_v5.py +0 -0
  382. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunrapidtide_v6.py +0 -0
  383. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_fullrunrapidtide_v8.py +0 -0
  384. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_getparsers.py +0 -0
  385. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_io.py +0 -0
  386. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_linfitfiltpass.py +0 -0
  387. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_mi.py +0 -0
  388. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_miscmath.py +0 -0
  389. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_motionregress.py +0 -0
  390. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_nullcorr.py +0 -0
  391. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_padvec.py +0 -0
  392. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_parserfuncs.py +0 -0
  393. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_phaseanalysis.py +0 -0
  394. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_rapidtideparser.py +0 -0
  395. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_refinedelay.py +0 -0
  396. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_runmisc.py +0 -0
  397. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_sharedmem.py +0 -0
  398. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_simulate.py +0 -0
  399. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_stcorrelate.py +0 -0
  400. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_timeshift.py +0 -0
  401. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_valtoindex.py +0 -0
  402. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/test_zRapidtideDataset.py +0 -0
  403. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/100206_REST1_LR_cardfromfmri_25.0Hz.txt +0 -0
  404. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/100206_REST1_LR_cardfromfmri_dlfiltered_25.0Hz.txt +0 -0
  405. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/100206_REST1_LR_info.txt +0 -0
  406. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/100206_REST1_LR_normcardfromfmri_25.0Hz.txt +0 -0
  407. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/100206_REST1_LR_normcardfromfmri_dlfiltered_25.0Hz.txt +0 -0
  408. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/100206_REST1_LR_normpleth_25.0Hz.txt +0 -0
  409. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/100206_REST1_LR_pleth_25.0Hz.txt +0 -0
  410. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/100206_REST1_LR_pleth_dlfiltered_25.0Hz.txt +0 -0
  411. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/fmri_globalmean.txt +0 -0
  412. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/happy_phase1target_vesselmask.nii.gz +0 -0
  413. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/happy_phase2output_vesselmask.nii.gz +0 -0
  414. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/happy_target_vesselmask.nii.gz +0 -0
  415. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/lforegressor.txt +0 -0
  416. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/lt_rt.txt +0 -0
  417. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/phasetest.txt +0 -0
  418. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/rapidtide2x_phase1target_reference_fmrires.txt +0 -0
  419. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/stcorrtest_Rvalue.txt +0 -0
  420. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/stcorrtest_delay.txt +0 -0
  421. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/stcorrtest_mask.txt +0 -0
  422. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/stcorrtest_pearson.txt +0 -0
  423. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/stcorrtest_pvalue.txt +0 -0
  424. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/testdata/testfilt.txt +0 -0
  425. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/tmp/.placeholder.txt +0 -0
  426. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tests/usercustomize.py +0 -0
  427. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tidepoolTemplate.ui +0 -0
  428. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tidepoolTemplate_alt.ui +0 -0
  429. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tidepoolTemplate_alt_qt6.py +0 -0
  430. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tidepoolTemplate_big.ui +0 -0
  431. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tidepoolTemplate_big_qt6.py +0 -0
  432. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/tidepoolTemplate_qt6.py +0 -0
  433. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide/workflows/__init__.py +0 -0
  434. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide.egg-info/dependency_links.txt +0 -0
  435. {rapidtide-3.0.10 → rapidtide-3.1}/rapidtide.egg-info/top_level.txt +0 -0
  436. {rapidtide-3.0.10 → rapidtide-3.1}/setup.cfg +0 -0
  437. {rapidtide-3.0.10 → rapidtide-3.1}/setup.py +0 -0
  438. {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.
@@ -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 ``refresh``:
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. 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. Singularity
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
- singularity build /my_images/rapidtide.simg docker://fredericklab/rapidtide:latest-release
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 rapidtide2x analysis above, type the following:
204
+ For example, to run the simple rapidtide analysis above, type the following:
203
205
  ::
204
206
 
205
- singularity run \
206
- --cleanenv \
207
+ apptainer run \
207
208
  -B INPUTDIRECTORY:/data_in,OUTPUTDIRECTORY:/data_out \
208
- rapidtide.simg \
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.0.10
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: tests
46
- Requires-Dist: codecov; extra == "tests"
47
- Requires-Dist: coverage; extra == "tests"
48
- Requires-Dist: coveralls; extra == "tests"
49
- Requires-Dist: flake8-black; extra == "tests"
50
- Requires-Dist: pytest; extra == "tests"
51
- Requires-Dist: pytest-cov; extra == "tests"
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
- tests = [
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[docs,tests]']
166
+ all = ['rapidtide[doc,test]']
165
167
 
166
168
  [tool.black]
167
169
  line-length = 99
168
- target-version = ['py39']
170
+ target-version = ['py310']
169
171
  include = '\.pyi?$'
170
172
  exclude = '''
171
173
  (