-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Local alleles merging, produce LAA and LPL when requested.
This is a draft implementation of samtools/hts-specs#434 and haploid Number=G tags are not handled yet.
- Loading branch information
Showing
14 changed files
with
669 additions
and
2 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,17 @@ | ||
##fileformat=VCFv4.3 | ||
##FILTER=<ID=PASS,Description="All filters passed"> | ||
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype"> | ||
##FORMAT=<ID=PL,Number=G,Type=Integer,Description="Genotype Likelihoods"> | ||
##FORMAT=<ID=GL,Number=G,Type=Float,Description="Genotype Likelihoods"> | ||
##FORMAT=<ID=AD,Number=R,Type=Integer,Description="Allelic Depths"> | ||
##FORMAT=<ID=DF,Number=R,Type=Float,Description="Dummy"> | ||
##FORMAT=<ID=DD,Number=A,Type=Integer,Description="Dummy"> | ||
##contig=<ID=1,assembly=b37,length=249250621> | ||
##reference=ref.fa | ||
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT A 2:A 3:A | ||
1 30000 . C T . . . GT:PL:GL:AD:DF:DD 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 | ||
1 30001 . C CA,CC,CG . . . GT:PL:GL:AD:DF:DD 0/1:10,0,10,.,.,.,.,.,.,.:10,0,10,.,.,.,.,.,.,.:1,2,.,.:0.1,0.2,.,.:1,.,. 0/2:10,.,.,0,.,10,.,.,.,.:10,.,.,0,.,10,.,.,.,.:1,.,2,.:0.1,.,0.2,.:.,1,. 0/3:10,.,.,.,.,.,0,.,.,10:10,.,.,.,.,.,0,.,.,10:1,.,.,2:0.1,.,.,0.2:.,.,1 | ||
1 30002 . C CA,CAA,CC,CCC,CG,CGG . . . GT:PL:GL:AD:DF:DD 1/2:20,20,20,10,0,10,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.:20,20,20,10,0,10,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.:0,1,2,.,.,.,.:0,0.1,0.2,.,.,.,.:1,2,.,.,.,. 3/4:20,.,.,.,.,.,20,.,.,20,10,.,.,0,10,.,.,.,.,.,.,.,.,.,.,.,.,.:20,.,.,.,.,.,20,.,.,20,10,.,.,0,10,.,.,.,.,.,.,.,.,.,.,.,.,.:0,.,.,1,2,.,.:0,.,.,0.1,0.2,.,.:.,.,1,2,.,. 5/6:20,.,.,.,.,.,.,.,.,.,.,.,.,.,.,20,.,.,.,.,20,10,.,.,.,.,0,10:20,.,.,.,.,.,.,.,.,.,.,.,.,.,.,20,.,.,.,.,20,10,.,.,.,.,0,10:0,.,.,.,.,1,2:0,.,.,.,.,0.1,0.2:.,.,.,.,1,2 | ||
1 30003 . C CA,CAA,CAAA . . . GT:PL:GL:AD:DF:DD 1/2:20,20,20,10,0,10,20,20,10,20:20,20,20,10,0,10,20,20,10,20:0,1,2,1:0,0.1,0.2,0.1:1,2,3 ./.:.:.:.:.:. ./.:.:.:.:.:. | ||
1 30004 . C CC,CCC,CCCC . . . GT:PL:GL:AD:DF:DD ./.:.:.:.:.:. 1/2:20,20,20,10,0,10,20,20,10,20:20,20,20,10,0,10,20,20,10,20:0,1,2,1:0,0.1,0.2,0.1:1,2,3 ./.:.:.:.:.:. | ||
1 30005 . C CG,CGG,CGGG . . . GT:PL:GL:AD:DF:DD ./.:.:.:.:.:. ./.:.:.:.:.:. 1/2:20,20,20,10,0,10,20,20,10,20:20,20,20,10,0,10,20,20,10,20:0,1,2,1:0,0.1,0.2,0.1:1,2,3 |
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.2 | ||
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype"> | ||
##FORMAT=<ID=PL,Number=G,Type=Integer,Description="Genotype Likelihood"> | ||
##contig=<ID=1,length=248956422> | ||
##reference=file:///home/dnanexus/genome.fa | ||
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT s1 | ||
1 10000001 . A AC . . . GT:PL 0/1:10,0,10 | ||
1 10000002 . A AC,ACC . . . GT:PL 1/2:20,20,20,10,0,10 |
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,23 @@ | ||
##fileformat=VCFv4.3 | ||
##FILTER=<ID=PASS,Description="All filters passed"> | ||
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype"> | ||
##FORMAT=<ID=PL,Number=G,Type=Integer,Description="Genotype Likelihoods"> | ||
##FORMAT=<ID=GL,Number=G,Type=Float,Description="Genotype Likelihoods"> | ||
##FORMAT=<ID=AD,Number=R,Type=Integer,Description="Allelic Depths"> | ||
##FORMAT=<ID=DF,Number=R,Type=Float,Description="Dummy"> | ||
##FORMAT=<ID=DD,Number=A,Type=Integer,Description="Dummy"> | ||
##contig=<ID=1,assembly=b37,length=249250621> | ||
##reference=ref.fa | ||
##FORMAT=<ID=LAA,Number=.,Type=Integer,Description="Localized alleles: subset of alternate alleles relevant for each sample"> | ||
##FORMAT=<ID=LPL,Number=.,Type=Integer,Description="Localized field: Genotype Likelihoods"> | ||
##FORMAT=<ID=LGL,Number=.,Type=Float,Description="Localized field: Genotype Likelihoods"> | ||
##FORMAT=<ID=LAD,Number=.,Type=Integer,Description="Localized field: Allelic Depths"> | ||
##FORMAT=<ID=LDF,Number=.,Type=Float,Description="Localized field: Dummy"> | ||
##FORMAT=<ID=LDD,Number=.,Type=Integer,Description="Localized field: Dummy"> | ||
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT A 2:A 3:A | ||
1 30000 . C T . . . GT:PL:GL:AD:DF:DD 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 | ||
1 30001 . C CA,CC,CG . . . GT:LPL:LGL:LAD:LDF:LDD:LAA 0/1:10,0,10:10,0,10:1,2:0.1,0.2:0:1 0/2:10,0,10:10,0,10:1,2:0.1,0.2:0:2 0/3:10,0,10:10,0,10:1,2:0.1,0.2:0:3 | ||
1 30002 . C CA,CAA,CC,CCC,CG,CGG . . . GT:LPL:LGL:LAD:LDF:LDD:LAA 1/2:20,10,10:20,10,10:0,2:0,0.2:0:2 3/4:20,10,10:20,10,10:0,2:0,0.2:0:4 5/6:20,10,10:20,10,10:0,2:0,0.2:0:6 | ||
1 30003 . C CA,CAA,CAAA . . . GT:LPL:LGL:LAD:LDF:LDD:LAA 1/2:20,10,10:20,10,10:0,2:0,0.2:3:2 ./.:.:.:.:.:.:. ./.:.:.:.:.:.:. | ||
1 30004 . C CC,CCC,CCCC . . . GT:LPL:LGL:LAD:LDF:LDD:LAA ./.:.:.:.:.:.:. 1/2:20,10,10:20,10,10:0,2:0,0.2:3:2 ./.:.:.:.:.:.:. | ||
1 30005 . C CG,CGG,CGGG . . . GT:LPL:LGL:LAD:LDF:LDD:LAA ./.:.:.:.:.:.:. ./.:.:.:.:.:.:. 1/2:20,10,10:20,10,10:0,2:0,0.2:3:2 |
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,23 @@ | ||
##fileformat=VCFv4.3 | ||
##FILTER=<ID=PASS,Description="All filters passed"> | ||
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype"> | ||
##FORMAT=<ID=PL,Number=G,Type=Integer,Description="Genotype Likelihoods"> | ||
##FORMAT=<ID=GL,Number=G,Type=Float,Description="Genotype Likelihoods"> | ||
##FORMAT=<ID=AD,Number=R,Type=Integer,Description="Allelic Depths"> | ||
##FORMAT=<ID=DF,Number=R,Type=Float,Description="Dummy"> | ||
##FORMAT=<ID=DD,Number=A,Type=Integer,Description="Dummy"> | ||
##contig=<ID=1,assembly=b37,length=249250621> | ||
##reference=ref.fa | ||
##FORMAT=<ID=LAA,Number=.,Type=Integer,Description="Localized alleles: subset of alternate alleles relevant for each sample"> | ||
##FORMAT=<ID=LPL,Number=.,Type=Integer,Description="Localized field: Genotype Likelihoods"> | ||
##FORMAT=<ID=LGL,Number=.,Type=Float,Description="Localized field: Genotype Likelihoods"> | ||
##FORMAT=<ID=LAD,Number=.,Type=Integer,Description="Localized field: Allelic Depths"> | ||
##FORMAT=<ID=LDF,Number=.,Type=Float,Description="Localized field: Dummy"> | ||
##FORMAT=<ID=LDD,Number=.,Type=Integer,Description="Localized field: Dummy"> | ||
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT A 2:A 3:A | ||
1 30000 . C T . . . GT:PL:GL:AD:DF:DD 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 | ||
1 30001 . C CA,CC,CG . . . GT:LPL:LGL:LAD:LDF:LDD:LAA 0/1:10,0,10:10,0,10:1,2:0.1,0.2:0:1 0/2:10,0,10:10,0,10:1,2:0.1,0.2:0:2 0/3:10,0,10:10,0,10:1,2:0.1,0.2:0:3 | ||
1 30002 . C CA,CAA,CC,CCC,CG,CGG . . . GT:LPL:LGL:LAD:LDF:LDD:LAA 1/2:20,20,20,10,0,10:20,20,20,10,0,10:0,1,2:0,0.1,0.2:2,0:1,2 3/4:20,20,20,10,0,10:20,20,20,10,0,10:0,1,2:0,0.1,0.2:2,0:3,4 5/6:20,20,20,10,0,10:20,20,20,10,0,10:0,1,2:0,0.1,0.2:2,0:5,6 | ||
1 30003 . C CA,CAA,CAAA . . . GT:LPL:LGL:LAD:LDF:LDD:LAA 1/2:20,20,20,10,0,10:20,20,20,10,0,10:0,1,2:0,0.1,0.2:2,3:1,2 ./.:.:.:.:.:.:.,. ./.:.:.:.:.:.:. | ||
1 30004 . C CC,CCC,CCCC . . . GT:LPL:LGL:LAD:LDF:LDD:LAA ./.:.:.:.:.:.:. 1/2:20,20,20,10,0,10:20,20,20,10,0,10:0,1,2:0,0.1,0.2:2,3:1,2 ./.:.:.:.:.:.:.,2 | ||
1 30005 . C CG,CGG,CGGG . . . GT:LPL:LGL:LAD:LDF:LDD:LAA ./.:.:.:.:.:.:. ./.:.:.:.:.:.:.,. 1/2:20,20,20,10,0,10:20,20,20,10,0,10:0,1,2:0,0.1,0.2:2,3:1,2 |
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,23 @@ | ||
##fileformat=VCFv4.3 | ||
##FILTER=<ID=PASS,Description="All filters passed"> | ||
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype"> | ||
##FORMAT=<ID=PL,Number=G,Type=Integer,Description="Genotype Likelihoods"> | ||
##FORMAT=<ID=GL,Number=G,Type=Float,Description="Genotype Likelihoods"> | ||
##FORMAT=<ID=AD,Number=R,Type=Integer,Description="Allelic Depths"> | ||
##FORMAT=<ID=DF,Number=R,Type=Float,Description="Dummy"> | ||
##FORMAT=<ID=DD,Number=A,Type=Integer,Description="Dummy"> | ||
##contig=<ID=1,assembly=b37,length=249250621> | ||
##reference=ref.fa | ||
##FORMAT=<ID=LAA,Number=.,Type=Integer,Description="Localized alleles: subset of alternate alleles relevant for each sample"> | ||
##FORMAT=<ID=LPL,Number=.,Type=Integer,Description="Localized field: Genotype Likelihoods"> | ||
##FORMAT=<ID=LGL,Number=.,Type=Float,Description="Localized field: Genotype Likelihoods"> | ||
##FORMAT=<ID=LAD,Number=.,Type=Integer,Description="Localized field: Allelic Depths"> | ||
##FORMAT=<ID=LDF,Number=.,Type=Float,Description="Localized field: Dummy"> | ||
##FORMAT=<ID=LDD,Number=.,Type=Integer,Description="Localized field: Dummy"> | ||
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT A 2:A 3:A | ||
1 30000 . C T . . . GT:PL:GL:AD:DF:DD 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 | ||
1 30001 . C CA,CC,CG . . . GT:PL:GL:AD:DF:DD 0/1:10,0,10,.,.,.,.,.,.,.:10,0,10,.,.,.,.,.,.,.:1,2,.,.:0.1,0.2,.,.:1,.,. 0/2:10,.,.,0,.,10,.,.,.,.:10,.,.,0,.,10,.,.,.,.:1,.,2,.:0.1,.,0.2,.:.,1,. 0/3:10,.,.,.,.,.,0,.,.,10:10,.,.,.,.,.,0,.,.,10:1,.,.,2:0.1,.,.,0.2:.,.,1 | ||
1 30002 . C CA,CAA,CC,CCC,CG,CGG . . . GT:LPL:LGL:LAD:LDF:LDD:LAA 1/2:20,20,20,10,0,10:20,20,20,10,0,10:0,1,2:0,0.1,0.2:2,0:1,2 3/4:20,20,20,10,0,10:20,20,20,10,0,10:0,1,2:0,0.1,0.2:2,0:3,4 5/6:20,20,20,10,0,10:20,20,20,10,0,10:0,1,2:0,0.1,0.2:2,0:5,6 | ||
1 30003 . C CA,CAA,CAAA . . . GT:PL:GL:AD:DF:DD 1/2:20,20,20,10,0,10,20,20,10,20:20,20,20,10,0,10,20,20,10,20:0,1,2,1:0,0.1,0.2,0.1:1,2,3 ./.:.:.:.:.:. ./.:.:.:.:.:. | ||
1 30004 . C CC,CCC,CCCC . . . GT:PL:GL:AD:DF:DD ./.:.:.:.:.:. 1/2:20,20,20,10,0,10,20,20,10,20:20,20,20,10,0,10,20,20,10,20:0,1,2,1:0,0.1,0.2,0.1:1,2,3 ./.:.:.:.:.:. | ||
1 30005 . C CG,CGG,CGGG . . . GT:PL:GL:AD:DF:DD ./.:.:.:.:.:. ./.:.:.:.:.:. 1/2:20,20,20,10,0,10,20,20,10,20:20,20,20,10,0,10,20,20,10,20:0,1,2,1:0,0.1,0.2,0.1:1,2,3 |
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,23 @@ | ||
##fileformat=VCFv4.3 | ||
##FILTER=<ID=PASS,Description="All filters passed"> | ||
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype"> | ||
##FORMAT=<ID=PL,Number=G,Type=Integer,Description="Genotype Likelihoods"> | ||
##FORMAT=<ID=GL,Number=G,Type=Float,Description="Genotype Likelihoods"> | ||
##FORMAT=<ID=AD,Number=R,Type=Integer,Description="Allelic Depths"> | ||
##FORMAT=<ID=DF,Number=R,Type=Float,Description="Dummy"> | ||
##FORMAT=<ID=DD,Number=A,Type=Integer,Description="Dummy"> | ||
##contig=<ID=1,assembly=b37,length=249250621> | ||
##reference=ref.fa | ||
##FORMAT=<ID=LAA,Number=.,Type=Integer,Description="Localized alleles: subset of alternate alleles relevant for each sample"> | ||
##FORMAT=<ID=LPL,Number=.,Type=Integer,Description="Localized field: Genotype Likelihoods"> | ||
##FORMAT=<ID=LGL,Number=.,Type=Float,Description="Localized field: Genotype Likelihoods"> | ||
##FORMAT=<ID=LAD,Number=.,Type=Integer,Description="Localized field: Allelic Depths"> | ||
##FORMAT=<ID=LDF,Number=.,Type=Float,Description="Localized field: Dummy"> | ||
##FORMAT=<ID=LDD,Number=.,Type=Integer,Description="Localized field: Dummy"> | ||
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT A 2:A 3:A | ||
1 30000 . C T . . . GT:PL:GL:AD:DF:DD 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 | ||
1 30001 . C CA,CC,CG . . . GT:PL:GL:AD:DF:DD 0/1:10,0,10,.,.,.,.,.,.,.:10,0,10,.,.,.,.,.,.,.:1,2,.,.:0.1,0.2,.,.:1,.,. 0/2:10,.,.,0,.,10,.,.,.,.:10,.,.,0,.,10,.,.,.,.:1,.,2,.:0.1,.,0.2,.:.,1,. 0/3:10,.,.,.,.,.,0,.,.,10:10,.,.,.,.,.,0,.,.,10:1,.,.,2:0.1,.,.,0.2:.,.,1 | ||
1 30002 . C CA,CAA,CC,CCC,CG,CGG . . . GT:LPL:LGL:LAD:LDF:LDD:LAA 1/2:20,20,20,10,0,10:20,20,20,10,0,10:0,1,2:0,0.1,0.2:2,0:1,2 3/4:20,20,20,10,0,10:20,20,20,10,0,10:0,1,2:0,0.1,0.2:2,0:3,4 5/6:20,20,20,10,0,10:20,20,20,10,0,10:0,1,2:0,0.1,0.2:2,0:5,6 | ||
1 30003 . C CA,CAA,CAAA . . . GT:PL:GL:AD:DF:DD 1/2:20,20,20,10,0,10,20,20,10,20:20,20,20,10,0,10,20,20,10,20:0,1,2,1:0,0.1,0.2,0.1:1,2,3 ./.:.:.:.:.:. ./.:.:.:.:.:. | ||
1 30004 . C CC,CCC,CCCC . . . GT:PL:GL:AD:DF:DD ./.:.:.:.:.:. 1/2:20,20,20,10,0,10,20,20,10,20:20,20,20,10,0,10,20,20,10,20:0,1,2,1:0,0.1,0.2,0.1:1,2,3 ./.:.:.:.:.:. | ||
1 30005 . C CG,CGG,CGGG . . . GT:PL:GL:AD:DF:DD ./.:.:.:.:.:. ./.:.:.:.:.:. 1/2:20,20,20,10,0,10,20,20,10,20:20,20,20,10,0,10,20,20,10,20:0,1,2,1:0,0.1,0.2,0.1:1,2,3 |
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,23 @@ | ||
##fileformat=VCFv4.3 | ||
##FILTER=<ID=PASS,Description="All filters passed"> | ||
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype"> | ||
##FORMAT=<ID=PL,Number=G,Type=Integer,Description="Genotype Likelihoods"> | ||
##FORMAT=<ID=GL,Number=G,Type=Float,Description="Genotype Likelihoods"> | ||
##FORMAT=<ID=AD,Number=R,Type=Integer,Description="Allelic Depths"> | ||
##FORMAT=<ID=DF,Number=R,Type=Float,Description="Dummy"> | ||
##FORMAT=<ID=DD,Number=A,Type=Integer,Description="Dummy"> | ||
##contig=<ID=1,assembly=b37,length=249250621> | ||
##reference=ref.fa | ||
##FORMAT=<ID=LAA,Number=.,Type=Integer,Description="Localized alleles: subset of alternate alleles relevant for each sample"> | ||
##FORMAT=<ID=LPL,Number=.,Type=Integer,Description="Localized field: Genotype Likelihoods"> | ||
##FORMAT=<ID=LGL,Number=.,Type=Float,Description="Localized field: Genotype Likelihoods"> | ||
##FORMAT=<ID=LAD,Number=.,Type=Integer,Description="Localized field: Allelic Depths"> | ||
##FORMAT=<ID=LDF,Number=.,Type=Float,Description="Localized field: Dummy"> | ||
##FORMAT=<ID=LDD,Number=.,Type=Integer,Description="Localized field: Dummy"> | ||
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT A 2:A 3:A | ||
1 30000 . C T . . . GT:PL:GL:AD:DF:DD 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 | ||
1 30001 . C CA,CC,CG . . . GT:PL:GL:AD:DF:DD 0/1:10,0,10,.,.,.,.,.,.,.:10,0,10,.,.,.,.,.,.,.:1,2,.,.:0.1,0.2,.,.:1,.,. 0/2:10,.,.,0,.,10,.,.,.,.:10,.,.,0,.,10,.,.,.,.:1,.,2,.:0.1,.,0.2,.:.,1,. 0/3:10,.,.,.,.,.,0,.,.,10:10,.,.,.,.,.,0,.,.,10:1,.,.,2:0.1,.,.,0.2:.,.,1 | ||
1 30002 . C CA,CAA,CC,CCC,CG,CGG . . . GT:LPL:LGL:LAD:LDF:LDD:LAA 1/2:20,20,20,10,0,10:20,20,20,10,0,10:0,1,2:0,0.1,0.2:2,0:1,2 3/4:20,20,20,10,0,10:20,20,20,10,0,10:0,1,2:0,0.1,0.2:2,0:3,4 5/6:20,20,20,10,0,10:20,20,20,10,0,10:0,1,2:0,0.1,0.2:2,0:5,6 | ||
1 30003 . C CA,CAA,CAAA . . . GT:PL:GL:AD:DF:DD 1/2:20,20,20,10,0,10,20,20,10,20:20,20,20,10,0,10,20,20,10,20:0,1,2,1:0,0.1,0.2,0.1:1,2,3 ./.:.:.:.:.:. ./.:.:.:.:.:. | ||
1 30004 . C CC,CCC,CCCC . . . GT:PL:GL:AD:DF:DD ./.:.:.:.:.:. 1/2:20,20,20,10,0,10,20,20,10,20:20,20,20,10,0,10,20,20,10,20:0,1,2,1:0,0.1,0.2,0.1:1,2,3 ./.:.:.:.:.:. | ||
1 30005 . C CG,CGG,CGGG . . . GT:PL:GL:AD:DF:DD ./.:.:.:.:.:. ./.:.:.:.:.:. 1/2:20,20,20,10,0,10,20,20,10,20:20,20,20,10,0,10,20,20,10,20:0,1,2,1:0,0.1,0.2,0.1:1,2,3 |
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,14 @@ | ||
##fileformat=VCFv4.3 | ||
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype"> | ||
##FORMAT=<ID=PL,Number=G,Type=Integer,Description="Genotype Likelihoods"> | ||
##FORMAT=<ID=GL,Number=G,Type=Float,Description="Genotype Likelihoods"> | ||
##FORMAT=<ID=AD,Number=R,Type=Integer,Description="Allelic Depths"> | ||
##FORMAT=<ID=DF,Number=R,Type=Float,Description="Dummy"> | ||
##FORMAT=<ID=DD,Number=A,Type=Integer,Description="Dummy"> | ||
##contig=<ID=1,assembly=b37,length=249250621> | ||
##reference=ref.fa | ||
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT A | ||
1 30000 . C T . . . GT:PL:GL:AD:DF:DD 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 | ||
1 30001 . C CA . . . GT:PL:GL:AD:DF:DD 0/1:10,0,10:10,0,10:1,2:0.1,0.2:1 | ||
1 30002 . C CA,CAA . . . GT:PL:GL:AD:DF:DD 1/2:20,20,20,10,0,10:20,20,20,10,0,10:0,1,2:0,0.1,0.2:1,2 | ||
1 30003 . C CA,CAA,CAAA . . . GT:PL:GL:AD:DF:DD 1/2:20,20,20,10,0,10,20,20,10,20:20,20,20,10,0,10,20,20,10,20:0,1,2,1:0,0.1,0.2,0.1:1,2,3 |
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,14 @@ | ||
##fileformat=VCFv4.3 | ||
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype"> | ||
##FORMAT=<ID=PL,Number=G,Type=Integer,Description="Genotype Likelihoods"> | ||
##FORMAT=<ID=GL,Number=G,Type=Float,Description="Genotype Likelihoods"> | ||
##FORMAT=<ID=AD,Number=R,Type=Integer,Description="Allelic Depths"> | ||
##FORMAT=<ID=DF,Number=R,Type=Float,Description="Dummy"> | ||
##FORMAT=<ID=DD,Number=A,Type=Integer,Description="Dummy"> | ||
##contig=<ID=1,assembly=b37,length=249250621> | ||
##reference=ref.fa | ||
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT A | ||
1 30000 . C T . . . GT:PL:GL:AD:DF:DD 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 | ||
1 30001 . C CC . . . GT:PL:GL:AD:DF:DD 0/1:10,0,10:10,0,10:1,2:0.1,0.2:1 | ||
1 30002 . C CC,CCC . . . GT:PL:GL:AD:DF:DD 1/2:20,20,20,10,0,10:20,20,20,10,0,10:0,1,2:0,0.1,0.2:1,2 | ||
1 30004 . C CC,CCC,CCCC . . . GT:PL:GL:AD:DF:DD 1/2:20,20,20,10,0,10,20,20,10,20:20,20,20,10,0,10,20,20,10,20:0,1,2,1:0,0.1,0.2,0.1:1,2,3 |
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,14 @@ | ||
##fileformat=VCFv4.3 | ||
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype"> | ||
##FORMAT=<ID=PL,Number=G,Type=Integer,Description="Genotype Likelihoods"> | ||
##FORMAT=<ID=GL,Number=G,Type=Float,Description="Genotype Likelihoods"> | ||
##FORMAT=<ID=AD,Number=R,Type=Integer,Description="Allelic Depths"> | ||
##FORMAT=<ID=DF,Number=R,Type=Float,Description="Dummy"> | ||
##FORMAT=<ID=DD,Number=A,Type=Integer,Description="Dummy"> | ||
##contig=<ID=1,assembly=b37,length=249250621> | ||
##reference=ref.fa | ||
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT A | ||
1 30000 . C T . . . GT:PL:GL:AD:DF:DD 0/1:20,0,20:20,0,20:1,2:0.1,0.2:1 | ||
1 30001 . C CG . . . GT:PL:GL:AD:DF:DD 0/1:10,0,10:10,0,10:1,2:0.1,0.2:1 | ||
1 30002 . C CG,CGG . . . GT:PL:GL:AD:DF:DD 1/2:20,20,20,10,0,10:20,20,20,10,0,10:0,1,2:0,0.1,0.2:1,2 | ||
1 30005 . C CG,CGG,CGGG . . . GT:PL:GL:AD:DF:DD 1/2:20,20,20,10,0,10,20,20,10,20:20,20,20,10,0,10,20,20,10,20:0,1,2,1:0,0.1,0.2,0.1:1,2,3 |
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.2 | ||
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype"> | ||
##FORMAT=<ID=PL,Number=G,Type=Integer,Description="Genotype Likelihood"> | ||
##contig=<ID=1,length=248956422> | ||
##reference=file:///home/dnanexus/genome.fa | ||
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT s1 | ||
1 10000001 . A AT . . . GT:PL 0/1:10,0,10 | ||
1 10000002 . A AT,ATT . . . GT:PL 1/2:20,20,20,10,0,10 |
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
Oops, something went wrong.