diff --git a/src/main/resources/avro/bdg.avdl b/src/main/resources/avro/bdg.avdl index b2edba0..7c6b650 100644 --- a/src/main/resources/avro/bdg.avdl +++ b/src/main/resources/avro/bdg.avdl @@ -505,11 +505,16 @@ enum GenotypeType { // stat computed from all samples and stored inside the INFO line. record VariantCallingAnnotations { - // FILTER: True or false implies that filters were applied and this variant PASSed or not. - // While 'null' implies not filters were applied. - union { null, boolean } variantIsPassing = null; - array variantFilters = []; + /** + A list of filters (normally quality filters) this variant has failed. + */ + array filtersFailed = []; + /** + A list of filters (normally quality filters) this variant has passed. + */ + array filtersPassed = []; + /** True if the reads covering this site were randomly downsampled to reduce coverage. */