Skip to content

Commit

Permalink
Reapply float to double changes from commit 96951c2.
Browse files Browse the repository at this point in the history
  • Loading branch information
heuermh committed Oct 11, 2017
1 parent 8e58371 commit acb8f41
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/resources/avro/bdg.avdl
Original file line number Diff line number Diff line change
Expand Up @@ -901,11 +901,11 @@ record GenotypeAnnotation {

// GL Number=G Type=Float
/**
Genotype likelihoods comprised of floating point log10-scaled likelihoods for all possible
Genotype likelihoods comprised of double floating point log10-scaled likelihoods for all possible
genotypes given [the set of alleles defined in the REF and ALT fields]. VCF genotype field
reserved key GL, Number=G.
*/
array<float> likelihoods = [];
array<double> likelihoods = [];

// GP Number=G Type=Float
/**
Expand Down Expand Up @@ -963,7 +963,7 @@ record GenotypeAnnotation {
Log scaled likelihoods that we have n non-reference alleles at this site. The number of
elements in this array should be equal to the ploidy at this site, plus 1.
*/
array<float> nonReferenceLikelihoods = [];
array<double> nonReferenceLikelihoods = [];


//
Expand Down

0 comments on commit acb8f41

Please sign in to comment.