Enum SubunitClustererMethod

java.lang.Object
java.lang.Enum<SubunitClustererMethod>
org.biojava.nbio.structure.cluster.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
  • Enum Constant Details

    • SEQUENCE

      public static final SubunitClustererMethod SEQUENCE
      The SEQUENCE clustering method uses the residue sequence of the Subunit to calculate sequence alignments.

      Two Subunit with sufficient sequence identity and coverage are clustered together.

    • STRUCTURE

      public static final SubunitClustererMethod STRUCTURE
      The STRUCTURE clustering method uses the residue sequence and the coordinates of its Atom representatives of the Subunit to calculate sequence and structure alignments.

      Two Subunit with sufficient structural similarity and coverage are clustered together.

    • SEQUENCE_STRUCTURE

      The SEQUENCE_STRUCTURE clustering method uses the residue sequence and the coordinates of its Atom representatives of the Subunit to calculate sequence and structure alignments.

      Two Subunit with sufficient sequence identity and coverage are clustered together. Additionally, two Subunit with sufficient structural similarity and coverage are clustered together. If the sequence and structure clustering differ, the cluster contains pseudosymmetry (by definition).

    • MANUAL

      public static final SubunitClustererMethod MANUAL
      Some other method was used when clustering.
  • Method Details

    • values

      public static SubunitClustererMethod[] 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

      public static SubunitClustererMethod valueOf(String name)
      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