Enum SubunitClustererMethod
- All Implemented Interfaces:
Serializable
,Comparable<SubunitClustererMethod>
,java.lang.constant.Constable
The SubunitClustererMethod ennummerates all methods that can be used to
cluster
Subunit
in the SubunitCluster
.- Since:
- 5.0.0
- Author:
- Aleix Lafita
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionSome other method was used when clustering.The SEQUENCE clustering method uses the residue sequence of theSubunit
to calculate sequence alignments.The SEQUENCE_STRUCTURE clustering method uses the residue sequence and the coordinates of its Atom representatives of theSubunit
to calculate sequence and structure alignments.The STRUCTURE clustering method uses the residue sequence and the coordinates of its Atom representatives of theSubunit
to calculate sequence and structure alignments. -
Method Summary
Modifier and TypeMethodDescriptionstatic SubunitClustererMethod
Returns the enum constant of this type with the specified name.static SubunitClustererMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SEQUENCE
-
STRUCTURE
-
SEQUENCE_STRUCTURE
The SEQUENCE_STRUCTURE clustering method uses the residue sequence and the coordinates of its Atom representatives of theSubunit
to calculate sequence and structure alignments.Two
Subunit
with sufficient sequence identity and coverage are clustered together. Additionally, twoSubunit
with sufficient structural similarity and coverage are clustered together. If the sequence and structure clustering differ, the cluster contains pseudosymmetry (by definition). -
MANUAL
Some other method was used when clustering.
-
-
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 nameNullPointerException
- if the argument is null
-