Enum Constant and Description |
---|
RESULT_NO_ALIGNMENT
Output the conservation scores and the alignment
The alignment is saved in FASTA format prior to the conservation scores.
|
RESULT_WITH_ALIGNMENT
Output just the conservation scores, but no alignment in the following
format:
#Method name scores For example: |
Modifier and Type | Method and Description |
---|---|
static Format |
getFormat(java.lang.String format)
Converts from String format name to enum Format
|
static Format |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Format RESULT_WITH_ALIGNMENT
#SANDER 0 0.345 0.543 0.667 1 0.2
#SMERFS 1 1 1 1 1 1 1 1 1 1
public static final Format RESULT_NO_ALIGNMENT
public static Format[] values()
for (Format c : Format.values()) System.out.println(c);
public static Format 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 static Format getFormat(java.lang.String format)
format
- the format to parse