Enum Constant Summary
Enum Constants
Indicates value was (originally) an integer count of something, such as RNAseq reads.
This is effectively the opposite of "log-transformed" (or any other transformation)
Data is log-transformed with a natural log.
Data is log-transformed with a base 10 log.
Data is log-transformed as per ln X + 1
Data is log-transformed with a base 2 log.
Data is log-transformed, but the base is unknown.
Constrained to be a value between 0 and 100.
Constrained to be a value between 0 and 1.
An unscaled measurement is one that has no inherent scale; e.g., a categorical value.
Method Summary
All Methods Static Methods Concrete Methods
Returns the enum constant of this type with the specified name.
Returns an array containing the constants of this enum type, in
the order they are declared.
Enum Constant Details
LINEAR
This is effectively the opposite of "log-transformed" (or any other transformation)
LN
Data is log-transformed with a natural log.
See Also:
LOG2
Data is log-transformed with a base 2 log.
LOG10
Data is log-transformed with a base 10 log.
See Also:
LOG1P
Data is log-transformed as per ln X + 1
See Also:
LOGBASEUNKNOWN
Data is log-transformed, but the base is unknown.
FOLDCHANGE
Deprecated.
Deprecated, do not use.
UNSCALED
An unscaled measurement is one that has no inherent scale; e.g., a categorical value.
PERCENT1
Constrained to be a value between 0 and 1.
PERCENT
Constrained to be a value between 0 and 100.
COUNT
Indicates value was (originally) an integer count of something, such as RNAseq reads. This does not mean the
value is necessarily an integer.
OTHER
Other scale type. Can be used if unknown.
Method Details
values
Returns an array containing the constants of this enum type, in
the order they are declared.
Returns:
an array containing the constants of this enum type, in the order they are declared
valueOf
Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (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 type has no constant with the specified name
NullPointerException
- if the argument is null