-
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 #350 from nickjcroucher/time_tree
Merge in capacity to generate time-calibrated trees
- Loading branch information
Showing
17 changed files
with
732 additions
and
184 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
36 changes: 36 additions & 0 deletions
36
python/gubbins/tests/data/multiple_recombinations_clade_generate.aln
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,36 @@ | ||
>sequence_1 | ||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA---------- | ||
------------------------AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
AA | ||
>sequence_5 | ||
AAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACACCCCCCCC | ||
CCCCCCCACCCACCCCCCCCCCACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
AA | ||
>sequence_6 | ||
AAAAAAAAAAAAAAAGAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAA---------- | ||
------------------------AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
AA | ||
>sequence_7 | ||
AAAAAAAAAAAACAAGAAAAAAAGAAAC---------------------A---------- | ||
------------------------AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
AA | ||
>sequence_8 | ||
AAAAAAAAAAAAAAAGAAAAAAAGAAAC---------------------A---------- | ||
------------------------AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
AA | ||
>sequence_9 | ||
---------------GAAAAAAAGAAAA---------------------A---------- | ||
------------------------AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
AA |
6 changes: 6 additions & 0 deletions
6
python/gubbins/tests/data/multiple_recombinations_clade_generate.gff
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,6 @@ | ||
##gff-version 3 | ||
##sequence-region SEQUENCE 1 242 | ||
SEQUENCE GUBBINS CDS 29 49 0.000 . 0 node="Node_4->Node_3";neg_log_likelihood="4.955311";taxa=" sequence_7 sequence_9 sequence_8";snp_count="21"; | ||
SEQUENCE GUBBINS CDS 51 84 0.000 . 0 node="Node_5->Node_4";neg_log_likelihood="10.195830";taxa=" sequence_6 sequence_7 sequence_9 sequence_8";snp_count="30"; | ||
SEQUENCE GUBBINS CDS 51 84 0.000 . 0 node="Node_6->sequence_1";neg_log_likelihood="8.046578";taxa="sequence_1";snp_count="30"; | ||
SEQUENCE GUBBINS CDS 51 84 0.000 . 0 node="Node_9->Node_8";neg_log_likelihood="10.195830";taxa=" sequence_3 sequence_4 sequence_2 sequence_5 sequence_6 sequence_7 sequence_9 sequence_8 sequence_1";snp_count="30"; |
1 change: 1 addition & 0 deletions
1
python/gubbins/tests/data/multiple_recombinations_clade_generate.tree
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 @@ | ||
(('sequence_5':0.000213,('sequence_6':0.000212,(('sequence_7':1.622202,'sequence_9':1.647725)'Node_2':0.000302,'sequence_8':0.000264)'Node_3':1.622508)'Node_4':1.22782)'Node_5':0.911834,'sequence_1':0.000214)'Node_6':28097902592.912083; |
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,10 @@ | ||
sequence_1 2020-01-15 | ||
sequence_2 2020-02-15 | ||
sequence_3 2020-03-15 | ||
sequence_4 2020-04-15 | ||
sequence_5 2020-05-15 | ||
sequence_6 2020-06-15 | ||
sequence_7 2020-07-15 | ||
sequence_8 2020-08-15 | ||
sequence_9 2020-09-15 | ||
sequence_10 2020 |
Oops, something went wrong.