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