Uses of Enum
org.biojava.nbio.aaproperties.profeat.IProfeatProperties.DISTRIBUTION
Package
Description
Set of classes that responsible for providing APIs access to generate some PROFEAT properties of protein sequences.
-
Uses of IProfeatProperties.DISTRIBUTION in org.biojava.nbio.aaproperties.profeat
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static IProfeatProperties.DISTRIBUTION[]
IProfeatProperties.DISTRIBUTION.values()
Returns an array containing the constants of this enum type, in the order they are declared.Modifier and TypeMethodDescriptionMap
<IProfeatProperties.ATTRIBUTE, Map<IProfeatProperties.GROUPING, Map<IProfeatProperties.DISTRIBUTION, Double>>> IProfeatProperties.getDistributionPosition
(ProteinSequence sequence) IProfeatProperties.getDistributionPosition
(ProteinSequence sequence, IProfeatProperties.ATTRIBUTE attribute) IProfeatProperties.getDistributionPosition
(ProteinSequence sequence, IProfeatProperties.ATTRIBUTE attribute, IProfeatProperties.GROUPING group) static Map
<IProfeatProperties.ATTRIBUTE, Map<IProfeatProperties.GROUPING, Map<IProfeatProperties.DISTRIBUTION, Double>>> ProfeatProperties.getDistributionPosition
(String sequence) ProfeatProperties.getDistributionPosition
(String sequence, IProfeatProperties.ATTRIBUTE attribute) static Map
<IProfeatProperties.DISTRIBUTION, Double> ProfeatProperties.getDistributionPosition
(String sequence, IProfeatProperties.ATTRIBUTE attribute, IProfeatProperties.GROUPING group) static Map
<IProfeatProperties.ATTRIBUTE, Map<IProfeatProperties.GROUPING, Map<IProfeatProperties.DISTRIBUTION, Double>>> ProfeatProperties.getDistributionPosition
(ProteinSequence sequence) ProfeatProperties.getDistributionPosition
(ProteinSequence sequence, IProfeatProperties.ATTRIBUTE attribute) static Map
<IProfeatProperties.DISTRIBUTION, Double> ProfeatProperties.getDistributionPosition
(ProteinSequence sequence, IProfeatProperties.ATTRIBUTE attribute, IProfeatProperties.GROUPING group) Map
<IProfeatProperties.ATTRIBUTE, Map<IProfeatProperties.GROUPING, Map<IProfeatProperties.DISTRIBUTION, Double>>> ProfeatPropertiesImpl.getDistributionPosition
(ProteinSequence sequence) ProfeatPropertiesImpl.getDistributionPosition
(ProteinSequence sequence, IProfeatProperties.ATTRIBUTE attribute) ProfeatPropertiesImpl.getDistributionPosition
(ProteinSequence sequence, IProfeatProperties.ATTRIBUTE attribute, IProfeatProperties.GROUPING group) Modifier and TypeMethodDescriptiondouble
IProfeatProperties.getDistributionPosition
(ProteinSequence sequence, IProfeatProperties.ATTRIBUTE attribute, IProfeatProperties.GROUPING group, IProfeatProperties.DISTRIBUTION distribution) Computes and return the position with respect to the sequence where the given distribution of the grouping can be found.
Example: "1111122222"
For the above example,
position of the GROUPING.GROUP1 & DISTRIBUTION.FIRST = 0/10 (because the first occurrence of '1' is at position 0)
position of the GROUPING.GROUP1 & DISTRIBUTION.ALL = 4/10 (because all occurrences of '1' happens on and before position 4)static double
ProfeatProperties.getDistributionPosition
(String sequence, IProfeatProperties.ATTRIBUTE attribute, IProfeatProperties.GROUPING group, IProfeatProperties.DISTRIBUTION distribution) static double
ProfeatProperties.getDistributionPosition
(ProteinSequence sequence, IProfeatProperties.ATTRIBUTE attribute, IProfeatProperties.GROUPING group, IProfeatProperties.DISTRIBUTION distribution) An adaptor method which computes and return the position with respect to the sequence where the given distribution of the grouping can be found.
Example: "1111122222"
For the above example,
position of the GROUPING.GROUP1 & DISTRIBUTION.FIRST = 0/10 (because the first occurrence of '1' is at position 0)
position of the GROUPING.GROUP1 & DISTRIBUTION.ALL = 4/10 (because all occurrences of '1' happens on and before position 4)double
ProfeatPropertiesImpl.getDistributionPosition
(ProteinSequence sequence, IProfeatProperties.ATTRIBUTE attribute, IProfeatProperties.GROUPING group, IProfeatProperties.DISTRIBUTION distribution)