Skip to content

Commit

Permalink
Merge c6333f1 into d8677e6
Browse files Browse the repository at this point in the history
  • Loading branch information
heuermh committed Dec 12, 2018
2 parents d8677e6 + c6333f1 commit 0eb257c
Showing 1 changed file with 2 additions and 27 deletions.
29 changes: 2 additions & 27 deletions src/main/resources/avro/bdg.avdl
Original file line number Diff line number Diff line change
Expand Up @@ -1478,27 +1478,6 @@ record Slice { // extends Sequence
map<string> attributes = {};
}

/**
Quality score variant.
*/
enum QualityScoreVariant {

/**
Sanger and Illumina version &gt;= 1.8 FASTQ quality score variant.
*/
FASTQ_SANGER,

/**
Solexa and Illumina version 1.0 FASTQ quality score variant.
*/
FASTQ_SOLEXA,

/**
Illumina version &gt;= 1.3 and &lt; 1.8 FASTQ quality score variant.
*/
FASTQ_ILLUMINA
}

/**
Sequence with quality scores.
*/
Expand Down Expand Up @@ -1530,15 +1509,11 @@ record Read { // extends Sequence
union { null, long } length = null;

/**
Quality scores for this read.
Quality scores for this read, in Sanger format, encoding
Phred quality scores from 0 to 93 using ASCII values 33 to 126.
*/
union { null, string } qualityScores = null;

/**
Quality score variant for this read, defaults to QualityScoreVariant.FASTQ_SANGER.
*/
union { QualityScoreVariant, null } qualityScoreVariant = "FASTQ_SANGER";

/**
Map of attributes.
*/
Expand Down

0 comments on commit 0eb257c

Please sign in to comment.