-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The bug caused that records with INFO/END annotation would incorrectly trigger `-c ~INFO/END` mode of comparison even when not explicitly requested, which would result in not transferring the annotation from a tab-delimited file. Resolves #1733
- Loading branch information
Showing
6 changed files
with
40 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
##fileformat=VCFv4.2 | ||
##FILTER=<ID=PASS,Description="All filters passed"> | ||
##ALT=<ID=DEL,Description="Deletion"> | ||
##ALT=<ID=INS,Description="Duplication"> | ||
##INFO=<ID=END,Number=1,Type=Integer,Description="End position of the structural variant"> | ||
##INFO=<ID=EVIDENCE,Number=.,Type=String,Description="Classes of random forest support."> | ||
##contig=<ID=chr1,length=248956422> | ||
#CHROM POS ID REF ALT QUAL FILTER INFO | ||
chr1 54713 . N <INS> . PASS END=54714;EVIDENCE=RD,PE,SR | ||
chr1 66224 . N <DEL> . PASS END=66275;EVIDENCE=RD,PE,SR | ||
chr1 66242 . N <DEL> . PASS END=66520;EVIDENCE=RD,PE,SR | ||
chr1 998763 . N <INS> . PASS END=998764;EVIDENCE=RD,PE,SR |
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,4 @@ | ||
chr1 54713 N <INS> RD,PE,SR | ||
chr1 66224 N <DEL> RD,PE,SR | ||
chr1 66242 N <DEL> RD,PE,SR | ||
chr1 998763 N <INS> RD,PE,SR |
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,12 @@ | ||
##fileformat=VCFv4.2 | ||
##FILTER=<ID=PASS,Description="All filters passed"> | ||
##ALT=<ID=DEL,Description="Deletion"> | ||
##ALT=<ID=INS,Description="Duplication"> | ||
##INFO=<ID=END,Number=1,Type=Integer,Description="End position of the structural variant"> | ||
##INFO=<ID=EVIDENCE,Number=.,Type=String,Description="Classes of random forest support."> | ||
##contig=<ID=chr1,length=248956422> | ||
#CHROM POS ID REF ALT QUAL FILTER INFO | ||
chr1 54713 . N <INS> . PASS END=54714 | ||
chr1 66224 . N <DEL> . PASS END=66275 | ||
chr1 66242 . N <DEL> . PASS END=66520 | ||
chr1 998763 . N <INS> . PASS END=998764 |
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