public static enum BwaMemIndex.Algorithm extends java.lang.Enum<BwaMemIndex.Algorithm>
| Enum Constant and Description |
|---|
AUTO
Chooses the most appropriate algorithm based on characteristic
of the reference.
|
IS
Linear-time algorithm for constructing suffix array.
|
RB2
The Ropebwt2 algorithm.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toBwaName()
The string name use by the Bwa command line to denote that algorithm.
|
static BwaMemIndex.Algorithm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BwaMemIndex.Algorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BwaMemIndex.Algorithm AUTO
public static final BwaMemIndex.Algorithm IS
public static final BwaMemIndex.Algorithm RB2
public static BwaMemIndex.Algorithm[] values()
for (BwaMemIndex.Algorithm c : BwaMemIndex.Algorithm.values()) System.out.println(c);
public static BwaMemIndex.Algorithm 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 toBwaName()
null and unique across algorithms.