Uses of Class
org.biojava3.genome.parsers.gff.Location

Packages that use Location
Package
Description
 
  • Uses of Location in org.biojava3.genome.parsers.gff

    Modifier and Type
    Method
    Description
    FeatureList.bounds()
    The union of all locations of all features in this list, mapped to the positive strand.
    Location.downstream(int length)
    Return the adjacent location of specified length directly downstream of this location.
    static Location
    Location.fromBio(int start, int end, char strand)
    Create location from "biocoordinates", as in GFF file.
    static Location
    Location.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.
    Location.intersection(Location other)
    Return the intersection, or null if no overlap.
    Feature.location()
    Get location of feature.
    FeatureI.location()
    Get the location of the feature.
    Location.minus()
    Return location that is in same position on negative strand.
    LocIterator.next()
    Get next window of default size, then increment position by default amount.
    LocIterator.next(int windowSize, int increment)
    Get next window of specified size, then increment position by specified amount.
    Location.opposite()
    Return location that is in same position on opposite strand.
    Location.plus()
    Return location that is in same position on plus strand.
    Location.prefix(int position)
    The part of this location before the specified position.
    Location.prefix(Location other)
    The part of this location before the other location (not inclusive).
    LocIterator.remainder()
    Get portion of bounding location that has not yet been retrieved by next() method.
    Location.suffix(int position)
    The part of this location after the specified position.
    Location.suffix(Location other)
    The part of this location after the other location (not inclusive).
    Location.union(Location other)
    Return the union.
    Location.upstream(int length)
    Return the adjacent location of specified length directly upstream of this location.
    Methods in org.biojava3.genome.parsers.gff that return types with arguments of type Location
    Modifier and Type
    Method
    Description
    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.biojava3.genome.parsers.gff with parameters of type Location
    Modifier and Type
    Method
    Description
    boolean
    Location.contains(Location other)
    Check if this location contains the other.
    int
    Location.distance(Location other)
    Return distance between this location and the other location.
    boolean
    Location.endsAfter(Location other)
    Check if this location ends after other location ends.
    boolean
    Location.endsBefore(Location other)
    Check if this location ends before other location ends.
    boolean
    Location.equals(Location other)
    Compare locations for equality.
    Location.intersection(Location other)
    Return the intersection, or null if no overlap.
    boolean
    Location.isAfter(Location other)
    Check if this location is entirely after the other location (no overlap).
    boolean
    Location.isBefore(Location other)
    Check if this location is entirely before other location (no overlap).
    boolean
    Location.isSameStrand(Location other)
    Check if this location is on same strand as other location.
    FeatureList.omitOverlapping(String seqname, Location location, boolean useBothStrands)
    Create a list of all features that do not overlap the specified location on the specified sequence.
    boolean
    Location.overlaps(Location other)
    Check if this location and other location overlap.
    double
    Location.percentOverlap(Location other)
    Return percent overlap of two locations.
    Location.prefix(Location other)
    The part of this location before the other location (not inclusive).
    FeatureList.selectOverlapping(String seqname, Location location, boolean useBothStrands)
    Create a list of all features that overlap the specified location on the specified sequence.
    boolean
    Location.startsAfter(Location other)
    Check if this location starts after the other location starts.
    boolean
    Location.startsBefore(Location other)
    Check if this location starts before other location starts.
    Location.suffix(Location other)
    The part of this location after the other location (not inclusive).
    Location.union(Location other)
    Return the union.
    Constructors in org.biojava3.genome.parsers.gff with parameters of type Location
    Modifier
    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).
     
    Clone other location.
     
    LocIterator(Location bounds, int windowSize, int increment)
    Construct an iterator that slides a window over a Location.