Skip to content

Commit

Permalink
Merge pull request #1554 from ANTsX/act_reg_timing_output
Browse files Browse the repository at this point in the history
BUG: Wrong elapsed time in registration stage
  • Loading branch information
cookpa committed Jun 13, 2023
2 parents b73c0ae + 41e53b6 commit edb71a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Scripts/antsCorticalThickness.sh
Original file line number Diff line number Diff line change
Expand Up @@ -950,7 +950,7 @@ if [[ ! -s ${OUTPUT_PREFIX}ACTStage2Complete.txt ]] && \
time_elapsed_brain_registration=$((time_end_brain_registration - time_start_brain_registration))
echo
echo "--------------------------------------------------------------------------------------"
echo " Done with brain registration: $(( time_elapsed_brain_segmentation / 3600 ))h $(( time_elapsed_brain_registration %3600 / 60 ))m $(( time_elapsed_brain_registration % 60 ))s"
echo " Done with brain registration: $(( time_elapsed_brain_registration / 3600 ))h $(( time_elapsed_brain_registration %3600 / 60 ))m $(( time_elapsed_brain_registration % 60 ))s"
echo "--------------------------------------------------------------------------------------"
echo
fi # BAStages check reg
Expand Down

0 comments on commit edb71a5

Please sign in to comment.