public enum QualityFormat extends Enum<QualityFormat>
| Enum Constant and Description |
|---|
Phred33
Phred quality values encoded with 33 value offset.
|
Phred64
Phred quality values encoded with 64 value offset.
|
| Modifier and Type | Method and Description |
|---|---|
static QualityFormat |
fromName(String name) |
byte |
getMaxValue() |
byte |
getMinValue() |
String |
getName() |
byte |
getOffset() |
String |
toString() |
static QualityFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QualityFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QualityFormat Phred33
Allowed quality score values range is 0-50.
public static final QualityFormat Phred64
Allowed quality score values range is 0-41.
public static QualityFormat[] values()
for (QualityFormat c : QualityFormat.values()) System.out.println(c);
public static QualityFormat valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic byte getMinValue()
public byte getMaxValue()
public byte getOffset()
public static QualityFormat fromName(String name)
public String getName()
public String toString()
toString in class Enum<QualityFormat>Copyright © 2018. All rights reserved.