Skip to content

Commit

Permalink
Fixed v2.9.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bbfrederick committed Sep 24, 2024
1 parent a3d6775 commit 6af76e6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Version 2.9.8.1 (9/24/24)
* (retrolagtcs) Now only use one mask (corrmask).
* (retrolagtcs) Now only load the fmri file header to save memory.

## Version 2.9.8 (9/24/24)
* (retrolagtcs) Made a new program to generate lagged timecourses from a lagmap, masks, and a lagtc generator (for fmripost_rapidtide).
Expand Down
2 changes: 0 additions & 2 deletions rapidtide/data/examples/src/testretrolagtcs
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@

retrolagtcs \
sub-RAPIDTIDETEST.nii.gz \
../dst/sub-RAPIDTIDETEST_0deriv_desc-processed_mask.nii.gz \
../dst/sub-RAPIDTIDETEST_0deriv_desc-corrfit_mask.nii.gz \
../dst/sub-RAPIDTIDETEST_0deriv_desc-maxtime_map.nii.gz \
../dst/sub-RAPIDTIDETEST_0deriv_desc-lagtcgenerator_timeseries \
../dst/retrolag_0deriv

retrolagtcs \
sub-RAPIDTIDETEST.nii.gz \
../dst/sub-RAPIDTIDETEST_1deriv_desc-processed_mask.nii.gz \
../dst/sub-RAPIDTIDETEST_1deriv_desc-corrfit_mask.nii.gz \
../dst/sub-RAPIDTIDETEST_1deriv_desc-maxtime_map.nii.gz \
../dst/sub-RAPIDTIDETEST_1deriv_desc-lagtcgenerator_timeseries \
Expand Down
2 changes: 1 addition & 1 deletion rapidtide/workflows/retrolagtcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def retrolagtcs(args):
rawsources = [
os.path.relpath(args.fmrifile, start=outputpath),
os.path.relpath(args.lagtimesfile, start=outputpath),
os.path.relpath(args.procmaskfile, start=outputpath),
os.path.relpath(args.maskfile, start=outputpath),
os.path.relpath(args.lagtcgeneratorfile, start=outputpath),
]

Expand Down

0 comments on commit 6af76e6

Please sign in to comment.