Package model
Enum Class VariantCall.Flag
- All Implemented Interfaces:
Serializable
,Comparable<VariantCall.Flag>
,Constable
- Enclosing class:
VariantCall
Enumeration of flags representing the status of a variant call.
This enum defines various flags that describe the state or quality of a variant call:
LOW_FREQUENCY
- Indicates that the variant call has a frequency below the minimum threshold.LOW_COVERAGE
- Indicates that the variant call has a coverage below the minimum threshold.MISSING_UPSTREAM_DELETION
- Indicates that the variant call is missing due to an upstream deletion.REFERENCE_CALL
- Indicates that the variant call corresponds to the reference allele.PASS
- Indicates that the variant call has passed all filters.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicates that the variant call has a coverage below the minimum threshold.Indicates that the variant call has a frequency below the minimum threshold.Indicates that the variant call is declared missing due to an upstream deletion, but the upstream deletion is not present or was filtered.Indicates that the variant call has passed all filters.Indicates that the variant call corresponds to the reference allele.Indicates that the variant call is missing due to an upstream deletion. -
Method Summary
Modifier and TypeMethodDescriptionstatic VariantCall.Flag
Returns the enum constant of this class with the specified name.static VariantCall.Flag[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LOW_FREQUENCY
Indicates that the variant call has a frequency below the minimum threshold. -
LOW_COVERAGE
Indicates that the variant call has a coverage below the minimum threshold. -
MISSING_UPSTREAM_DELETION
Indicates that the variant call is declared missing due to an upstream deletion, but the upstream deletion is not present or was filtered. -
UPSTREAM_DELETION
Indicates that the variant call is missing due to an upstream deletion. -
REFERENCE_CALL
Indicates that the variant call corresponds to the reference allele. -
PASS
Indicates that the variant call has passed all filters.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-