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

Commit

Permalink
Add quality and filters close #219
Browse files Browse the repository at this point in the history
  • Loading branch information
david4096 committed Jul 8, 2016
1 parent 48b0ce9 commit 4d17a97
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/main/proto/ga4gh/variants.proto
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,17 @@ message Variant {
// The bases that appear instead of the reference bases. Multiple alternate
// alleles are possible.
repeated string alternate_bases = 10;

// 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).
double quality = 13;

// A list of filters (normally quality filters) this variant has failed.
repeated string filters_failed = 14;

// A list of filters (normally quality filters) this variant has passed.
repeated string filters_passed = 15;

// A map of additional variant information.
map<string, google.protobuf.ListValue> info = 11;
Expand Down

0 comments on commit 4d17a97

Please sign in to comment.