-
Notifications
You must be signed in to change notification settings - Fork 4
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 #62 from gymrek-lab/feat/vcf_output
Added SAMPLE Format Field
- Loading branch information
Showing
3 changed files
with
49 additions
and
8 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,32 @@ | ||
##fileformat=VCFv4.2 | ||
##FILTER=<ID=PASS,Description="All filters passed"> | ||
##contig=<ID=1> | ||
##contig=<ID=2> | ||
##contig=<ID=3> | ||
##contig=<ID=4> | ||
##contig=<ID=5> | ||
##contig=<ID=6> | ||
##contig=<ID=7> | ||
##contig=<ID=8> | ||
##contig=<ID=9> | ||
##contig=<ID=10> | ||
##contig=<ID=11> | ||
##contig=<ID=12> | ||
##contig=<ID=13> | ||
##contig=<ID=14> | ||
##contig=<ID=15> | ||
##contig=<ID=16> | ||
##contig=<ID=17> | ||
##contig=<ID=18> | ||
##contig=<ID=19> | ||
##contig=<ID=20> | ||
##contig=<ID=21> | ||
##contig=<ID=22> | ||
##contig=<ID=23> | ||
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype"> | ||
##FORMAT=<ID=POP,Number=2,Type=String,Description="Origin Population of each respective allele in GT"> | ||
##FORMAT=<ID=SAMPLE,Number=2,Type=String,Description="Origin sample and haplotype of each respective allele in GT"> | ||
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT Sample_1 Sample_2 | ||
1 10114 1:10114:T:C T C . . . GT:POP:SAMPLE 0|0:YRI,YRI:HG00100-0,HG00100-0 1|1:CEU,CEU:HG00096-1,HG00096-1 | ||
1 59423090 1:59423090:A:G A G . . . GT:POP:SAMPLE 0|1:CEU,YRI:HG00097-0,HG00100-1 1|0:YRI,CEU:HG00100-1,HG00096-0 | ||
2 10122 1:10122:A:G A G . . . GT:POP:SAMPLE 1|0:YRI,CEU:HG00100-1,HG00096-0 0|1:CEU,YRI:HG00097-0,HG00099-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