Skip to content
This repository has been archived by the owner on Oct 28, 2022. It is now read-only.

Commit

Permalink
adding quality, filtersFailed, and filtersPassed to Variant, fixes #219
Browse files Browse the repository at this point in the history
  • Loading branch information
heuermh committed May 9, 2015
1 parent 99b8650 commit e5f7abf
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/main/resources/avro/variants.avdl
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,23 @@ record Call {
*/
array<double> genotypeLikelihood = [];

/**
Phred-scaled quality score for the assertion made in ALT.
If ALT is ‘.’ (no variant) then this is −10log10 prob(variant), and if ALT is
not ‘.’ this is −10log10 prob(no variant).
*/
union { null, double } quality = null;

/**
A list of filters (normally quality filters) this variant has failed.
*/
array<string> filtersFailed = [];

/**
A list of filters (normally quality filters) this variant has passed.
*/
array<string> filtersPassed = [];

/**
A map of additional variant call information.
*/
Expand Down

0 comments on commit e5f7abf

Please sign in to comment.