Uses of Class
org.biojava.nbio.genome.parsers.gff.Location
- 
Packages that use Location Package Description org.biojava.nbio.genome.parsers.gff  - 
- 
Uses of Location in org.biojava.nbio.genome.parsers.gff
Methods in org.biojava.nbio.genome.parsers.gff that return Location Modifier and Type Method Description LocationFeatureList. bounds()The union of all locations of all features in this list, mapped to the positive strand.LocationLocation. downstream(int length)Return the adjacent location of specified length directly downstream of this location.static LocationLocation. fromBio(int start, int end, char strand)Create location from "biocoordinates", as in GFF file.static LocationLocation. fromBioExt(int start, int length, char strand, int totalLength)Create a location from MAF file coordinates, which represent negative strand locations as the distance from the end of the sequence.LocationLocation. intersection(Location other)Return the intersection, or null if no overlap.LocationFeature. location()Get location of feature.LocationFeatureI. location()Get the location of the feature.LocationLocation. minus()Return location that is in same position on negative strand.LocationLocIterator. next()Get next window of default size, then increment position by default amount.LocationLocIterator. next(int windowSize, int increment)Get next window of specified size, then increment position by specified amount.LocationLocation. opposite()Return location that is in same position on opposite strand.LocationLocation. plus()Return location that is in same position on plus strand.LocationLocation. prefix(int position)The part of this location before the specified position.LocationLocation. prefix(Location other)The part of this location before the other location (not inclusive).LocationLocIterator. remainder()Get portion of bounding location that has not yet been retrieved by next() method.LocationLocation. suffix(int position)The part of this location after the specified position.LocationLocation. suffix(Location other)The part of this location after the other location (not inclusive).LocationLocation. union(Location other)Return the union.LocationLocation. upstream(int length)Return the adjacent location of specified length directly upstream of this location.Methods in org.biojava.nbio.genome.parsers.gff that return types with arguments of type Location Modifier and Type Method Description Iterable<Location>Location. window(int windowSize, int increment)Enable a "sliding window" iteration over a location to use with Java's "for" loop construct.Methods in org.biojava.nbio.genome.parsers.gff with parameters of type Location Modifier and Type Method Description booleanLocation. contains(Location other)Check if this location contains the other.intLocation. distance(Location other)Return distance between this location and the other location.booleanLocation. endsAfter(Location other)Check if this location ends after other location ends.booleanLocation. endsBefore(Location other)Check if this location ends before other location ends.LocationLocation. intersection(Location other)Return the intersection, or null if no overlap.booleanLocation. isAfter(Location other)Check if this location is entirely after the other location (no overlap).booleanLocation. isBefore(Location other)Check if this location is entirely before other location (no overlap).booleanLocation. isSameStrand(Location other)Check if this location is on same strand as other location.FeatureListFeatureList. omitOverlapping(String seqname, Location location, boolean useBothStrands)Create a list of all features that do not overlap the specified location on the specified sequence.booleanLocation. overlaps(Location other)Check if this location and other location overlap.doubleLocation. percentOverlap(Location other)Return percent overlap of two locations.LocationLocation. prefix(Location other)The part of this location before the other location (not inclusive).FeatureListFeatureList. selectOverlapping(String seqname, Location location, boolean useBothStrands)Create a list of all features that overlap the specified location on the specified sequence.booleanLocation. startsAfter(Location other)Check if this location starts after the other location starts.booleanLocation. startsBefore(Location other)Check if this location starts before other location starts.LocationLocation. suffix(Location other)The part of this location after the other location (not inclusive).LocationLocation. union(Location other)Return the union.Constructors in org.biojava.nbio.genome.parsers.gff with parameters of type Location Constructor Description Feature(String seqname, String source, String type, Location location, Double score, int frame, String attributes)Construct a new Feature from raw data (usually a GFF row).Location(Location other)Clone other location.LocIterator(Location bounds, int windowSize, int increment)Construct an iterator that slides a window over a Location. 
 -