public static enum MotifDiscoverer.KindOfProfile extends Enum<MotifDiscoverer.KindOfProfile>
enum can be used to determine which kind of profile
should be returned.| Enum Constant and Description |
|---|
NORMALIZED_CONDITIONAL
The profile should return
\log P(seq,pos|component,class). |
UNNORMALIZED_CONDITIONAL
The profile should return
\log Q(seq,pos|component,class). |
UNNORMALIZED_JOINT
The profile should return
\log Q(seq,pos,component|class). |
| Modifier and Type | Method and Description |
|---|---|
static MotifDiscoverer.KindOfProfile |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MotifDiscoverer.KindOfProfile[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MotifDiscoverer.KindOfProfile UNNORMALIZED_JOINT
\log Q(seq,pos,component|class).public static final MotifDiscoverer.KindOfProfile NORMALIZED_CONDITIONAL
\log P(seq,pos|component,class).public static final MotifDiscoverer.KindOfProfile UNNORMALIZED_CONDITIONAL
\log Q(seq,pos|component,class).public static MotifDiscoverer.KindOfProfile[] values()
for (MotifDiscoverer.KindOfProfile c : MotifDiscoverer.KindOfProfile.values()) System.out.println(c);
public static MotifDiscoverer.KindOfProfile 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 null