Uses of Interface
org.biojava.bio.seq.FeatureFilter
-
Packages that use FeatureFilter Package Description org.biojava.bio.program.gff GFF manipulation.org.biojava.bio.seq Classes and interfaces for defining biological sequences and informatics objects.org.biojava.bio.seq.db Collections of biological sequence data.org.biojava.bio.seq.distributed Sequences and SequenceDBs which are composed from data taken from a number of data sources.org.biojava.bio.seq.filter org.biojava.bio.seq.impl Standard in-memory implementations ofSequenceandFeature.org.biojava.bio.seq.io.filterxml Tools for reading and writing an XML representation of BioJava's FeatureFilter language.org.biojava.bio.seq.projection Code for projecting Feature objects and systematically altering their properties.org.biojavax.bio.db Interactions between biojavax objects and a DB.org.biojavax.bio.seq Rich implementations of Sequences, Locations and Features. -
-
Uses of FeatureFilter in org.biojava.bio.program.gff
Methods in org.biojava.bio.program.gff that return FeatureFilter Modifier and Type Method Description FeatureFilterSequencesAsGFF. getFeatureFilter()Return the current FeatureFilter.Methods in org.biojava.bio.program.gff with parameters of type FeatureFilter Modifier and Type Method Description voidSequencesAsGFF. setFeatureFilter(FeatureFilter filter)Replace the current FeatureFilter with filter. -
Uses of FeatureFilter in org.biojava.bio.seq
Subinterfaces of FeatureFilter in org.biojava.bio.seq Modifier and Type Interface Description interfaceOptimizableFilterThe interface for filters that can potentialy optimize themselves, and compare themselves with other filters.Classes in org.biojava.bio.seq that implement FeatureFilter Modifier and Type Class Description static classFeatureFilter.AndA filter that returns all features accepted by both child filter.static classFeatureFilter.AnnotationContainsRetrieve features that contain a given annotation, and that the set of values contains the value given.static classFeatureFilter.ByAncestorFilter by applying a nestedFeatureFilterto all ancestor features.static classFeatureFilter.ByAnnotationRetrieve features that contain a given annotation with a given value.static classFeatureFilter.ByAnnotationTypeA filter that returns all features that have an annotation bundle that is of a given annotation type.static classFeatureFilter.ByChildFilter by applying a nestedFeatureFilterto the child features.static classFeatureFilter.ByClassFilter which accepts only those filters which are an instance of a specific Java classstatic classFeatureFilter.ByComponentNameAccepts features which are ComponentFeatures and have acomponentSequenceNameproperty of the specified value.static classFeatureFilter.ByDescendantFilter by applying a nestedFeatureFilterto all descendant features.static classFeatureFilter.ByFeatureAccept only features which are equal to the specified featurestatic classFeatureFilter.ByPairwiseScoreByPairwiseScoreis used to filterSimilarityPairFeatures by their score.static classFeatureFilter.ByParentFilter by applying a nestedFeatureFilterto the parent feature.static classFeatureFilter.BySequenceNameAccept features that reside on a sequence with a particular name.static classFeatureFilter.BySourceConstruct one of these to filter features by source.static classFeatureFilter.ByTypeConstruct one of these to filter features by type.static classFeatureFilter.ContainedByLocationA filter that returns all features contained within a location.static classFeatureFilter.FrameFilterAccept features with a given reading frame.static classFeatureFilter.HasAnnotationRetrieve features that contain a given annotation with any value.static classFeatureFilter.NotA filter that returns all features not accepted by a child filter.static classFeatureFilter.OnlyChildrenAccepts features where all immediate children meet the supplied filter.static classFeatureFilter.OnlyDescendantsAccepts features where all descendants meet the supplied filter.static classFeatureFilter.OrA filter that returns all features accepted by at least one child filter.static classFeatureFilter.OverlapsLocationA filter that returns all features overlapping a location.static classFeatureFilter.ShadowContainedByLocationA filter that accepts all features whose shadow is contained by a specifiedLocation.static classFeatureFilter.ShadowOverlapsLocationA filter that accepts all features whose shadow overlaps a specifiedLocation.static classFeatureFilter.StrandFilterAccept features with a given strandedness.Fields in org.biojava.bio.seq declared as FeatureFilter Modifier and Type Field Description static FeatureFilterFeatureFilter. allAll features are selected by this filter.static FeatureFilterFeatureFilter. leafA filter which accepts features with no childrenstatic FeatureFilterFeatureFilter. noneNo features are selected by this filter.static FeatureFilterFeatureFilter. top_levelA filter which accepts only top-level Features.Methods in org.biojava.bio.seq that return FeatureFilter Modifier and Type Method Description static FeatureFilterFilterUtils. all()Return a filter which matches all features.static FeatureFilterFilterUtils. and(FeatureFilter[] filters)Constructs a new filter which matches the intersection of a set of filters.static FeatureFilterFilterUtils. and(FeatureFilter c1, FeatureFilter c2)Construct a new filter which matches the intersection of two other filters.static FeatureFilterFilterUtils. byAncestor(FeatureFilter ancestorFilter)Match features where at least one of the ancestors matches the specified filter.static FeatureFilterFilterUtils. byAnnotation(Object key, Object value)Match features where the annotation property namedkeyis equal tovalue.static FeatureFilterFilterUtils. byAnnotationType(Object key, Class valClass)Match features where the annotation property namedkeyis an instance ofvalClass.static FeatureFilterFilterUtils. byAnnotationType(AnnotationType type)Match features with annotations matching the specifiedAnnotationTypestatic FeatureFilterFilterUtils. byChild(FeatureFilter childFilter)Match features where at least one child feature matches the supplied filter.static FeatureFilterFilterUtils. byClass(Class clazz)Construct a filter which matches features which are assignable to the specified class or interface.static FeatureFilterFilterUtils. byComponentName(String compName)Construct a filter which matches all features which implement theComponentFeatureinterface and have acomponentNameproperty equal to the specified valuestatic FeatureFilterFilterUtils. byDescendant(FeatureFilter descFilter)Match features where at least one decendant feature -- possibly but not necessarily an immediate child -- matches the specified filter.static FeatureFilterFilterUtils. byFrame(FramedFeature.ReadingFrame frame)Construct a filter which matches FramedFeatures with the specified reading frame.static FeatureFilterFilterUtils. byPairwiseScore(double minScore, double maxScore)Match SeqSimilaritiy features with scores in the specified range.static FeatureFilterFilterUtils. byParent(FeatureFilter parentFilter)Match features where the parent feature matches the specified filter.static FeatureFilterFilterUtils. bySequenceName(String name)Match features attached to sequences with a specified name.static FeatureFilterFilterUtils. bySource(String source)Construct a filter which matches features with a specificsourcevalue.static FeatureFilterFilterUtils. byStrand(StrandedFeature.Strand strand)Match StrandedFeatures on the specified strand.static FeatureFilterFilterUtils. byType(String type)Construct a filter which matches features with a specifictypevalue.static FeatureFilterFilterUtils. containedByLocation(Location loc)Construct a filter which matches features with locations wholly contained by the specifiedLocation.FeatureFilterFeatureFilter.Not. getChild()FeatureFilterFeatureFilter.And. getChild1()FeatureFilterFeatureFilter.Or. getChild1()FeatureFilterFeatureFilter.And. getChild2()FeatureFilterFeatureFilter.Or. getChild2()FeatureFilterFeatureFilter.ByAncestor. getFilter()FeatureFilterFeatureFilter.ByChild. getFilter()FeatureFilterFeatureFilter.ByDescendant. getFilter()FeatureFilterFeatureFilter.ByParent. getFilter()FeatureFilterFeatureFilter.OnlyChildren. getFilter()FeatureFilterFeatureFilter.OnlyDescendants. getFilter()FeatureFilterFeatureHolder.EmptyFeatureHolder. getSchema()FeatureFilterFeatureHolder. getSchema()Return a schema-filter for thisFeatureHolder.FeatureFilterFeatureTypes.Type. getSchema()Get the schema for this type.FeatureFilterLazyFeatureHolder. getSchema()FeatureFilterMergeFeatureHolder. getSchema()FeatureFilterNewSimpleAssembly. getSchema()FeatureFilterSimpleAssembly. getSchema()FeatureFilterSimpleFeatureHolder. getSchema()static FeatureFilterFilterUtils. hasAnnotation(Object key)Match features where the propertykeyhas been defined as having some value, regardless of the exact value.static FeatureFilterFilterUtils. leaf()Return a filter which matches features with zero children.static FeatureFilterFilterUtils. none()Return a filter which matches no features.static FeatureFilterFilterUtils. not(FeatureFilter filter)Construct a new filter which is the negation offilter.static FeatureFilterFilterUtils. onlyChildren(FeatureFilter child)Construct a filter which matches features whose children all match the specified filter.static FeatureFilterFilterUtils. onlyDescendants(FeatureFilter desc)Construct a filter which matches features whose decendants all match the specified filter.static FeatureFilterFilterUtils. optimize(FeatureFilter filter)Attempts to reduce a FeatureFilter to an equivalent FeatureFilter with fewer terms.static FeatureFilterFilterUtils. or(FeatureFilter[] filters)Construct a new filter which matches the intersection of two filters.static FeatureFilterFilterUtils. or(FeatureFilter c1, FeatureFilter c2)Construct a new filter which matches the union of two filters.static FeatureFilterFilterUtils. overlapsLocation(Location loc)Construct a filter which matches features with locations contained by or overlapping the specifiedLocation.static FeatureFilterFilterUtils. shadowContainedByLocation(Location loc)Construct a filter which matches features with locations where the interval between theminandmaxpositions are contained by the specifiedLocation.static FeatureFilterFilterUtils. shadowOverlapsLocation(Location loc)Construct a filter which matches features with locations where the interval between theminandmaxpositions are contained by or overlap the specifiedLocation.static FeatureFilterFilterUtils. topLevel()Return a filter which matches all top-level features.FeatureFilterFilterUtils.DelegatingTransformer. transform(FeatureFilter ff)FeatureFilterFilterUtils.FilterTransformer. transform(FeatureFilter filter)Transform a filter, or return null if it can not be transformed.static FeatureFilterFilterUtils. transformFilter(FeatureFilter ff, FilterUtils.FilterTransformer trans)This is a general framework method for transforming one filter into another.Methods in org.biojava.bio.seq with parameters of type FeatureFilter Modifier and Type Method Description static FeatureFilterFilterUtils. and(FeatureFilter[] filters)Constructs a new filter which matches the intersection of a set of filters.static FeatureFilterFilterUtils. and(FeatureFilter c1, FeatureFilter c2)Construct a new filter which matches the intersection of two other filters.static booleanFilterUtils. areDisjoint(FeatureFilter a, FeatureFilter b)Determines if two queries can be proven to be disjoint.static booleanFilterUtils. areEqual(FeatureFilter f1, FeatureFilter f2)Decide if two feature filters accept exactly the same set of features.static booleanFilterUtils. areProperSubset(FeatureFilter sub, FeatureFilter sup)Determines if the set of features matched by sub can beprovento be a proper subset of the features matched by sup.static FeatureFilterFilterUtils. byAncestor(FeatureFilter ancestorFilter)Match features where at least one of the ancestors matches the specified filter.static FeatureFilterFilterUtils. byChild(FeatureFilter childFilter)Match features where at least one child feature matches the supplied filter.static FeatureFilterFilterUtils. byDescendant(FeatureFilter descFilter)Match features where at least one decendant feature -- possibly but not necessarily an immediate child -- matches the specified filter.static FeatureFilterFilterUtils. byParent(FeatureFilter parentFilter)Match features where the parent feature matches the specified filter.FeatureTypes.TypeFeatureTypes.RepositoryImpl. createType(String name, FeatureFilter schema, Set parents)Create a new type in this repository.static LocationFilterUtils. extractOverlappingLocation(FeatureFilter ff)Try to determine the minimal location which all features matching a given filter must overlap.FeatureHolderAbstractFeatureHolder. filter(FeatureFilter filter)FeatureHolderAbstractFeatureHolder. filter(FeatureFilter ff, boolean recurse)FeatureHolderFeatureHolder.EmptyFeatureHolder. filter(FeatureFilter fc)FeatureHolderFeatureHolder.EmptyFeatureHolder. filter(FeatureFilter fc, boolean recurse)FeatureHolderFeatureHolder. filter(FeatureFilter filter)Query this set of features using a suppliedFeatureFilter.FeatureHolderFeatureHolder. filter(FeatureFilter fc, boolean recurse)Return a new FeatureHolder that contains all of the children of this one that passed the filter fc.FeatureHolderLazyFeatureHolder. filter(FeatureFilter ff)FeatureHolderLazyFeatureHolder. filter(FeatureFilter ff, boolean recurse)FeatureHolderMergeFeatureHolder. filter(FeatureFilter ff, boolean recurse)When applied to a MergeFeatureHolder, this filters each child FeatureHolder independently.FeatureHolderNewSimpleAssembly. filter(FeatureFilter ff)FeatureHolderNewSimpleAssembly. filter(FeatureFilter ff, boolean recurse)FeatureHolderSimpleAssembly. filter(FeatureFilter ff)FeatureHolderSimpleAssembly. filter(FeatureFilter ff, boolean recurse)booleanFeatureFilter.ByAncestor. isDisjoint(FeatureFilter ff)booleanFeatureFilter.ByAnnotationType. isDisjoint(FeatureFilter filter)booleanFeatureFilter.ByChild. isDisjoint(FeatureFilter ff)booleanFeatureFilter.ByClass. isDisjoint(FeatureFilter feat)booleanFeatureFilter.ByComponentName. isDisjoint(FeatureFilter feat)booleanFeatureFilter.ByDescendant. isDisjoint(FeatureFilter ff)booleanFeatureFilter.ByFeature. isDisjoint(FeatureFilter ff)booleanFeatureFilter.ByPairwiseScore. isDisjoint(FeatureFilter filt)booleanFeatureFilter.ByParent. isDisjoint(FeatureFilter ff)booleanFeatureFilter.BySequenceName. isDisjoint(FeatureFilter filt)booleanFeatureFilter.BySource. isDisjoint(FeatureFilter filt)booleanFeatureFilter.ByType. isDisjoint(FeatureFilter filt)booleanFeatureFilter.ContainedByLocation. isDisjoint(FeatureFilter filt)booleanFeatureFilter.FrameFilter. isDisjoint(FeatureFilter filt)booleanFeatureFilter.OnlyChildren. isDisjoint(FeatureFilter ff)booleanFeatureFilter.OnlyDescendants. isDisjoint(FeatureFilter ff)booleanFeatureFilter.OverlapsLocation. isDisjoint(FeatureFilter filt)booleanFeatureFilter.ShadowContainedByLocation. isDisjoint(FeatureFilter filt)booleanFeatureFilter.ShadowOverlapsLocation. isDisjoint(FeatureFilter filt)booleanFeatureFilter.StrandFilter. isDisjoint(FeatureFilter filt)booleanOptimizableFilter. isDisjoint(FeatureFilter filt)Returns true if this filter is disjoint from filt - that is, there is no Feature that is accepted by both filters.booleanFeatureFilter.ByAncestor. isProperSubset(FeatureFilter ff)booleanFeatureFilter.ByAnnotationType. isProperSubset(FeatureFilter filter)booleanFeatureFilter.ByChild. isProperSubset(FeatureFilter ff)booleanFeatureFilter.ByClass. isProperSubset(FeatureFilter sup)booleanFeatureFilter.ByComponentName. isProperSubset(FeatureFilter sup)booleanFeatureFilter.ByDescendant. isProperSubset(FeatureFilter ff)booleanFeatureFilter.ByFeature. isProperSubset(FeatureFilter ff)booleanFeatureFilter.ByPairwiseScore. isProperSubset(FeatureFilter sup)booleanFeatureFilter.ByParent. isProperSubset(FeatureFilter ff)booleanFeatureFilter.BySequenceName. isProperSubset(FeatureFilter sup)booleanFeatureFilter.BySource. isProperSubset(FeatureFilter sup)booleanFeatureFilter.ByType. isProperSubset(FeatureFilter sup)booleanFeatureFilter.ContainedByLocation. isProperSubset(FeatureFilter sup)booleanFeatureFilter.FrameFilter. isProperSubset(FeatureFilter sup)booleanFeatureFilter.OnlyChildren. isProperSubset(FeatureFilter ff)booleanFeatureFilter.OnlyDescendants. isProperSubset(FeatureFilter ff)booleanFeatureFilter.OverlapsLocation. isProperSubset(FeatureFilter sup)booleanFeatureFilter.ShadowContainedByLocation. isProperSubset(FeatureFilter sup)booleanFeatureFilter.ShadowOverlapsLocation. isProperSubset(FeatureFilter sup)booleanFeatureFilter.StrandFilter. isProperSubset(FeatureFilter sup)booleanOptimizableFilter. isProperSubset(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.static FeatureFilterFilterUtils. not(FeatureFilter filter)Construct a new filter which is the negation offilter.static FeatureFilterFilterUtils. onlyChildren(FeatureFilter child)Construct a filter which matches features whose children all match the specified filter.static FeatureFilterFilterUtils. onlyDescendants(FeatureFilter desc)Construct a filter which matches features whose decendants all match the specified filter.static FeatureFilterFilterUtils. optimize(FeatureFilter filter)Attempts to reduce a FeatureFilter to an equivalent FeatureFilter with fewer terms.static FeatureFilterFilterUtils. or(FeatureFilter[] filters)Construct a new filter which matches the intersection of two filters.static FeatureFilterFilterUtils. or(FeatureFilter c1, FeatureFilter c2)Construct a new filter which matches the union of two filters.FeatureFilterFilterUtils.DelegatingTransformer. transform(FeatureFilter ff)FeatureFilterFilterUtils.FilterTransformer. transform(FeatureFilter filter)Transform a filter, or return null if it can not be transformed.static FeatureFilterFilterUtils. transformFilter(FeatureFilter ff, FilterUtils.FilterTransformer trans)This is a general framework method for transforming one filter into another.static ObjectFilterUtils. visitFilter(FeatureFilter filter, Visitor visitor)Applies a visitor to a filter, and returns the visitor's result or null.Constructors in org.biojava.bio.seq with parameters of type FeatureFilter Constructor Description And(FeatureFilter c1, FeatureFilter c2)ByAncestor(FeatureFilter ff)ByChild(FeatureFilter ff)ByDescendant(FeatureFilter ff)ByParent(FeatureFilter ff)LazyFeatureHolder(FeatureFilter schema)Construct a LazyFeatureHolder with the specified schemaNot(FeatureFilter child)OnlyChildren(FeatureFilter ff)OnlyDescendants(FeatureFilter ff)Or(FeatureFilter c1, FeatureFilter c2)SimpleFeatureHolder(FeatureFilter schema)Construct a new SimpleFeatureHolder with the specified schema. -
Uses of FeatureFilter in org.biojava.bio.seq.db
Methods in org.biojava.bio.seq.db with parameters of type FeatureFilter Modifier and Type Method Description FeatureHolderAbstractSequenceDB. filter(FeatureFilter ff)FeatureHolderSequenceDB. filter(FeatureFilter filter)Query features attached to all sequences in this database. -
Uses of FeatureFilter in org.biojava.bio.seq.distributed
Methods in org.biojava.bio.seq.distributed with parameters of type FeatureFilter Modifier and Type Method Description FeatureHolderDistDataSource. getFeatures(String id, FeatureFilter ff, boolean recurse)Get all features matching a FeatureFilter on a Sequence with an ID and recurse flats.FeatureHolderDistDataSource. getFeatures(FeatureFilter ff)Get all features matching a FeatureFilter provided by this DistDataSource.FeatureHolderGFFDataSource. getFeatures(String id, FeatureFilter ff, boolean recurse)FeatureHolderGFFDataSource. getFeatures(FeatureFilter ff)FeatureHolderSequenceDBDataSource. getFeatures(String id, FeatureFilter ff, boolean recurse)FeatureHolderSequenceDBDataSource. getFeatures(FeatureFilter ff) -
Uses of FeatureFilter in org.biojava.bio.seq.filter
-
Uses of FeatureFilter in org.biojava.bio.seq.impl
Methods in org.biojava.bio.seq.impl that return FeatureFilter Modifier and Type Method Description FeatureFilterDummySequence. getSchema()FeatureFilterLazyFilterFeatureHolder. getSchema()FeatureFilterSimpleFeature. getSchema()FeatureFilterSimpleGappedSequence. getSchema()FeatureFilterSimpleSequence. getSchema()FeatureFilterSubSequence. getSchema()FeatureFilterViewSequence. getSchema()Methods in org.biojava.bio.seq.impl with parameters of type FeatureFilter Modifier and Type Method Description FeatureHolderDummySequence. filter(FeatureFilter ff)FeatureHolderDummySequence. filter(FeatureFilter ff, boolean recurse)FeatureHolderLazyFilterFeatureHolder. filter(FeatureFilter ff)FeatureHolderLazyFilterFeatureHolder. filter(FeatureFilter ff, boolean recurse)FeatureHolderRevCompSequence. filter(FeatureFilter ff)FeatureHolderRevCompSequence. filter(FeatureFilter ff, boolean recurse)FeatureHolderSimpleFeature. filter(FeatureFilter ff)FeatureHolderSimpleFeature. filter(FeatureFilter ff, boolean recurse)FeatureHolderSimpleGappedSequence. filter(FeatureFilter ff)FeatureHolderSimpleGappedSequence. filter(FeatureFilter ff, boolean recurse)FeatureHolderSimpleSequence. filter(FeatureFilter filter)FeatureHolderSimpleSequence. filter(FeatureFilter ff, boolean recurse)FeatureHolderSubSequence. filter(FeatureFilter ff)FeatureHolderSubSequence. filter(FeatureFilter ff, boolean recurse)FeatureHolderViewSequence. filter(FeatureFilter fc)FeatureHolderViewSequence. filter(FeatureFilter fc, boolean recurse)Constructors in org.biojava.bio.seq.impl with parameters of type FeatureFilter Constructor Description LazyFilterFeatureHolder(FeatureHolder fh, FeatureFilter ff) -
Uses of FeatureFilter in org.biojava.bio.seq.io.filterxml
Methods in org.biojava.bio.seq.io.filterxml that return FeatureFilter Modifier and Type Method Description FeatureFilterXMLFilterHandler.FilterHandler. getFeatureFilter()Methods in org.biojava.bio.seq.io.filterxml with parameters of type FeatureFilter Modifier and Type Method Description voidXMLFilterWriter. addXMLFilterWriter(FeatureFilter ff, XMLFilterWriter.FilterWriter xfw)Add a writer for a singleton filter.voidXMLFilterWriter.FilterWriter. writeFilter(FeatureFilter ff, XMLWriter xw, XMLFilterWriter config)voidXMLFilterWriter. writeFilter(FeatureFilter ff, XMLWriter xw)Write a FeatureFilter to the supplied XMLWriter -
Uses of FeatureFilter in org.biojava.bio.seq.projection
Methods in org.biojava.bio.seq.projection that return FeatureFilter Modifier and Type Method Description FeatureFilterProjectedFeatureHolder. getSchema()FeatureFilterReparentContext. getSchema(Feature f)FeatureFilterProjectionContext. projectFilter(FeatureFilter filt)Transform a filter on unprojected features so that it applies to projected features.FeatureFilterReparentContext. projectFilter(FeatureFilter ff)FeatureFilterProjectionContext. revertFilter(FeatureFilter filt)Transform a filter on projected features so that it applies to unprojected features.FeatureFilterReparentContext. revertFilter(FeatureFilter ff)Methods in org.biojava.bio.seq.projection with parameters of type FeatureFilter Modifier and Type Method Description FeatureHolderProjectedFeature. filter(FeatureFilter ff)FeatureHolderProjectedFeature. filter(FeatureFilter ff, boolean recurse)FeatureHolderProjectedFeatureHolder. filter(FeatureFilter ff)FeatureHolderProjectedFeatureHolder. filter(FeatureFilter ff, boolean recurse)FeatureFilterProjectionContext. projectFilter(FeatureFilter filt)Transform a filter on unprojected features so that it applies to projected features.FeatureFilterReparentContext. projectFilter(FeatureFilter ff)FeatureFilterProjectionContext. revertFilter(FeatureFilter filt)Transform a filter on projected features so that it applies to unprojected features.FeatureFilterReparentContext. revertFilter(FeatureFilter ff) -
Uses of FeatureFilter in org.biojavax.bio.db
Methods in org.biojavax.bio.db with parameters of type FeatureFilter Modifier and Type Method Description FeatureHolderAbstractRichSequenceDB. filter(FeatureFilter ff) -
Uses of FeatureFilter in org.biojavax.bio.seq
Methods in org.biojavax.bio.seq that return FeatureFilter Modifier and Type Method Description FeatureFilterSimpleRichFeature. getSchema()Return a schema-filter for thisFeatureHolder.FeatureFilterThinRichSequence. getSchema()Return a schema-filter for thisFeatureHolder.Methods in org.biojavax.bio.seq with parameters of type FeatureFilter Modifier and Type Method Description FeatureHolderSimpleRichFeature. filter(FeatureFilter filter)Query this set of features using a suppliedFeatureFilter.FeatureHolderSimpleRichFeature. filter(FeatureFilter fc, boolean recurse)Return a new FeatureHolder that contains all of the children of this one that passed the filter fc.FeatureHolderThinRichSequence. filter(FeatureFilter filter)Query this set of features using a suppliedFeatureFilter.FeatureHolderThinRichSequence. filter(FeatureFilter fc, boolean recurse)Return a new FeatureHolder that contains all of the children of this one that passed the filter fc.
-