Skip to content

Commit

Permalink
Fixed Number entry of CNLP field in gCNV intervals VCF.
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelklee committed Mar 21, 2019
1 parent 5149c18 commit 93f4022
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public void composeVariantContextHeader(final Set<VCFHeaderLine> vcfDefaultToolH
VCFHeaderLineType.Integer, "Genotype"));
result.addMetaDataLine(new VCFFormatHeaderLine(CN, 1,
VCFHeaderLineType.Integer, "Copy number maximum a posteriori value"));
result.addMetaDataLine(new VCFFormatHeaderLine(CNLP, VCFHeaderLineCount.A,
result.addMetaDataLine(new VCFFormatHeaderLine(CNLP, VCFHeaderLineCount.UNBOUNDED,
VCFHeaderLineType.Integer, "Copy number log posterior (in Phred-scale) rounded down"));
result.addMetaDataLine(new VCFFormatHeaderLine(CNQ, 1,
VCFHeaderLineType.Integer, "Genotype call quality as the difference between" +
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
##fileformat=VCFv4.2
##FORMAT=<ID=CN,Number=1,Type=Integer,Description="Copy number maximum a posteriori value">
##FORMAT=<ID=CNLP,Number=A,Type=Integer,Description="Copy number log posterior (in Phred-scale) rounded down">
##FORMAT=<ID=CNLP,Number=.,Type=Integer,Description="Copy number log posterior (in Phred-scale) rounded down">
##FORMAT=<ID=CNQ,Number=1,Type=Integer,Description="Genotype call quality as the difference between the best and second best phred-scaled log posterior scores">
##FORMAT=<ID=GT,Number=1,Type=Integer,Description="Genotype">
##INFO=<ID=END,Number=1,Type=Integer,Description="End coordinate of the variant">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
##fileformat=VCFv4.2
##FORMAT=<ID=CN,Number=1,Type=Integer,Description="Copy number maximum a posteriori value">
##FORMAT=<ID=CNLP,Number=A,Type=Integer,Description="Copy number log posterior (in Phred-scale) rounded down">
##FORMAT=<ID=CNLP,Number=.,Type=Integer,Description="Copy number log posterior (in Phred-scale) rounded down">
##FORMAT=<ID=CNQ,Number=1,Type=Integer,Description="Genotype call quality as the difference between the best and second best phred-scaled log posterior scores">
##FORMAT=<ID=GT,Number=1,Type=Integer,Description="Genotype">
##INFO=<ID=END,Number=1,Type=Integer,Description="End coordinate of the variant">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
##fileformat=VCFv4.2
##FORMAT=<ID=CN,Number=1,Type=Integer,Description="Copy number maximum a posteriori value">
##FORMAT=<ID=CNLP,Number=A,Type=Integer,Description="Copy number log posterior (in Phred-scale) rounded down">
##FORMAT=<ID=CNLP,Number=.,Type=Integer,Description="Copy number log posterior (in Phred-scale) rounded down">
##FORMAT=<ID=CNQ,Number=1,Type=Integer,Description="Genotype call quality as the difference between the best and second best phred-scaled log posterior scores">
##FORMAT=<ID=GT,Number=1,Type=Integer,Description="Genotype">
##INFO=<ID=END,Number=1,Type=Integer,Description="End coordinate of the variant">
Expand Down

0 comments on commit 93f4022

Please sign in to comment.