public static enum GencodeGtfFeature.RemapStatus extends java.lang.Enum<GencodeGtfFeature.RemapStatus>
Enum Constant and Description |
---|
AUTOMATIC_GENE
Gene is from an automatic process (ENSEMBL source).
|
AUTOMATIC_SMALL_NCRNA_GENE
Gene is from a small, automatic (ENSEMBL source) non-coding RNA.
|
DELETED
Gene or transcript did not map to the target genome.
|
FULL_CONTIG
Gene or transcript completely mapped to the target genome with all features intact.
|
FULL_FRAGMENT
Gene or transcript completely mapped to the target genome with insertions in some features.
|
GENE_CONFLICT
Transcripts in the gene mapped to multiple locations.
|
GENE_SIZE_CHANGE
Transcripts caused gene length to change by more than 50%.
|
NO_SEQ_MAP
The source sequence is not in the assembly alignments.
|
PARTIAL
Gene or transcript partially mapped to the target genome.
|
PSEUDOGENE
Pseudogene annotations (excluding polymorphic).
|
Modifier and Type | Method and Description |
---|---|
static GencodeGtfFeature.RemapStatus |
getEnum(java.lang.String s) |
java.lang.String |
toString() |
static GencodeGtfFeature.RemapStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GencodeGtfFeature.RemapStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GencodeGtfFeature.RemapStatus FULL_CONTIG
public static final GencodeGtfFeature.RemapStatus FULL_FRAGMENT
public static final GencodeGtfFeature.RemapStatus PARTIAL
public static final GencodeGtfFeature.RemapStatus DELETED
public static final GencodeGtfFeature.RemapStatus NO_SEQ_MAP
public static final GencodeGtfFeature.RemapStatus GENE_CONFLICT
public static final GencodeGtfFeature.RemapStatus GENE_SIZE_CHANGE
public static final GencodeGtfFeature.RemapStatus AUTOMATIC_SMALL_NCRNA_GENE
public static final GencodeGtfFeature.RemapStatus AUTOMATIC_GENE
public static final GencodeGtfFeature.RemapStatus PSEUDOGENE
public static GencodeGtfFeature.RemapStatus[] values()
for (GencodeGtfFeature.RemapStatus c : GencodeGtfFeature.RemapStatus.values()) System.out.println(c);
public static GencodeGtfFeature.RemapStatus 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<GencodeGtfFeature.RemapStatus>
public static GencodeGtfFeature.RemapStatus getEnum(java.lang.String s)