Skip to content

Commit

Permalink
fix: correct file name for ALFF + fALFF outputs via AFNI
Browse files Browse the repository at this point in the history
  • Loading branch information
synchon committed Jun 18, 2024
1 parent 3c280ca commit 6ef7d4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions junifer/markers/falff/_afni_falff.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def compute(
convert_alff_cmd = [
"3dAFNItoNIFTI",
f"-prefix {alff_afni_to_nifti_out_path.resolve()}",
f"{alff_falff_out_path_prefix}_ALFF+tlrc.BRIK",
f"{alff_falff_out_path_prefix}_ALFF+orig.BRIK",
]
# Call 3dAFNItoNIFTI
run_ext_cmd(name="3dAFNItoNIFTI", cmd=convert_alff_cmd)
Expand All @@ -136,7 +136,7 @@ def compute(
convert_falff_cmd = [
"3dAFNItoNIFTI",
f"-prefix {falff_afni_to_nifti_out_path.resolve()}",
f"{alff_falff_out_path_prefix}_fALFF+tlrc.BRIK",
f"{alff_falff_out_path_prefix}_fALFF+orig.BRIK",
]
# Call 3dAFNItoNIFTI
run_ext_cmd(name="3dAFNItoNIFTI", cmd=convert_falff_cmd)
Expand Down

0 comments on commit 6ef7d4e

Please sign in to comment.