public enum Type extends Enum<Type>
SETHNER
, MutationFinder currently extracts only SubstitutionsEnum Constant and Description |
---|
CONVERSION
Gene conversion
|
COPY_NUMBER_VARIATION
Introduced by the "cnv" module to find CNVs of genes.
|
DBSNP_MENTION
Literal dbSNP Mention (e.g., rs1232)
|
DELETION
Deletion of a amino-acid or nucleotide (e.g., p.F123del or DeltaF508)
|
DELETION_INSERTION
Mutation resulting in both insertion and deletion (e.g., p.Val134_K144delinsE)
|
DUPLICATION
Duplication of genetic material (e.g., c.123dupC)
|
FRAMESHIFT
Mutation which leads to a shifted reading frame and therefore to a completely different translation product (e.g., R123fs or p.N310fs)
|
INSERTION
Addition of a nucleotide into the DNA which can can lead to added amino acids (e.g., 123insA)
|
INVERSION
Inversion of DNA fragment (e.g., c12_15inv)
|
OTHER
Fall back mutation-type
|
SHORT_SEQUENCE_REPEAT
Short reperat of the same fragment (e.g., c1210-12T[9])
|
SILENT
Used to specify silent mutations, with no impact on protein sequence (e.g., p.Arg12=)
|
STRUCTURAL_ABNORMALITY
Wide range mutations.
|
SUBSTITUTION
Replacement of wildtype by mutation
|
TRANSLOCATION |
Modifier and Type | Method and Description |
---|---|
static Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Type SUBSTITUTION
public static final Type DBSNP_MENTION
public static final Type DELETION
public static final Type STRUCTURAL_ABNORMALITY
public static final Type FRAMESHIFT
public static final Type INSERTION
public static final Type DUPLICATION
public static final Type DELETION_INSERTION
public static final Type SHORT_SEQUENCE_REPEAT
public static final Type SILENT
public static final Type INVERSION
public static final Type CONVERSION
public static final Type TRANSLOCATION
public static final Type COPY_NUMBER_VARIATION
public static final Type OTHER
public static Type[] values()
for (Type c : Type.values()) System.out.println(c);
public static Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2016. All rights reserved.