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
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ GREEN='\033[0;32m'
5
5
RED='\033[0;31m'
6
6
YELLOW='\033[0;33m'
7
7
NC='\033[0m'
8
-
VERSION="v1.8.14"
8
+
VERSION="v1.8.15"
9
9
10
10
if [ "$1"=="--version" ] || [ "$1"=="-v" ];then
11
11
printf"GToTree ${VERSION}\n"
@@ -2643,11 +2643,11 @@ duration=$SECONDS
2643
2643
printf" It is currently $curr_time; the process started at $start_time.\n"| tee >( sed 's/\x1b\[[0-9;]*m//g'>>${gtotree_log})
2644
2644
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})
2645
2645
2646
-
# this concatenates the alignments and generates the partitions file for mixedmodel alignments
2646
+
# this concatenates the alignments and generates the partitions file for mixed-model treeing
Copy file name to clipboardExpand all lines: bin/gtt-cat-alignments
+27-4Lines changed: 27 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -5,12 +5,12 @@ from glob import glob
5
5
importargparse
6
6
importos.path
7
7
8
-
parser=argparse.ArgumentParser(description='This script is a helper script to concatenate fasta-formatted multiple sequence alignment files, and generate partitions file.')
8
+
parser=argparse.ArgumentParser(description='This script is a helper to concatenate fasta-formatted multiple sequence alignment files and generate the partitions files.')
0 commit comments