Uses of Class
org.biopax.paxtools.query.wrapperL3.Filter
Packages that use Filter
Package
Description
Graph-theoretic querying module in Paxtools is used for identifying paths between molecules or identifying other
molecules that is reachable through some specific paths using the BioPAX data model.
This package contains TODO annotate!
This package contains TODO annotate!
-
Uses of Filter in org.biopax.paxtools.query
Methods in org.biopax.paxtools.query with parameters of type FilterModifier and TypeMethodDescriptionstatic Set<BioPAXElement>QueryExecuter.runCommonStream(Set<BioPAXElement> sourceSet, Model model, Direction direction, int limit, Filter... filters) Gets the elements in the common upstream or downstream of the seedstatic Set<BioPAXElement>QueryExecuter.runCommonStreamMultiSet(Set<Set<BioPAXElement>> sourceSets, Model model, Direction direction, int limit, Filter... filters) Gets the elements in the common upstream or downstream of the seedstatic Set<BioPAXElement>QueryExecuter.runCommonStreamWithPOI(Set<BioPAXElement> sourceSet, Model model, Direction direction, int limit, Filter... filters) First finds the common stream, then completes it with the paths between seed and common stream.static Set<BioPAXElement>QueryExecuter.runCommonStreamWithPOIMultiSet(Set<Set<BioPAXElement>> sourceSets, Model model, Direction direction, int limit, Filter... filters) First finds the common stream, then completes it with the paths between seed and common stream.static Set<BioPAXElement>QueryExecuter.runGOI(Set<BioPAXElement> sourceSet, Model model, int limit, Filter... filters) Deprecated.Use runPathsBetween insteadstatic Set<BioPAXElement>QueryExecuter.runNeighborhood(Set<BioPAXElement> sourceSet, Model model, int limit, Direction direction, Filter... filters) Gets neighborhood of the source set.static Set<BioPAXElement>QueryExecuter.runNeighborhoodMultiSet(Set<Set<BioPAXElement>> sourceSets, Model model, int limit, Direction direction, Filter... filters) Gets neighborhood of the source set.static Set<BioPAXElement>QueryExecuter.runPathsBetween(Set<BioPAXElement> sourceSet, Model model, int limit, Filter... filters) Gets the graph constructed by the paths between the given seed nodes.static Set<BioPAXElement>QueryExecuter.runPathsBetweenMultiSet(Set<Set<BioPAXElement>> sourceSets, Model model, int limit, Filter... filters) Gets the graph constructed by the paths between the given seed nodes.static Set<BioPAXElement>QueryExecuter.runPathsFromTo(Set<BioPAXElement> sourceSet, Set<BioPAXElement> targetSet, Model model, LimitType limitType, int limit, Filter... filters) Gets paths the graph composed of the paths from a source node, and ends at a target node.static Set<BioPAXElement>QueryExecuter.runPathsFromToMultiSet(Set<Set<BioPAXElement>> sourceSets, Set<Set<BioPAXElement>> targetSets, Model model, LimitType limitType, int limit, Filter... filters) Gets paths the graph composed of the paths from a source node, and ends at a target node. -
Uses of Filter in org.biopax.paxtools.query.wrapperL3
Subclasses of Filter in org.biopax.paxtools.query.wrapperL3Modifier and TypeClassDescriptionclassFilter by data source.classFilter by organism.classThis is the base class for filters that are filtering based on values of specific fields of the objects and their related objects.classFilters out ubiquitous entities, whose IDs are supplied by user.Fields in org.biopax.paxtools.query.wrapperL3 with type parameters of type FilterConstructors in org.biopax.paxtools.query.wrapperL3 with parameters of type Filter -
Uses of Filter in org.biopax.paxtools.query.wrapperL3undirected
Fields in org.biopax.paxtools.query.wrapperL3undirected with type parameters of type FilterConstructors in org.biopax.paxtools.query.wrapperL3undirected with parameters of type FilterModifierConstructorDescriptionGraphL3Undirected(Model model, Filter... filters) Constructor with the model and the IDs of the ubiquitous molecules.