rapidtide 3.0.5__py3-none-any.whl → 3.0.6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. rapidtide/_version.py +3 -3
  2. rapidtide/calccoherence.py +51 -73
  3. rapidtide/calcnullsimfunc.py +65 -111
  4. rapidtide/calcsimfunc.py +73 -91
  5. rapidtide/data/examples/src/testatlasaverage +22 -0
  6. rapidtide/data/examples/src/testfmri +1 -1
  7. rapidtide/data/examples/src/testhappy +7 -6
  8. rapidtide/genericmultiproc.py +122 -0
  9. rapidtide/happy_supportfuncs.py +10 -1
  10. rapidtide/linfitfiltpass.py +8 -1
  11. rapidtide/makelaggedtcs.py +49 -78
  12. rapidtide/multiproc.py +5 -17
  13. rapidtide/refineregressor.py +59 -81
  14. rapidtide/tests/.coveragerc +9 -0
  15. rapidtide/tests/test_externaltools.py +69 -0
  16. rapidtide/tests/test_fastresampler.py +1 -0
  17. rapidtide/tests/test_fullrunrapidtide_v2.py +1 -0
  18. rapidtide/tests/test_nullcorr.py +2 -5
  19. rapidtide/tests/test_parserfuncs.py +46 -15
  20. rapidtide/tests/test_zRapidtideDataset.py +2 -2
  21. rapidtide/workflows/ccorrica.py +1 -2
  22. rapidtide/workflows/happy.py +3 -1
  23. rapidtide/workflows/rapidtide.py +3 -9
  24. rapidtide/workflows/rapidtide_parser.py +1 -1
  25. rapidtide/workflows/regressfrommaps.py +0 -2
  26. rapidtide/workflows/showxcorrx.py +4 -8
  27. {rapidtide-3.0.5.dist-info → rapidtide-3.0.6.dist-info}/METADATA +1 -1
  28. {rapidtide-3.0.5.dist-info → rapidtide-3.0.6.dist-info}/RECORD +32 -33
  29. {rapidtide-3.0.5.dist-info → rapidtide-3.0.6.dist-info}/WHEEL +1 -1
  30. rapidtide/DerivativeDelay.py +0 -209
  31. rapidtide/calcandfitcorrpairs.py +0 -262
  32. rapidtide/transformerdlfilter.py +0 -126
  33. {rapidtide-3.0.5.dist-info → rapidtide-3.0.6.dist-info}/entry_points.txt +0 -0
  34. {rapidtide-3.0.5.dist-info → rapidtide-3.0.6.dist-info}/licenses/LICENSE +0 -0
  35. {rapidtide-3.0.5.dist-info → rapidtide-3.0.6.dist-info}/top_level.txt +0 -0
@@ -16,11 +16,27 @@
16
16
  # limitations under the License.
17
17
  #
18
18
  #
19
- import os
20
19
  import argparse
20
+ import os
21
+
22
+ import rapidtide.io as tide_io
21
23
  import rapidtide.workflows.parser_funcs as pf
22
24
  from rapidtide.tests.utils import get_examples_path, get_test_temp_path
23
25
 
26
+
27
+ def proccolspec(thecolspec):
28
+ if thecolspec is not None:
29
+ # see if this is a numeric or text list
30
+ tokenlist = (thecolspec.split(",")[0]).split("-")
31
+ try:
32
+ firstelement = int(tokenlist[0])
33
+ return tide_io.colspectolist(thecolspec)
34
+ except ValueError:
35
+ return thecolspec.split(",")
36
+ else:
37
+ return [None]
38
+
39
+
24
40
  def _get_parser():
