You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bin/GToTree
+10-2Lines changed: 10 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3436,7 +3436,11 @@ if [ $align_only == 'false' ]; then
3436
3436
# setting env variable for FastTreeMP
3437
3437
export OMP_NUM_THREADS=${num_jobs}
3438
3438
3439
-
FastTreeMP ${alignment_file}>${tree_file}2>>(tee -a $gtotree_log>&2)
3439
+
if [ $nucleotide=='false' ];then
3440
+
FastTreeMP ${alignment_file}>${tree_file}2>>(tee -a $gtotree_log>&2)
3441
+
else
3442
+
FastTreeMP -nt -gtr ${alignment_file}>${tree_file}2>>(tee -a $gtotree_log>&2)
3443
+
fi
3440
3444
3441
3445
fasttree_used="true"# setting to report citations at end
3442
3446
@@ -3454,7 +3458,11 @@ if [ $align_only == 'false' ]; then
3454
3458
printf" It is currently $curr_time; the process started at $start_time.\n"| tee >( sed 's/\x1b\[[0-9;]*m//g'>>${gtotree_log})
3455
3459
printf" Current process runtime: $(($duration/60/60)) hours and $((($duration/60) %60)) minutes.\n\n"| tee >( sed 's/\x1b\[[0-9;]*m//g'>>${gtotree_log})
3456
3460
3457
-
FastTree ${alignment_file}>${tree_file}2>>(tee -a $gtotree_log>&2)
3461
+
if [ $nucleotide=='false' ];then
3462
+
FastTree ${alignment_file}>${tree_file}2>>(tee -a $gtotree_log>&2)
3463
+
else
3464
+
FastTree -nt -gtr ${alignment_file}>${tree_file}2>>(tee -a $gtotree_log>&2)
3465
+
fi
3458
3466
3459
3467
fasttree_used="true"# setting to report citations at end
0 commit comments