Enum Class TranscriptDatabase
- All Implemented Interfaces:
Serializable
,Comparable<TranscriptDatabase>
,Constable
Transcript database provides a collection of transcript definitions to use for functional variant annotation.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionTranscripts sourced from ENSEMBL.RefSeq transcripts, including curated transcripts (NM_
) as well as the transcripts that are based on gene predictions (XM_
).RefSeq with curated transcripts only (NM_
) and excluding the transcripts that are based on gene predictions (XM_
).Transcripts sourced from UCSC Genome Browser. -
Method Summary
Modifier and TypeMethodDescriptionstatic Optional<TranscriptDatabase>
toString()
static TranscriptDatabase
Returns the enum constant of this class with the specified name.static TranscriptDatabase[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UCSC
Transcripts sourced from UCSC Genome Browser. -
ENSEMBL
Transcripts sourced from ENSEMBL. -
REFSEQ
RefSeq transcripts, including curated transcripts (NM_
) as well as the transcripts that are based on gene predictions (XM_
). -
REFSEQ_CURATED
RefSeq with curated transcripts only (NM_
) and excluding the transcripts that are based on gene predictions (XM_
).
-
-
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
-
toString
- Overrides:
toString
in classEnum<TranscriptDatabase>
-
parse
-