File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -93,8 +93,11 @@ var mutationsCmd = &cobra.Command{
93
93
}
94
94
defer closeWriteFile (f , outfile )
95
95
96
- fmt .Fprintf (f , "Tree ID\t Site\t Branch ID\t Node Name\t Parent Character\t Child Character\t Total tips\t Same Character Tips\n " )
97
-
96
+ if mutationseems {
97
+ fmt .Fprintf (f , "Tree ID\t Site\t Parent Character\t Child Character\t Nb EEMs\n " )
98
+ } else {
99
+ fmt .Fprintf (f , "Tree ID\t Site\t Branch ID\t Node Name\t Parent Character\t Child Character\t Total tips\t Same Character Tips\n " )
100
+ }
98
101
for t := range treechan {
99
102
if mutationseems {
100
103
if muts , err = mutations .CountEEMs (t .Tree , align ); err != nil {
Original file line number Diff line number Diff line change @@ -678,7 +678,7 @@ cat > input_tree <<EOF
678
678
EOF
679
679
680
680
cat > expected << EOF
681
- Tree ID Site Branch ID Node Name Parent Character Child Character Total tips Same Character Tips
681
+ Tree ID Site Parent Character Child Character Nb EEMs
682
682
0 0 G T 2
683
683
0 0 C A 2
684
684
0 0 G C 1
You can’t perform that action at this time.
0 commit comments