-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #104 from andrewjpage/print_excluded_sequences
Support for bipartition trees as input
- Loading branch information
Showing
8 changed files
with
24 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.10 | ||
0.1.11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
gubbins (0.1.11~trusty1) trusty; urgency=low | ||
|
||
* Python remove internal node names if passed in as a starting tree | ||
|
||
-- Andrew Page <[email protected]> Fri, 22 Aug 2014 16:44:00 +0000 | ||
|
||
gubbins (0.1.10~trusty1) trusty; urgency=low | ||
|
||
* Python print list of excluded sequences to STDOUT by default | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../tests/data/robinson_foulds_distance_tree1.tre.filter_out_removed_taxa_from_tree_expected
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(((sequence_7:0.300658,sequence_10:2e-05)N3:1.1e-05,sequence_9:0.193531)N2:2e-05,sequence_6:0.030557,sequence_8:2e-05)N1:0.0; | ||
(((sequence_7:0.300658,sequence_10:2e-05):1.1e-05,sequence_9:0.193531):2e-05,sequence_6:0.030557,sequence_8:2e-05):0.0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
((A0006:0.000000,A0004:21.489000)N2:103.770966,A0003:0.000000,(A0005:0.000000,(A0001:0.000000,A0002:3.659100)N4:2.366730)N3:19.463560)N1:0.000000; |
1 change: 1 addition & 0 deletions
1
python/gubbins/tests/data/tree_with_internal_nodes.tre_expected
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
((A0006:0.0,A0004:21.489):103.770966,A0003:0.0,(A0005:0.0,(A0001:0.0,A0002:3.6591):2.36673):19.46356):0.0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
setup( | ||
name='gubbins', | ||
version='0.1.10', | ||
version='0.1.11', | ||
description='Frontend to the Gubbins BioInformatics tool', | ||
author='Andrew J. Page', | ||
author_email='[email protected]', | ||
|