25
41
  """
26
42
  Argument parser for adjust offset
@@ -41,7 +57,7 @@ def _get_parser():
41
57
  return parser
42
58
 
43
59
 
44
- def test_parserfuncs(debug=False, local=False, displayplots=False):
60
+ def test_parserfuncs(debug=False, local=False):
45
61
  # set input and output directories
46
62
  if local:
47
63
  exampleroot = "../data/examples/src"
@@ -50,21 +66,36 @@ def test_parserfuncs(debug=False, local=False, displayplots=False):
50
66
  exampleroot = get_examples_path()
51
67
  testtemproot = get_test_temp_path()
52
68
 
53
-
54
69
  theparser = _get_parser()
55
70
 
56
- filename = os.path.join(exampleroot,"sub-RAPIDTIDETEST_desc-oversampledmovingregressor_timeseries.json")
57
- retval = pf.is_valid_file(theparser, filename)
58
- print(filename, retval)
59
-
60
- #filename = os.path.join(exampleroot,"sub-RAPIDTIDETEST_desc-oversampledmovingregressor_timeseriesxyz.json")
61
- #retval = pf.is_valid_file(theparser, filename)
62
- #print(filename, retval)
63
-
64
- filename = os.path.join(exampleroot,"sub-RAPIDTIDETEST_desc-oversampledmovingregressor_timeseries.json:acolname")
65
- retval = pf.is_valid_file(theparser, filename)
66
- print(filename, retval)
71
+ testvecs = [
72
+ ["sub-RAPIDTIDETEST_desc-oversampledmovingregressor_timeseries.json", [None]],
73
+ [
74
+ "sub-RAPIDTIDETEST_desc-oversampledmovingregressor_timeseries.json:acolname",
75
+ ["acolname"],
76
+ ],
77
+ [
78
+ "sub-RAPIDTIDETEST_desc-oversampledmovingregressor_timeseries.json:acolname,bcolname",
79
+ ["acolname", "bcolname"],
80
+ ],
81
+ [
82
+ "sub-RAPIDTIDETEST_desc-oversampledmovingregressor_timeseries.tsv.gz:1,2,5-10",
83
+ [1, 2, 5, 6, 7, 8, 9, 10],
84
+ ],
85
+ [
86
+ "sub-RAPIDTIDETEST_desc-oversampledmovingregressor_timeseries.json:3,2,7,5-10,6-11",
87
+ [2, 3, 5, 6, 7, 8, 9, 10, 11],
88
+ ],
89
+ ]
90
+ for infile, expectedcols in testvecs:
91
+ filename = os.path.join(exampleroot, infile)
92
+ retval = pf.is_valid_file(theparser, filename)
93
+ thename, thecolspec = tide_io.parsefilespec(retval)
94
+ collist = proccolspec(thecolspec)
95
+ if debug:
96
+ print(filename, retval, thename, thecolspec, collist)
97
+ assert collist == expectedcols
67
98
 
68
99
 
69
100
  if __name__ == "__main__":
70
- test_parserfuncs(debug=True, local=True, displayplots=True)
101
+ test_parserfuncs(debug=True, local=True)
@@ -26,7 +26,7 @@ from rapidtide.RapidtideDataset import RapidtideDataset
26
26
  from rapidtide.tests.utils import get_examples_path, get_test_temp_path
27
27
 
28
28
 
29
- def main(runninglocally=False):
29
+ def main(runninglocally=False, debug=False):
30
30
  # initialize default values
31
31
  if runninglocally:
32
32
  datafileroot = "../data/examples/dst/sub-RAPIDTIDETEST_"
@@ -74,4 +74,4 @@ def main(runninglocally=False):
74
74
 
75
75
 
76
76
  if __name__ == "__main__":
77
- main(runninglocally=True)
77
+ main(runninglocally=True, debug=True)
@@ -156,8 +156,7 @@ def ccorrica(args):
156
156
  else:
157
157
  Fs = args.samplerate
158
158
  else:
159
- if args.samplerate != "auto":
160
- Fs = args.samplerate
159
+ Fs = samplerate
161
160
 
162
161
  sampletime = 1.0 / Fs
163
162
  thedims = tcdata.shape
@@ -314,6 +314,8 @@ def happy_main(argparsingfunc):
314
314
  validprojvoxels,
315
315
  time,
316
316
  timings,
317
+ LGR=None,
318
+ nprocs=args.nprocs,
317
319
  showprogressbar=args.showprogressbar,
318
320
  )
319
321
  normdata_byslice = normdata.reshape((xsize * ysize, numslices, timepoints))
@@ -1357,7 +1359,7 @@ def happy_main(argparsingfunc):
1357
1359
  )
1358
1360
 
1359
1361
  if not args.verbose:
1360
- print("Phase projecting...")
1362
+ print("Setting up for phase projection...")
1361
1363
 
1362
1364
  # make a lowpass filter for the projected data. Limit frequency to 3 cycles per 2pi (1/6th Fs)
1363
1365
  phaseFs = 1.0 / phasestep
@@ -16,7 +16,6 @@
16
16
  # limitations under the License.
17
17
  #
18
18
  #
19
- import copy
20
19
  import gc
21
20
  import logging
22
21
  import os
@@ -28,8 +27,7 @@ from pathlib import Path
28
27
  import numpy as np
29
28
  from scipy import ndimage
30
29
  from scipy.stats import rankdata
31
- from sklearn.decomposition import PCA
32
- from tqdm import tqdm
30
+
33
31
 
34
32
  import rapidtide.calccoherence as tide_calccoherence
35
33
  import rapidtide.calcnullsimfunc as tide_nullsimfunc
@@ -55,7 +53,6 @@ import rapidtide.voxelData as tide_voxelData
55
53
  import rapidtide.wiener as tide_wiener
56
54
  import rapidtide.workflows.cleanregressor as tide_cleanregressor
57
55
  import rapidtide.workflows.regressfrommaps as tide_regressfrommaps
58
- from rapidtide.tests.utils import mse
59
56
 
60
57
  from .utils import setup_logger
61
58
 
@@ -1731,18 +1728,17 @@ def rapidtide_main(argparsingfunc):
1731
1728
  else:
1732
1729
  theSimFunc = theCorrelator
1733
1730
  tide_util.disablemkl(optiondict["nprocs_getNullDist"], debug=threaddebug)
1734
- simdistdata = tide_nullsimfunc.getNullDistributionDatax(
1735
- cleaned_resampref_y,
1731
+ simdistdata = tide_nullsimfunc.getNullDistributionData(
1736
1732
  oversampfreq,
1737
1733
  theSimFunc,
1738
1734
  theFitter,
1735
+ LGR,
1739
1736
  numestreps=optiondict["numestreps"],
1740
1737
  nprocs=optiondict["nprocs_getNullDist"],
1741
1738
  alwaysmultiproc=optiondict["alwaysmultiproc"],
1742
1739
  showprogressbar=optiondict["showprogressbar"],
1743
1740
  chunksize=optiondict["mp_chunksize"],
1744
1741
  permutationmethod=optiondict["permutationmethod"],
1745
- fixdelay=optiondict["fixdelay"],
1746
1742
  rt_floatset=np.float64,
1747
1743
  rt_floattype="float64",
1748
1744
  )
@@ -2572,8 +2568,6 @@ def rapidtide_main(argparsingfunc):
2572
2568
  chunksize=optiondict["mp_chunksize"],
2573
2569
  nprocs=1,
2574
2570
  alwaysmultiproc=optiondict["alwaysmultiproc"],
2575
- rt_floatset=rt_floatset,
2576
- rt_floattype=rt_floattype,
2577
2571
  )
2578
2572
  tide_util.enablemkl(optiondict["mklthreads"], debug=threaddebug)
2579
2573
 
@@ -1810,7 +1810,7 @@ def process_args(inputargs=None):
1810
1810
  args["hardlimit"] = True
1811
1811
  # The fraction of the main peak over which points are included in the peak
1812
1812
  args["searchfrac"] = 0.5
1813
- args["mp_chunksize"] = 50000
1813
+ args["mp_chunksize"] = 500
1814
1814
  args["patchminsize"] = DEFAULT_PATCHMINSIZE
1815
1815
  args["patchfwhm"] = DEFAULT_PATCHFWHM
1816
1816
 
@@ -22,7 +22,6 @@ import numpy as np
22
22
  import rapidtide.io as tide_io
23
23
  import rapidtide.linfitfiltpass as tide_linfitfiltpass
24
24
  import rapidtide.makelaggedtcs as tide_makelagged
25
- import rapidtide.util as tide_util
26
25
 
27
26
 
28
27
  def regressfrommaps(
@@ -133,7 +132,6 @@ def regressfrommaps(
133
132
  if TimingLGR is not None:
134
133
  TimingLGR.info("Start filtering operation")
135
134
 
136
-
137
135
  voxelsprocessed_regressionfilt = tide_linfitfiltpass.linfitfiltpass(
138
136
  numvalidspatiallocs,
139
137
  fmri_data_valid,
@@ -684,17 +684,15 @@ def showxcorrx(args):
684
684
  if args.numestreps > 0:
685
685
  # generate a list of correlations from shuffled data
686
686
  print("calculating null crosscorrelations")
687
- corrlist = tide_nullsimfunc.getNullDistributionDatax(
688
- filtereddata2,
687
+ corrlist = tide_nullsimfunc.getNullDistributionData(
689
688
  args.samplerate,
690
689
  theCorrelator,
691
690
  thexsimfuncfitter,
691
+ None,
692
692
  numestreps=args.numestreps,
693
- despeckle_thresh=1000.0,
694
693
  showprogressbar=args.showprogressbar,
695
694
  permutationmethod=args.permutationmethod,
696
695
  nprocs=args.nprocs,
697
- fixdelay=False,
698
696
  )
699
697
 
700
698
  # calculate percentiles for the crosscorrelation from the distribution data
@@ -717,17 +715,15 @@ def showxcorrx(args):
717
715
  )
718
716
 
719
717
  print("calculating null Pearson correlations")
720
- corrlist_pear = tide_nullsimfunc.getNullDistributionDatax(
721
- filtereddata2,
718
+ corrlist_pear = tide_nullsimfunc.getNullDistributionData(
722
719
  args.samplerate,
723
720
  theCorrelator,
724
721
  thexsimfuncfitter,
722
+ None,
725
723
  numestreps=args.numestreps,
726
- despeckle_thresh=1000.0,
727
724
  showprogressbar=args.showprogressbar,
728
725
  permutationmethod=args.permutationmethod,
729
726
  nprocs=args.nprocs,
730
- fixdelay=True,
731
727
  )
732
728
 
733
729
  # calculate significance for the pearson correlation
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rapidtide
3
- Version: 3.0.5
3
+ Version: 3.0.6
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>
@@ -7,35 +7,34 @@ cloud/rapidtide-HCPYA,sha256=kqW8ENbOQhvVqZGz-HqiVbrbzHy4cfyy1rk8ejpJor0,963
7
7
  cloud/rapidtide-cloud-test,sha256=SATOwGo4QYLvt-6hE0e3wyK9JjuDU5XzfLrfMoybvcY,466
8
8
  cloud/simple-cp-test,sha256=5ef8wmLfcKdny59BV6_DnAPj7O_mi0rOHdFZVN2iiLA,421
9
9
  rapidtide/Colortables.py,sha256=OVtgnQ9xTJPgfdyK1ktESHRjBh09cxLVPZvgUvV5jOo,5814
10
- rapidtide/DerivativeDelay.py,sha256=B3ElHcaAvxH3qB0n6l4rIX5FXsRHp_PE_H3ky-5XdoQ,7107
11
10
  rapidtide/OrthoImageItem.py,sha256=w70QNZUelMI7wTWYaqOfkJEb38PdsxgSf0NLdyjlcNs,21669
12
11
  rapidtide/RapidtideDataset.py,sha256=sccBQf8T9zvOMSHHXG7pwEm-sUyzbyZ4i0rFuWMwj3A,52343
13
12
  rapidtide/RegressorRefiner.py,sha256=dPG9Vy2nlqxv2Mx9vrYtgYTsNGcVIwWknawDrNdpZxQ,17232
14
13
  rapidtide/__init__.py,sha256=cECnPfGNIWXETiummGLjKcNXLROSDiFlLp-RpZSavwc,97
15
- rapidtide/_version.py,sha256=3OU9TRfkXZJGKZEHjxydZN1ypyAIfk88M2iVvYOHK_0,497
16
- rapidtide/calcandfitcorrpairs.py,sha256=dlKxjKSlgCF9AF_dRoPeIGc9dz1DIluYfKLQzTSQsd0,7397
17
- rapidtide/calccoherence.py,sha256=VayovUVA5X-eWmjJG0GNxI_Giw7vRjTDFvWcV6NVfq0,4512
18
- rapidtide/calcnullsimfunc.py,sha256=92q7Yw8VeSjA9UfcD-hHN9MgoaUcoKuR9VGBmt_n45M,7150
19
- rapidtide/calcsimfunc.py,sha256=1HQUaIGLhk1-CnWPMeOjbWoiVJrcSLTxgpwF2VhS3Sg,5310
14
+ rapidtide/_version.py,sha256=UtEXJd46WP8m98PcqQx8gq-8JqTDu8wCnRQgnaX1heQ,497
15
+ rapidtide/calccoherence.py,sha256=-_vglu0MZB85Aodw6GpYhBApFBt5eslppfxF4rXM6Xg,3409
16
+ rapidtide/calcnullsimfunc.py,sha256=34osvoQ_tWk3VeFk7g3TYsmpPVRMIkEX31KYvx5Ox_A,5032
17
+ rapidtide/calcsimfunc.py,sha256=xCPYns-XOnLWjwujbP7a7EwGEzhEwOHMf04RpFlL3SI,4713
20
18
  rapidtide/correlate.py,sha256=za2lqbYZZGpIHoMC8VOrLH8cP8B3pG2Mh8VFaZf-4aE,36800
21
19
  rapidtide/dlfilter.py,sha256=sJ1UoekNFlGVJOIeN6BKP_-pU-MOHD5Gc4GT7FTB2So,58161
22
20
  rapidtide/externaltools.py,sha256=-p2GZRRpI2_7eRY8N6lnG4DBQKoRd_WZZQzvgFCicUY,3965
23
21
  rapidtide/fMRIData_class.py,sha256=qVPp8xUw98cUJm4zsO5UUXrgBWz-UhJhwHLrzjBNxow,5102
24
22
  rapidtide/filter.py,sha256=GySR0UdlrfNzWs9HOdvsIGlfHKThT9KdamNk0Y0JHeU,71647
25
23
  rapidtide/fit.py,sha256=whveHKtqC-cPWxclCf86-5iBAtXOdXL2G1yg082q6R8,67955
26
- rapidtide/happy_supportfuncs.py,sha256=NlcZdD7wXQ65xYaB_t035PeSBC-FxbTy6x4B272q5x0,41968
24
+ rapidtide/genericmultiproc.py,sha256=ZQwN84HpC7ZA_w4qekBqA4suU_70ryqGjAsTAIa4oSw,3423
25
+ rapidtide/happy_supportfuncs.py,sha256=TfznBv_t4cp5-YZ7ClKyjhAA3ZuMPOL6XMYLzWAcljE,42023
27
26
  rapidtide/helper_classes.py,sha256=2m2zcFUgE12JhYL0HQJEafJ1pFa0Zsb46Lpi9iw3Qbg,51470
28
27
  rapidtide/io.py,sha256=A3qFJdFFf1XSVlqPvoOF733OoxrRcbRO-gSEoh_95bE,75037
29
- rapidtide/linfitfiltpass.py,sha256=fR8vQQrH8yfXyaMNNsELA7xCv_Ro7qpZSXX_PbIFtx0,16142
30
- rapidtide/makelaggedtcs.py,sha256=XC0-tTKfcV4qQeoOlF3PiAdbvMuDZetrifsmWc0wQTw,3998
28
+ rapidtide/linfitfiltpass.py,sha256=ps7IGbKcpO33kLW0gK2O0OBddDs3PoC-0zhs9gWAe9M,16303
29
+ rapidtide/makelaggedtcs.py,sha256=KZ63G6rjfeDO17Fpfla37rRPusd3JfavP60LESUKK0Y,2827
31
30
  rapidtide/maskutil.py,sha256=IBEgxmHvQ2fnBoTeFu7vw_w3uf91NxpW3IgTDirhWH0,10890
32
31
  rapidtide/miscmath.py,sha256=bEmqnBl6xL2ZRXbId7onXqiEayZJW-jWVCEIp0bfw3o,13918
33
- rapidtide/multiproc.py,sha256=9nkcTqlgFVFqS9V32YSO3C8fmEtTTd__tSLW1J6UENU,6068
32
+ rapidtide/multiproc.py,sha256=K5IO0mr-T4rZbL4j7Zp7vFTv-6icavh-dgITZmzP8Ds,5817
34
33
  rapidtide/patchmatch.py,sha256=VxXine2b_fI0oMJWuhXUzfHhZH_-BdqyvW2Ft2n-Vu0,20643
35
34
  rapidtide/peakeval.py,sha256=ZDcuAT4Bw9bTU1oJTvOn9t_rWEZOsXHC5PiNnDdFlX0,5198
36
35
  rapidtide/qualitycheck.py,sha256=exTRCQDf9OsNbmlemr-5YPjDGDg3uSTyc8amidXUZqU,11917
37
36
  rapidtide/refinedelay.py,sha256=abOji4e2k7DpQR7jxgGh6nJ2IE4ZxQp5S5DNKfLZwP8,16323
38
- rapidtide/refineregressor.py,sha256=4EgQF8en1EB0kGGtWW2go_Ek-MTG1icGicf82R6vAPo,22950
37
+ rapidtide/refineregressor.py,sha256=w9RP2SDjC769FmUq_CQ5ZUtr5-7kfzhvlzlBvKs8cXg,21831
39
38
  rapidtide/resample.py,sha256=0IX6Ais7Fxuz9HfrSpNGkKF7w3xKWm_fTs6yA7X43hk,30592
40
39
  rapidtide/simfuncfit.py,sha256=QfBJxkn4lzNX4HIx2CbvWUV55C2WZmfwwm69RqNtlSE,11837
41
40
  rapidtide/stats.py,sha256=vA79EazdcpQHJJFC0tjKBc37Ij_KfSeKcSPOjuWCHuM,29230
@@ -48,7 +47,6 @@ rapidtide/tidepoolTemplate_big.py,sha256=60RdSehVFi2V38G_8ByhGILfCGf4g6lSnKV42Hd
48
47
  rapidtide/tidepoolTemplate_big.ui,sha256=lJYAJHJA8iJYJTlnq5GllkW-VMRrpLhDL4kskwU14Xw,65552
49
48
  rapidtide/tidepoolTemplate_big_qt6.py,sha256=yXmFpoO5exhbXHtjKVE7AG-oi7tB6QOCFW5RRO0z6Ls,67499
50
49
  rapidtide/tidepoolTemplate_qt6.py,sha256=qBgufkyHsmEZ_HPgAu8LLbztlwlyfm6KcRfJ9qVFbXc,48198
51
- rapidtide/transformerdlfilter.py,sha256=pd9F7qd9mBNeK7QlrIXPkaDIlmThDBSAnDB340nRybI,4549
52
50
  rapidtide/util.py,sha256=2Q991FzjiSgn5qHErVgAV7bya3ylNDdhctE-3X7ImH4,36487
53
51
  rapidtide/voxelData.py,sha256=f-LXAPPSRvwJ9nFOZncayLMfS7XuIjFNW7TWoWWS96U,13328
54
52
  rapidtide/wiener.py,sha256=UcRBIJZY5RYgpKFwlvppXDsXRIX_MJgPB37S9nvC4lU,4128
@@ -59,7 +57,7 @@ rapidtide/data/examples/src/test_io,sha256=tDhxo2Gtzq5rED84hDg3JzmbGm8FGJQ05tA2y
59
57
  rapidtide/data/examples/src/test_mlregressallt.py,sha256=dDSoovevThiwvVb9YyME8WCBFLgObec5nWNYJRNhVmQ,2016
60
58
  rapidtide/data/examples/src/test_rapidtidecompare,sha256=I9bpbKxCd9vtHjFBn-PrawctFvfeBBH3_xMJ3Ohbv0k,217
61
59
  rapidtide/data/examples/src/testalign,sha256=GgLe7BORaUiDd16lRIlv7frn8xO1zBf75Md_Ii1n4Is,1565
62
- rapidtide/data/examples/src/testatlasaverage,sha256=ZmFNX1ENSMSD-H-h56-ZFw-VafNUUoUpBZKKzM1ZOes,974
60
+ rapidtide/data/examples/src/testatlasaverage,sha256=vAK_YvjG1Kp72AZOjJnTGDb1G6D_sgyrI89T0GBBpyQ,1562
63
61
  rapidtide/data/examples/src/testboth,sha256=ITAqA3XOC9duFRoBtZgGL9pLnh7Po43i8qjUImSq_eo,455
64
62
  rapidtide/data/examples/src/testcifti,sha256=Nw4UMzkh1oFdW4FuAznuOR9hAr2KJuPF86gZnqqJylU,265
65
63
  rapidtide/data/examples/src/testcomplex,sha256=PFY_d30eqYBx5K8cPP_WxsP2YPlYuawo8u1hDhYT-_U,2271
@@ -67,12 +65,12 @@ rapidtide/data/examples/src/testdecomp,sha256=xxxr510aOBjtpJy4aQNAFTyEFZD6QdHp6-
67
65
  rapidtide/data/examples/src/testdelayvar,sha256=tMn1k8IfvBL7MKhgGC6EGcSkChtXWKp1bENOGG4SagI,330
68
66
  rapidtide/data/examples/src/testfileorfloat,sha256=9r4mz7pBV_8iFZya9kmtfbnTRS3-94Cx9Q63Ni3mkZs,815
69
67
  rapidtide/data/examples/src/testfingerprint,sha256=RlAIC1lMDWMGzZKxY24DJRuaUEL0BenSFBey0gL5dqU,402
70
- rapidtide/data/examples/src/testfmri,sha256=s-zTyUQhG6LnRdI9xOg92QaA0pckuu1hU3WMkOfK51A,474
68
+ rapidtide/data/examples/src/testfmri,sha256=gCzWnn2hpwicA814FitZ7GjV-uwt20PtJsUCkn0_08w,473
71
69
  rapidtide/data/examples/src/testfmridocker,sha256=jjL7bK29rrcog6uO9BtvcyAU3Sv8_5cbw2nqKoiZ95o,1193
72
70
  rapidtide/data/examples/src/testfrozen,sha256=K3qUWDRKPPiCXRgIFuPdwUUjUTzf4QBW8UUhR75NzDM,283
73
71
  rapidtide/data/examples/src/testfuncs,sha256=zjq9u7mXMf0UlbUgePyS1mj7QHclicmw6NY0g31SqeY,1551
74
72
  rapidtide/data/examples/src/testglmfilt,sha256=MuZlVBJIV7FrTWFLKGuWBcpR9WiZEjCGeD6cAnJLeNI,3357
75
- rapidtide/data/examples/src/testhappy,sha256=6qSO4MiQOC8TPsCI__zUZpBfy5ZoZOQgu3LcYj68eig,1944
73
+ rapidtide/data/examples/src/testhappy,sha256=wXhKDIlAB2kusIBwzaTmPaMuPV2cJk-vlQ3sLVW7-n8,1967
76
74
  rapidtide/data/examples/src/testinitdelay,sha256=ts_r5WZBLJDQ3UfPmJ9sfXlO0arO9dhGCQ_Y1wYvjMk,559
77
75
  rapidtide/data/examples/src/testlinfit,sha256=oPnkHJ6lcwsuJhnSMMK7Gx3DHSCf6JK7CIYuIMHbyNA,471
78
76
  rapidtide/data/examples/src/testlocalflow,sha256=hEwstisbWVuALr_29fBJ2nHETKkEF_9qK8wJ4kzuiJk,596
@@ -208,7 +206,7 @@ rapidtide/scripts/testhrv.py,sha256=-DSVILgiGdMy5XYyRwrRav__Yui3Y_SsViFWmc8A1DY,
208
206
  rapidtide/scripts/threeD.py,sha256=WzYo8SZ2bjiIs-vtNxPBc8aaIzW1NuP-Ab7Ppu8MM3g,7558
209
207
  rapidtide/scripts/tidepool.py,sha256=luBTs1wBHMtjFjGVlE55VRmwoRSFv0h-g0f9pUJCE7c,887
210
208
  rapidtide/scripts/variabilityizer.py,sha256=hcXl1vGk9TrUg9SM0GwH4E4NhTekvK3zVS0KDgx5-qw,901
211
- rapidtide/tests/.coveragerc,sha256=Vxvd-Hm-mJ925eYGq6F58bKnlHejuUDyNrVVg0jJ-6s,448
209
+ rapidtide/tests/.coveragerc,sha256=r4vYVGn0lcVWKw_QrdMWLp9b1fT6Op19wF-yGYJDHAE,698
212
210
  rapidtide/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
213
211
  rapidtide/tests/cleanposttest,sha256=VK_WiEMUSyQ2aIm4xnje5zmArZytp-L70Q5M2bXpNeM,648
214
212
  rapidtide/tests/matplotlibrc,sha256=I3-tgWriYYV3-ldCMuuvS7ejDVQ_jYNHTBkg5FQsc7k,1778
@@ -227,7 +225,8 @@ rapidtide/tests/test_correlate.py,sha256=SKqLbj0MDQ7wZ1N70j6x07_i-Jok9ySPdJMt8lJ
227
225
  rapidtide/tests/test_corrpass.py,sha256=zoZ5odTxlZ3d_tEvSXOU0qyhbIzCdauoRy4MUkHehHc,7836
228
226
  rapidtide/tests/test_delayestimation.py,sha256=CGt-z1mRjKralIeXWqGOCP_8LHS9a0LfhSuRHgwAN-A,13506
229
227
  rapidtide/tests/test_doresample.py,sha256=9vwiMo8WutmOKW5LfeMRLG3FAzZNa_1sra-k-36Fn-w,2716
230
- rapidtide/tests/test_fastresampler.py,sha256=dQxcv3TTm62uYxwK2AJ3oNerww3W-CYf8WWYYt_MD4s,3861
228
+ rapidtide/tests/test_externaltools.py,sha256=oaD9KQ1Db9fhev9g9OfUecoZLKeGHnmQV4-OGrk3rko,2121
229
+ rapidtide/tests/test_fastresampler.py,sha256=x9jimD1aGYA48egjAUbjcCcxA7eXsAf2VPP3KbhBkvw,3884
231
230
  rapidtide/tests/test_filter.py,sha256=_xhk3rbYFtuKgrDdgrrrlITtmQhOUUi5EhFcnxVUioA,10891
232
231
  rapidtide/tests/test_findmaxlag.py,sha256=Ff81mZyx4mY78bVC_r-ZrvH6jinhVS64QjbivK7Mg50,11551
233
232
  rapidtide/tests/test_fullrunhappy_v1.py,sha256=oJ3uLI-WoKjKPlZi_5LdfB-iJc3Xk4JsOeiMliyXhB4,1708
@@ -236,7 +235,7 @@ rapidtide/tests/test_fullrunhappy_v3.py,sha256=Oy2UoFy4Tiye0fNuSsh9bF4PlclGHc6oG
236
235
  rapidtide/tests/test_fullrunhappy_v4.py,sha256=n3LylIDexTly06sk5TUnrQhfizkf98Mo4VEaw3uNkr4,1960
237
236
  rapidtide/tests/test_fullrunhappy_v5.py,sha256=BK240KjaJs9mHFgTmsDjCW3miBd4dDTn6qZxAYD3HTA,1896
238
237
  rapidtide/tests/test_fullrunrapidtide_v1.py,sha256=XhMjNG0EIyzGnGaI6Q_imSkjFDyScx1y-bwAWBlzC2w,3095
239
- rapidtide/tests/test_fullrunrapidtide_v2.py,sha256=KOuKoY5-Ryry7rlpIp-OzmCW2rYqGMIDa6JYqt57Tjk,3138
238
+ rapidtide/tests/test_fullrunrapidtide_v2.py,sha256=srjNJOetoxuhSwYKb7RfejHa0jzPgXP_vtcb0RYe0Dc,3164
240
239
  rapidtide/tests/test_fullrunrapidtide_v3.py,sha256=i9RZCJ7ZieYnH0eIC38FuyN_uV9stDwuPuUoSVKJzXo,2889
241
240
  rapidtide/tests/test_fullrunrapidtide_v4.py,sha256=DTEom1FPHn21WZZveiCCf4L_NabR9BMzLNoAA8RuDv0,2118
242
241
  rapidtide/tests/test_fullrunrapidtide_v5.py,sha256=NzTYGXaWsJzd7uIIgom_NPwl3EmGCRxlylaUEVN3gxU,1779
@@ -248,9 +247,9 @@ rapidtide/tests/test_linfitfiltpass.py,sha256=Q_XbDujj4tGc3X_I37IJJBDsvAs0m-S_oU
248
247
  rapidtide/tests/test_mi.py,sha256=Yia_TE1VxQfT0cZFdwsw6pb2l5E3PmY89zhKSfKus3g,2272
249
248
  rapidtide/tests/test_miscmath.py,sha256=Kng7InnANKQeWPlY0ZwdIQnYT79U6sNH1w63pCx1aeE,3096
250
249
  rapidtide/tests/test_motionregress.py,sha256=HS8Ph4-5owWp8oK6bwdy1FelJxDA0FE045JUnitth-4,5588
251
- rapidtide/tests/test_nullcorr.py,sha256=cs39wIW8anDQMg13EtTQf_5kr7yT9SSSSve9_7QWm34,6446
250
+ rapidtide/tests/test_nullcorr.py,sha256=Wkg5B_3ifOKs5PLPFYCNLf3W8Qh4etBguDbZ1XYhC44,6330
252
251
  rapidtide/tests/test_padvec.py,sha256=41Pnm5zJkWeOXbM0dngS7mRkGwJ4es4O5aiEQ8YJ3rs,6728
253
- rapidtide/tests/test_parserfuncs.py,sha256=moebtQVwiQ_g0XMmaiAY-wnO9rcSEby6V66PBrM42NY,2203
252
+ rapidtide/tests/test_parserfuncs.py,sha256=zKY8rwsKRydfNqy-oceCQeL-41ezpG2lyluNQ0RMz-M,3087
254
253
  rapidtide/tests/test_phaseanalysis.py,sha256=6d9nuSsVLjHW1br2BXvJxVQMjFcbuUuYGNjt3t7-odk,2150
255
254
  rapidtide/tests/test_rapidtideparser.py,sha256=Dmf_48Kgw9UW2L5pr8bVT1j5rBx__veAdiaAmYpIYCQ,5555
256
255
  rapidtide/tests/test_refinedelay.py,sha256=PNDbnmyRvogCZGiq08MtCsPWWJtLB9zzLXk0fvjmYm8,8473
@@ -260,7 +259,7 @@ rapidtide/tests/test_simulate.py,sha256=9zLY3PxmLgXdQcDHX5B0INyhhB_KOjwpBZkIEDVc
260
259
  rapidtide/tests/test_stcorrelate.py,sha256=ExYA58MDvJt3qGZAbEHSg-aMKtIKAX_zTacxiA0mttE,2493
261
260
  rapidtide/tests/test_timeshift.py,sha256=J4aLZI0ZvnB-vJZEAqwrcsarGRfKkKSY7IToyuhlqcg,3045
262
261
  rapidtide/tests/test_valtoindex.py,sha256=z-_m8d4Zo5pMeH2-vOhFM62hD4M7zcNx8rMrFA78fTI,1179
263
- rapidtide/tests/test_zRapidtideDataset.py,sha256=kR0ILh_F7lmcBLaPYxLvjOyzUrUnwZF3iLyezLbgCsI,2230
262
+ rapidtide/tests/test_zRapidtideDataset.py,sha256=ld9YQzgXyco8Nvx_ZTa9ow_xNLXIm_f2AMBQrQ5Ryf4,2255
264
263
  rapidtide/tests/usercustomize.py,sha256=iP8Vh35CixAbBD5He7gjQwmqYGItRGoNS_OD4sdDEe8,159
265
264
  rapidtide/tests/utils.py,sha256=qs3GlHZjfMXLgtdXfA-nIIoyWAKbpvTwxB_ZcyTvYnA,3254
266
265
  rapidtide/tests/testdata/100206_REST1_LR_cardfromfmri_25.0Hz.txt,sha256=w_ocCt0muJse-VZvqzPIBiveBo0Rp2sjoSP04Am0vgM,423304
@@ -293,7 +292,7 @@ rapidtide/workflows/applydlfilter.py,sha256=9dkVYitWSupZWWA1xNtLMf4-BgIwOjYLqDpO
293
292
  rapidtide/workflows/atlasaverage.py,sha256=6j5cNWk613R98LFmBAfVDJh6TuTo8Uxa-VW7nn0uNOA,17478
294
293
  rapidtide/workflows/atlastool.py,sha256=6aMMtr6knETNTyW-laThMeiO8mcdd71F8MSsdYHMeIM,16076
295
294
  rapidtide/workflows/calctexticc.py,sha256=9nGGAiqiD2MPg7UiIGR2V7rdtx-jcXQ_Q7uTXCziraQ,10486
296
- rapidtide/workflows/ccorrica.py,sha256=CX-WAkOXRx1y_RoIjavr9BeE5m2q1o7EntKoTAMRC-s,10504
295
+ rapidtide/workflows/ccorrica.py,sha256=ZGuBoM4u860Q7WxbNp-yxTxBaHLNozL7Kbx3o3rvaFk,10457
297
296
  rapidtide/workflows/cleanregressor.py,sha256=O9YgBfgNYKgSBY5ZNs2M7W7q5tBC4yMJZ0a3gavrnbo,10261
298
297
  rapidtide/workflows/delayestimation.py,sha256=cC7d69JXn6vnumSfs9f7gNJuaKqQSzXEoxAi7Td-miM,17647
299
298
  rapidtide/workflows/delayvar.py,sha256=s4hOTtj3-jXGirLOlIFId-3QFzvQXJtMRifvcXLlDFQ,40697
@@ -304,7 +303,7 @@ rapidtide/workflows/filtnifti.py,sha256=LXQw8yY7xbVCYAWNO5wsJOYHkxOH5I4x_oRaaXsP
304
303
  rapidtide/workflows/filttc.py,sha256=QHMJ41ZORxB8fG4IcvxKUgSfmOL4X9cFQFpM5px1Uxw,4514
305
304
  rapidtide/workflows/fixtr.py,sha256=KYr3veeHDUjozH3IO-0iPhLqNDGEc2NcUvzn6tuxeN8,2025
306
305
  rapidtide/workflows/gmscalc.py,sha256=Z-3HV2EU-HuIhpr7s5u4EAPAaW0gXtj2aVZt7386Gr8,6258
307
- rapidtide/workflows/happy.py,sha256=5C4_E3fQsI6a2s8JnTPkx9OgNSSniua9ceCaZp-Z4Uk,75137
306
+ rapidtide/workflows/happy.py,sha256=8Y2IsfGVjIGbYLPAnL9Qdh8Kd8iLW-sGKi-rVdt9mBE,75198
308
307
  rapidtide/workflows/happy2std.py,sha256=6gya9YjfPzPMu15jsMUbu7pLq430-n3b3meiTWhRkAo,8132
309
308
  rapidtide/workflows/happy_parser.py,sha256=JXXJRas-fooU_KeZfqJ1l9NbmHYsola8NFb3gSQl9ew,26292
310
309
  rapidtide/workflows/histnifti.py,sha256=BeABj0osc0mEnmyKonN0Hgeis8L8soO-w-cVaeMKLUI,11197
@@ -323,10 +322,10 @@ rapidtide/workflows/plethquality.py,sha256=kTO74C5aSBmomzt59zs1VeiO_C5SPTxvyZZ0v
323
322
  rapidtide/workflows/polyfitim.py,sha256=bVKBrrFa0WjWZju4Lkrr8_9mFWALqCxkpCX28540GQA,10184
324
323
  rapidtide/workflows/proj2flow.py,sha256=SbkYTRZ_SViVfiM0QJjo20RrICtbsQpEd2i9o9XDgPU,7290
325
324
  rapidtide/workflows/rankimage.py,sha256=9opJb3OikO69wtN8zgF3XJxgoHy1-erzZiDKs8pDM6U,3482
326
- rapidtide/workflows/rapidtide.py,sha256=KdSgXM6PFA7ZScSlW3oqV7iD7XNViqul1dSP8V_SWNw,153985
325
+ rapidtide/workflows/rapidtide.py,sha256=mVjIEE3TQbI5PyDwzWsgz_7vEd35zFXu5ywR6y_c1HE,153734
327
326
  rapidtide/workflows/rapidtide2std.py,sha256=coxEnRAof6NNpeXjjECPazx5Wotf4l1SJCnaVEvmHQY,10483
328
- rapidtide/workflows/rapidtide_parser.py,sha256=iBJ1H2VFCqQznRxvMyhDnQEfa9higvZBfUjzqFX0x4M,78244
329
- rapidtide/workflows/regressfrommaps.py,sha256=2qkD6e3wJ7Wo4M3xsQBHGOlzoZkz6IJv8vT92kv5RZE,5355
327
+ rapidtide/workflows/rapidtide_parser.py,sha256=8mL7Mcw6oRRxbZNomHlUCgnqN6-Iz9GBz8QQujtYwJg,78242
328
+ rapidtide/workflows/regressfrommaps.py,sha256=GTpqnOkyA1A3Ki0oZ0ugSJrjrYa2gbtIGeKPpF49IxU,5319
330
329
  rapidtide/workflows/resamplenifti.py,sha256=GJE7f8bzMRY3QYiMYZOD8bDnga4ah97sp-ZL3yaaIFA,4717
331
330
  rapidtide/workflows/resampletc.py,sha256=B4YIKn3qpDaM9dIhYjGwPl-2LtaEhm9fnMBzfBgAUSs,3959
332
331
  rapidtide/workflows/retrolagtcs.py,sha256=ep1Ve1GS9NqqE6Pw9kxeWyw78sEg-M1IV-KuSnivd7Y,10847
@@ -337,7 +336,7 @@ rapidtide/workflows/showarbcorr.py,sha256=mJpF2wSaMNw_jPZv4ru4x9x-rIOTDAABYZw7ZY
337
336
  rapidtide/workflows/showhist.py,sha256=qP6JOdw4SyuzIcY6OUOkM4zmqLSWvEA8Z9LerqyzFmI,3644
338
337
  rapidtide/workflows/showstxcorr.py,sha256=FulltRbjGaBBIIRF9Wc_4oU2bpmMjfc3tZus5TygOlI,17788
339
338
  rapidtide/workflows/showtc.py,sha256=mddcdbpRzLXIiTqnutVqQapa9fudAeK3uALBVgM-dDE,18835
340
- rapidtide/workflows/showxcorrx.py,sha256=pPGIUqF7cVuPmq8aaZ-OSup6akeKQC85fJPqUEyG31w,31370
339
+ rapidtide/workflows/showxcorrx.py,sha256=6QF2w7T5xxIOgaHIJHKlMWkxb9MBPA56eZk-spW0S-c,31221
341
340
  rapidtide/workflows/showxy.py,sha256=p-1pkE5cKVd2zMQ-kSI3-Xk21jHSLiQPa-ql1DIO-vc,10532
342
341
  rapidtide/workflows/simdata.py,sha256=YahDPmVM-lOV1qgpbfkq6QwrS2Pa99IRlfMglNXDQ1I,13827
343
342
  rapidtide/workflows/spatialfit.py,sha256=2p_f7nqYKauLTvwmhyfn7FiJ1BMzFsRxHfCQe2ULoXk,9136
@@ -349,9 +348,9 @@ rapidtide/workflows/tcfrom3col.py,sha256=kV3V-qZ7A7LkD96aHVXabvohA8udsflHXnzsQIw
349
348
  rapidtide/workflows/tidepool.py,sha256=Cac0zhS2ZT6myY_H2A0dAIox8ZoFyf42iB3flSb0qbw,86612
350
349
  rapidtide/workflows/utils.py,sha256=urIN-042oUCRDusVUSjBelVN3Te2JP3svY3ckq-yBMU,5379
351
350
  rapidtide/workflows/variabilityizer.py,sha256=h7Hhrxn84MclRfbAvKIZJoNzlcKO-8d9lZ6y6YFStk8,3167
352
- rapidtide-3.0.5.dist-info/licenses/LICENSE,sha256=psuoW8kuDP96RQsdhzwOqi6fyWv0ct8CR6Jr7He_P_k,10173
353
- rapidtide-3.0.5.dist-info/METADATA,sha256=T7MB_JdlZs48d-PfR-Xrtv5rOEE_BPrsnRBE-Y_Fhdw,15688
354
- rapidtide-3.0.5.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
355
- rapidtide-3.0.5.dist-info/entry_points.txt,sha256=9NVvZpIx9U6lTWlTFF2ev-wuPAHJxcXI_901_EcGRYA,3323
356
- rapidtide-3.0.5.dist-info/top_level.txt,sha256=MnNXGfbrIBc9RnAqzBHOWd3GQO-aIUDnRTz4_5VjH5g,16
357
- rapidtide-3.0.5.dist-info/RECORD,,
351
+ rapidtide-3.0.6.dist-info/licenses/LICENSE,sha256=psuoW8kuDP96RQsdhzwOqi6fyWv0ct8CR6Jr7He_P_k,10173
352
+ rapidtide-3.0.6.dist-info/METADATA,sha256=2BoMip86LO1pwQ9sRwr1nBx9_EfgCXwzZMJf6yufC_w,15688
353
+ rapidtide-3.0.6.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
354
+ rapidtide-3.0.6.dist-info/entry_points.txt,sha256=9NVvZpIx9U6lTWlTFF2ev-wuPAHJxcXI_901_EcGRYA,3323
355
+ rapidtide-3.0.6.dist-info/top_level.txt,sha256=MnNXGfbrIBc9RnAqzBHOWd3GQO-aIUDnRTz4_5VjH5g,16
356
+ rapidtide-3.0.6.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.3.1)
2
+ Generator: setuptools (80.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5