-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(preprocessor): improve the check on the gVCF END block
check on the block length annotated by the END field in the INFO column. Avoid confusions caused by accidental END string and variant annotations Fix-for: #199
- Loading branch information
Showing
4 changed files
with
36 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,8 @@ | ||
##fileformat=VCFv4.1 | ||
##source=PharmCAT allele definitions | ||
##reference=hg38 | ||
##contig=<ID=chr11,assembly=hg38,species="Homo sapiens"> | ||
##FILTER=<ID=PASS,Description="All filters passed"> | ||
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype"> | ||
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT Sample_1 | ||
chr1 123456 . G A . PASS END=223456 GT 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,9 @@ | ||
##fileformat=VCFv4.1 | ||
##source=PharmCAT allele definitions | ||
##reference=hg38 | ||
##contig=<ID=chr11,assembly=hg38,species="Homo sapiens"> | ||
##FILTER=<ID=PASS,Description="All filters passed"> | ||
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype"> | ||
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT Sample_1 | ||
chr1 123456 . A T . PASS P|ABEND5|ABEND5 GT 0|1 | ||
chr1 123456 . GGT G . PASS END=123458;annotation_of_variant_ending_position GT 0|1 |
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