Package picard.arrays.illumina
Enum Build37ExtendedIlluminaManifestRecord.Flag
- java.lang.Object
-
- java.lang.Enum<Build37ExtendedIlluminaManifestRecord.Flag>
-
- picard.arrays.illumina.Build37ExtendedIlluminaManifestRecord.Flag
-
- All Implemented Interfaces:
Serializable
,Comparable<Build37ExtendedIlluminaManifestRecord.Flag>
- Enclosing class:
- Build37ExtendedIlluminaManifestRecord
protected static enum Build37ExtendedIlluminaManifestRecord.Flag extends Enum<Build37ExtendedIlluminaManifestRecord.Flag>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DUPE
ILLUMINA_FLAGGED
Flagged by Illumina as a bad assayINDEL_CONFLICT
Both insertion and deletion sequence found in reference.INDEL_EXTENSION_ERROR
Deprecated.- but used in existing extended manifest files.INDEL_NOT_FOUND
Neither insertion nor deletion sequence found in reference.INDEL_SEQ_MISMATCH
Deprecated.- but used in existing extended manifest files.LIFTOVER_FAILED
PASS
PROBE_SEQUENCE_MISMATCH
Probe sequence not found in reference.PROBE_SEQUENCE_STRAND_INVALID
Probe sequence is on unexpected strand.SEQUENCE_MISMATCH
Deprecated.- but used in existing extended manifest files.SOURCE_SEQUENCE_INVALID
Source sequence is invalid (contains invalid character).SOURCE_SEQUENCE_MISMATCH
Source sequenc not found in reference.SOURCE_SEQUENCE_STRAND_INVALID
Source sequence is on unexpected strand.UNSUPPORTED_GENOME_BUILD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Build37ExtendedIlluminaManifestRecord.Flag
valueOf(String name)
Returns the enum constant of this type with the specified name.static Build37ExtendedIlluminaManifestRecord.Flag[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ILLUMINA_FLAGGED
public static final Build37ExtendedIlluminaManifestRecord.Flag ILLUMINA_FLAGGED
Flagged by Illumina as a bad assay
-
LIFTOVER_FAILED
public static final Build37ExtendedIlluminaManifestRecord.Flag LIFTOVER_FAILED
-
UNSUPPORTED_GENOME_BUILD
public static final Build37ExtendedIlluminaManifestRecord.Flag UNSUPPORTED_GENOME_BUILD
-
PROBE_SEQUENCE_MISMATCH
public static final Build37ExtendedIlluminaManifestRecord.Flag PROBE_SEQUENCE_MISMATCH
Probe sequence not found in reference.
-
PROBE_SEQUENCE_STRAND_INVALID
public static final Build37ExtendedIlluminaManifestRecord.Flag PROBE_SEQUENCE_STRAND_INVALID
Probe sequence is on unexpected strand.
-
SOURCE_SEQUENCE_MISMATCH
public static final Build37ExtendedIlluminaManifestRecord.Flag SOURCE_SEQUENCE_MISMATCH
Source sequenc not found in reference.
-
SOURCE_SEQUENCE_INVALID
public static final Build37ExtendedIlluminaManifestRecord.Flag SOURCE_SEQUENCE_INVALID
Source sequence is invalid (contains invalid character).
-
SOURCE_SEQUENCE_STRAND_INVALID
public static final Build37ExtendedIlluminaManifestRecord.Flag SOURCE_SEQUENCE_STRAND_INVALID
Source sequence is on unexpected strand.
-
INDEL_NOT_FOUND
public static final Build37ExtendedIlluminaManifestRecord.Flag INDEL_NOT_FOUND
Neither insertion nor deletion sequence found in reference.
-
INDEL_CONFLICT
public static final Build37ExtendedIlluminaManifestRecord.Flag INDEL_CONFLICT
Both insertion and deletion sequence found in reference.
-
SEQUENCE_MISMATCH
@Deprecated public static final Build37ExtendedIlluminaManifestRecord.Flag SEQUENCE_MISMATCH
Deprecated.- but used in existing extended manifest files.
-
INDEL_SEQ_MISMATCH
@Deprecated public static final Build37ExtendedIlluminaManifestRecord.Flag INDEL_SEQ_MISMATCH
Deprecated.- but used in existing extended manifest files.
-
INDEL_EXTENSION_ERROR
@Deprecated public static final Build37ExtendedIlluminaManifestRecord.Flag INDEL_EXTENSION_ERROR
Deprecated.- but used in existing extended manifest files.
-
DUPE
public static final Build37ExtendedIlluminaManifestRecord.Flag DUPE
-
PASS
public static final Build37ExtendedIlluminaManifestRecord.Flag PASS
-
-
Method Detail
-
values
public static Build37ExtendedIlluminaManifestRecord.Flag[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Build37ExtendedIlluminaManifestRecord.Flag c : Build37ExtendedIlluminaManifestRecord.Flag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Build37ExtendedIlluminaManifestRecord.Flag valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-