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

Added quality and filter fields to GAVariant. #220

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src/main/resources/avro/variants.avdl
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,19 @@ record Variant {
/** The bases that appear instead of the reference bases. */
array<string> alternateBases = [];

/**
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.
PASS indicates this variant has passed all filters.
*/
array<string> filter = [];

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