Skip to content

Commit

Permalink
Merge pull request #46 from GuillaumeTh/BF_fix_ants_seed
Browse files Browse the repository at this point in the history
Fix ANTs seed for reproducibility
  • Loading branch information
arnaudbore committed Apr 7, 2021
2 parents a7fec25 + c0cae92 commit d5b4771
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,7 @@ process Topup {
export OMP_NUM_THREADS=$task.cpus
export ITK_GLOBAL_DEFAULT_NUMBER_OF_THREADS=1
export OPENBLAS_NUM_THREADS=1
export ANTS_RANDOM_SEED=1234
scil_extract_b0.py $dwi $bval $bvec b0_mean.nii.gz --mean\
--b0_thr $params.b0_thr_extract_b0 --force_b0_threshold
scil_image_math.py mean $rev_b0 $rev_b0 --data_type float32 -f
Expand Down Expand Up @@ -753,6 +754,7 @@ process Bet_T1 {
export ITK_GLOBAL_DEFAULT_NUMBER_OF_THREADS=$task.cpus
export OMP_NUM_THREADS=1
export OPENBLAS_NUM_THREADS=1
export ANTS_RANDOM_SEED=1234
antsBrainExtraction.sh -d 3 -a $t1 -e $params.template_t1/t1_template.nii.gz\
-o bet/ -m $params.template_t1/t1_brain_probability_map.nii.gz -u 0
scil_image_math.py convert bet/BrainExtractionMask.nii.gz ${sid}__t1_bet_mask.nii.gz --data_type uint8
Expand Down Expand Up @@ -1021,6 +1023,7 @@ process Register_T1 {
export ITK_GLOBAL_DEFAULT_NUMBER_OF_THREADS=$task.cpus
export OMP_NUM_THREADS=1
export OPENBLAS_NUM_THREADS=1
export ANTS_RANDOM_SEED=1234
antsRegistration --dimensionality 3 --float 0\
--output [output,outputWarped.nii.gz,outputInverseWarped.nii.gz]\
--interpolation Linear --use-histogram-matching 0\
Expand Down

0 comments on commit d5b4771

Please sign in to comment.