Skip to content

Commit

Permalink
Merge pull request #48 from arnaudbore/fix_mask_type
Browse files Browse the repository at this point in the history
Fix mask type
  • Loading branch information
GuillaumeTh committed Apr 19, 2021
2 parents d5b4771 + d53c3ad commit 0975d6d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -1261,7 +1261,8 @@ process PFT_Seeding_Mask {
export ITK_GLOBAL_DEFAULT_NUMBER_OF_THREADS=1
export OMP_NUM_THREADS=1
export OPENBLAS_NUM_THREADS=1
mrcalc $fa $params.pft_fa_seeding_mask_threshold -ge ${sid}__pft_seeding_mask.nii.gz
mrcalc $fa $params.pft_fa_seeding_mask_threshold -ge ${sid}__pft_seeding_mask.nii.gz\
-datatype uint8
"""
}

Expand Down Expand Up @@ -1328,7 +1329,8 @@ process Local_Tracking_Mask {
export ITK_GLOBAL_DEFAULT_NUMBER_OF_THREADS=1
export OMP_NUM_THREADS=1
export OPENBLAS_NUM_THREADS=1
mrcalc $fa $params.local_fa_tracking_mask_threshold -ge ${sid}__local_tracking_mask.nii.gz -datatype uint8
mrcalc $fa $params.local_fa_tracking_mask_threshold -ge ${sid}__local_tracking_mask.nii.gz\
-datatype uint8
"""
}

Expand Down

0 comments on commit 0975d6d

Please sign in to comment.