public enum HtsContentType extends java.lang.Enum<HtsContentType>
ALIGNED_READS expose a
set interfaces for reading and writing aligned reads data). The content types and the packages
containing the the common interfaces that are defined for each type are:
HAPLOID_REFERENCE codecs, see the htsjdk.beta.plugin.hapref package ALIGNED_READS codecs, see the htsjdk.beta.plugin.reads package VARIANT_CONTEXTS codecs, see the htsjdk.beta.plugin.variants package FEATURES codecs, see the htsjdk.beta.plugin.features package
There can be many codecs for a given content type, each representing a different version of an
underlying format (i.e, ReadsFormats.SAM,
ReadsFormats.BAM or ReadsFormats.CRAM
for ALIGNED_READS) and or access mechanism or protocol (for example,
ReadsFormats.HTSGET_BAM).
| Enum Constant and Description |
|---|
ALIGNED_READS
Aligned reads content type (see
ReadsFormats for related formats) |
FEATURES
Features content type (see
htsjdk.beta.plugin.features for related formats) |
HAPLOID_REFERENCE
Haploid reference content type (see
HaploidReferenceFormats for related formats) |
VARIANT_CONTEXTS
Haploid reference content type (see
VariantsFormats for related formats) |
| Modifier and Type | Method and Description |
|---|---|
static HtsContentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HtsContentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HtsContentType HAPLOID_REFERENCE
HaploidReferenceFormats for related formats)public static final HtsContentType ALIGNED_READS
ReadsFormats for related formats)public static final HtsContentType VARIANT_CONTEXTS
VariantsFormats for related formats)public static final HtsContentType FEATURES
htsjdk.beta.plugin.features for related formats)public static HtsContentType[] values()
for (HtsContentType c : HtsContentType.values()) System.out.println(c);
public static HtsContentType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null