Package org.biojava.bio.seq
Class FeatureFilter.ByPairwiseScore
- java.lang.Object
-
- org.biojava.bio.seq.FeatureFilter.ByPairwiseScore
-
- All Implemented Interfaces:
Serializable,FeatureFilter,OptimizableFilter
- Enclosing interface:
- FeatureFilter
public static final class FeatureFilter.ByPairwiseScore extends Object implements OptimizableFilter
ByPairwiseScoreis used to filterSimilarityPairFeatures by their score. Features are accepted if their score falls between the filter's minimum and maximum values, inclusive. Features are rejected if they are notSimilarityPairFeatures. The minimum value accepted must be less than the maximum value.- Since:
- 1.3
- Author:
- Keith James
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.biojava.bio.seq.FeatureFilter
FeatureFilter.And, FeatureFilter.AnnotationContains, FeatureFilter.ByAncestor, FeatureFilter.ByAnnotation, FeatureFilter.ByAnnotationType, FeatureFilter.ByChild, FeatureFilter.ByClass, FeatureFilter.ByComponentName, FeatureFilter.ByDescendant, FeatureFilter.ByFeature, FeatureFilter.ByPairwiseScore, FeatureFilter.ByParent, FeatureFilter.BySequenceName, FeatureFilter.BySource, FeatureFilter.ByType, FeatureFilter.ContainedByLocation, FeatureFilter.FrameFilter, FeatureFilter.HasAnnotation, FeatureFilter.Not, FeatureFilter.OnlyChildren, FeatureFilter.OnlyDescendants, FeatureFilter.Or, FeatureFilter.OverlapsLocation, FeatureFilter.ShadowContainedByLocation, FeatureFilter.ShadowOverlapsLocation, FeatureFilter.StrandFilter
-
-
Field Summary
-
Fields inherited from interface org.biojava.bio.seq.FeatureFilter
all, leaf, none, top_level
-
-
Constructor Summary
Constructors Constructor Description ByPairwiseScore(double minScore, double maxScore)Creates a newByPairwiseScore.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanaccept(Feature f)Accept a Feature if it is an instance of SimilarityPairFeature and its score is <= filter's minimum score and >= filter's maximum score.booleanequals(Object o)doublegetMaxScore()getMaxScorereturns the maximum score accepted.doublegetMinScore()getMinScorereturns the minimum score accepted.inthashCode()booleanisDisjoint(FeatureFilter filt)Returns true if this filter is disjoint from filt - that is, there is no Feature that is accepted by both filters.booleanisProperSubset(FeatureFilter sup)Returns true if this filter is a proper subset of sup - that is, for every feature that matches this, it also matches sup.StringtoString()
-
-
-
Constructor Detail
-
ByPairwiseScore
public ByPairwiseScore(double minScore, double maxScore)
Creates a newByPairwiseScore.- Parameters:
minScore- adouble.maxScore- adouble.
-
-
Method Detail
-
accept
public boolean accept(Feature f)
Accept a Feature if it is an instance of SimilarityPairFeature and its score is <= filter's minimum score and >= filter's maximum score.- Specified by:
acceptin interfaceFeatureFilter- Parameters:
f- aFeature.- Returns:
- a
boolean.
-
getMinScore
public double getMinScore()
getMinScorereturns the minimum score accepted.- Returns:
- a
double.
-
getMaxScore
public double getMaxScore()
getMaxScorereturns the maximum score accepted.- Returns:
- a
double.
-
isProperSubset
public boolean isProperSubset(FeatureFilter sup)
Description copied from interface:OptimizableFilterReturns true if this filter is a proper subset of sup - that is, for every feature that matches this, it also matches sup. The empty filter is a proper subset of all filters. All filters are a proper subset of the all filter. All filters are proper subsets of themselves.- Specified by:
isProperSubsetin interfaceOptimizableFilter- Parameters:
sup- the potential super set- Returns:
- true if sup contains all features contained by this filter
-
isDisjoint
public boolean isDisjoint(FeatureFilter filt)
Description copied from interface:OptimizableFilterReturns true if this filter is disjoint from filt - that is, there is no Feature that is accepted by both filters. The empty filter is disjoint from all other filters. The all filter is disjoint from none.- Specified by:
isDisjointin interfaceOptimizableFilter
-
-