-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Better handling of separator directives and feature selection (#75)
This update mashes together two changes. First, it gives finer control to how and when separator directives are printed after complex features. Second, it enables selection of multiple feature types simultaneously in the `tag.select.features` function and updates the `bae` module to correctly use this function in `traverse` mode.
- Loading branch information
Showing
12 changed files
with
76 additions
and
21 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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
##gff-version 3 | ||
##sequence-region chr8 1 100000 | ||
chr8 CpGAT gene 72 5081 . - . ID=gene1;Name=chr8.g1 | ||
chr8 CpGAT mRNA 72 5081 . - . ID=mRNA1;Parent=gene1;Name=chr8.g1.t1;index=1 | ||
chr8 CpGAT exon 72 167 . - 1 Parent=mRNA1 | ||
chr8 CpGAT CDS 72 167 . - 0 ID=CDS1;Parent=mRNA1 | ||
chr8 AEGeAn::CanonGFF3 intron 168 348 . - . Parent=mRNA1 | ||
chr8 CpGAT exon 349 522 . - 1 Parent=mRNA1 | ||
chr8 CpGAT CDS 349 522 . - 0 ID=CDS1;Parent=mRNA1 | ||
chr8 AEGeAn::CanonGFF3 intron 523 610 . - . Parent=mRNA1 | ||
chr8 CpGAT exon 611 702 . - 1 Parent=mRNA1 | ||
chr8 CpGAT CDS 611 702 . - 2 ID=CDS1;Parent=mRNA1 | ||
chr8 AEGeAn::CanonGFF3 intron 703 4915 . - . Parent=mRNA1 | ||
chr8 CpGAT exon 4916 5081 . - 1 Parent=mRNA1 | ||
chr8 CpGAT CDS 4916 5081 . - 0 ID=CDS1;Parent=mRNA1 | ||
chr8 CpGAT gene 10538 11678 . - . ID=gene2;Name=chr8.g2 | ||
chr8 CpGAT mRNA 10538 11678 . - . ID=mRNA2;Parent=gene2;Name=chr8.g2.t1;index=1 | ||
chr8 CpGAT three_prime_UTR 10538 10746 . - . Parent=mRNA2 | ||
chr8 CpGAT exon 10538 11678 . - 1 Parent=mRNA2 | ||
chr8 CpGAT CDS 10747 11577 . - 0 Parent=mRNA2 | ||
chr8 CpGAT five_prime_UTR 11578 11678 . - . Parent=mRNA2 | ||
chr8 CpGAT gene 22053 23448 . + . ID=gene3;Name=chr8.g3 | ||
chr8 CpGAT mRNA 22053 23448 . + . ID=mRNA3;Parent=gene3;Name=chr8.g3.t1;index=1 | ||
chr8 CpGAT five_prime_UTR 22053 22166 . + . Parent=mRNA3 | ||
chr8 CpGAT exon 22053 22550 . + 1 Parent=mRNA3 | ||
chr8 CpGAT CDS 22167 22550 . + 0 ID=CDS2;Parent=mRNA3 | ||
chr8 AEGeAn::CanonGFF3 intron 22551 22650 . + . Parent=mRNA3 | ||
chr8 CpGAT CDS 22651 23022 . + 0 ID=CDS2;Parent=mRNA3 | ||
chr8 CpGAT exon 22651 23448 . + 1 Parent=mRNA3 | ||
chr8 CpGAT three_prime_UTR 23023 23448 . + . Parent=mRNA3 |
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
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