Uses of Interface
org.biojava.nbio.core.sequence.location.template.Location
-
Packages that use Location Package Description org.biojava.nbio.core.alignment org.biojava.nbio.core.alignment.template org.biojava.nbio.core.sequence.location org.biojava.nbio.core.sequence.location.template -
-
Uses of Location in org.biojava.nbio.core.alignment
Methods in org.biojava.nbio.core.alignment that return Location Modifier and Type Method Description LocationSimpleAlignedSequence. getLocationInAlignment()Methods in org.biojava.nbio.core.alignment with parameters of type Location Modifier and Type Method Description ProfileView<S,C>SimpleProfile. getSubProfile(Location location) -
Uses of Location in org.biojava.nbio.core.alignment.template
Methods in org.biojava.nbio.core.alignment.template that return Location Modifier and Type Method Description LocationAlignedSequence. getLocationInAlignment()Methods in org.biojava.nbio.core.alignment.template with parameters of type Location Modifier and Type Method Description ProfileView<S,C>Profile. getSubProfile(Location location)Returns aProfileViewwindowed to contain only the givenLocation.voidMutableAlignedSequence. setLocationInAlignment(Location location)Sets the position of theAlignedSequenceto the givenLocation(start, gaps, end).voidMutableAlignedSequence. shiftAtAlignmentLocation(Location location, int shift)Slides a part of theAlignedSequence.voidMutableAlignedSequence. shiftAtSequenceLocation(Location location, int shift)Slides a part of theAlignedSequence. -
Uses of Location in org.biojava.nbio.core.sequence.location
Classes in org.biojava.nbio.core.sequence.location that implement Location Modifier and Type Class Description static classInsdcLocations.BondLocationUsed to represent bond locations equivalent to bond(7,8) or bond(7).static classInsdcLocations.GroupLocationDeprecated in INSDC yet still appears; equivalent to the order() directive except no 5' to 3' ordering is defined.static classInsdcLocations.OneOfLocationDeprecated in INSDC; refers to a set of locations of which one location could be valid e.g.static classInsdcLocations.OrderLocationUsed to describe a 5' to 3' ordering but no firm assurance it is correctclassSequenceLocation<S extends AbstractSequence<C>,C extends Compound>A location in a sequence that keeps a reference to its parent sequenceclassSimpleLocationVery basic implementation of the Location interface which defines a series of simple constructors.Methods in org.biojava.nbio.core.sequence.location that return Location Modifier and Type Method Description static LocationLocationHelper. circularLocation(int start, int end, Strand strand, int length)Converts a location which defines the outer bounds of a circular location and splits it into the required portions.static LocationLocationHelper. getMax(List<Location> locations)Scans through a list of locations to find the Location with the highest endstatic LocationLocationHelper. getMin(List<Location> locations)Scans through a list of locations to find the Location with the lowest startstatic LocationLocationHelper. location(int start, int end, Strand strand, int length)Returns a location object which unlike the location constructors allows you to input reverse coordinates and will convert these into the right location on the positive strand.static LocationLocationHelper. location(List<Location> subLocations)Used as a thin wrapper to theLocationHelper.location(java.util.List, java.lang.String)method to bring the given location list together as a join (the default type)static LocationLocationHelper. location(List<Location> subLocations, String type)Builds a location from a List of locations; this can be circular or linear joins.LocationInsdcParser. parse(String locationString)Main method for parsing a location from a String instanceMethod parameters in org.biojava.nbio.core.sequence.location with type arguments of type Location Modifier and Type Method Description static booleanLocationHelper. consistentAccessions(List<Location> subLocations)Scans a list of locations and returns true if all the given locations are linked to the same sequence.static booleanLocationHelper. detectCicular(List<Location> subLocations)Loops through the given list of locations and returns true if it looks like they represent a circular location.static PointLocationHelper. detectEnd(List<Location> subLocations, boolean isCircular)This will attempt to find what the last point is and returns that position.static PointLocationHelper. detectStart(List<Location> subLocations)Assumes that the first element is the start & clones itstatic StrandLocationHelper. detectStrand(List<Location> subLocations)Loops through the given list of locations and returns the consensus Strand class.static LocationLocationHelper. getMax(List<Location> locations)Scans through a list of locations to find the Location with the highest endstatic LocationLocationHelper. getMin(List<Location> locations)Scans through a list of locations to find the Location with the lowest startstatic LocationLocationHelper. location(List<Location> subLocations)Used as a thin wrapper to theLocationHelper.location(java.util.List, java.lang.String)method to bring the given location list together as a join (the default type)static LocationLocationHelper. location(List<Location> subLocations, String type)Builds a location from a List of locations; this can be circular or linear joins.Constructors in org.biojava.nbio.core.sequence.location with parameters of type Location Constructor Description BondLocation(Location... subLocations)GroupLocation(boolean isCircular, Location... subLocations)GroupLocation(int start, int end, Strand strand, Location... subLocations)GroupLocation(Location... subLocations)GroupLocation(Point start, Point end, Strand strand, boolean circular, Location... subLocations)GroupLocation(Point start, Point end, Strand strand, Location... subLocations)OneOfLocation(Location... locations)OrderLocation(int start, int end, Strand strand, Location... subLocations)OrderLocation(Location... subLocations)OrderLocation(Point start, Point end, Strand strand, boolean circular, Location... subLocations)OrderLocation(Point start, Point end, Strand strand, Location... subLocations)SimpleLocation(int start, int end, Strand strand, Location... subLocations)SimpleLocation(Point start, Point end, Strand strand, boolean circular, Location... subLocations)SimpleLocation(Point start, Point end, Strand strand, Location... subLocations)Constructor parameters in org.biojava.nbio.core.sequence.location with type arguments of type Location Constructor Description BondLocation(List<Location> subLocations)GroupLocation(int start, int end, Strand strand, List<Location> subLocations)GroupLocation(List<Location> subLocations)GroupLocation(Point start, Point end, Strand strand, boolean circular, List<Location> subLocations)GroupLocation(Point start, Point end, Strand strand, List<Location> subLocations)OneOfLocation(List<Location> locations)OrderLocation(int start, int end, Strand strand, List<Location> subLocations)OrderLocation(List<Location> subLocations)OrderLocation(Point start, Point end, Strand strand, boolean circular, List<Location> subLocations)OrderLocation(Point start, Point end, Strand strand, List<Location> subLocations)SequenceLocation(int start, int end, S sequence, Strand strand, boolean circular, List<Location> subLocations)SimpleLocation(int start, int end, Strand strand, List<Location> subLocations)SimpleLocation(Point start, Point end, Strand strand, boolean circular, boolean betweenBases, List<Location> subLocations)SimpleLocation(Point start, Point end, Strand strand, boolean circular, List<Location> subLocations)SimpleLocation(Point start, Point end, Strand strand, List<Location> subLocations) -
Uses of Location in org.biojava.nbio.core.sequence.location.template
Subinterfaces of Location in org.biojava.nbio.core.sequence.location.template Modifier and Type Interface Description interfaceAccesionedLocationA location which is bound to an AccessionID.Classes in org.biojava.nbio.core.sequence.location.template that implement Location Modifier and Type Class Description classAbstractLocationBase abstraction of a location which encodes for the majority of important features about a location such as the start, end and strandFields in org.biojava.nbio.core.sequence.location.template declared as Location Modifier and Type Field Description static LocationLocation. EMPTYBasic location which is set to the minimum and maximum bounds ofInteger.Methods in org.biojava.nbio.core.sequence.location.template that return Location Modifier and Type Method Description static LocationLocation.Tools. circularLocation(int start, int end, Strand strand, int length)Converts a location which defines the outer bounds of a circular location and splits it into the required portions.static LocationLocation.Tools. getMax(List<Location> locations)Scans through a list of locations to find the Location with the highest endstatic LocationLocation.Tools. getMin(List<Location> locations)Scans through a list of locations to find the Location with the lowest startstatic LocationLocation.Tools. location(int start, int end, Strand strand, int length)Returns a location object which unlike the location constructors allows you to input reverse coordinates and will convert these into the right location on the positive strand.static LocationLocation.Tools. location(List<Location> locations, Integer sequenceLength, String type)Used for building a location from a series of sub-locationsMethods in org.biojava.nbio.core.sequence.location.template that return types with arguments of type Location Modifier and Type Method Description List<Location>AbstractLocation. getRelevantSubLocations()Returns the normalised list of sub locations i.e.List<Location>Location. getRelevantSubLocations()An extension togetSubLocations()which returns sub-locations of sub-locations; this will continue until it runs out of those locations.List<Location>AbstractLocation. getSubLocations()List<Location>Location. getSubLocations()Gives access to the sub locations for this location.Iterator<Location>AbstractLocation. iterator()Iterates through all known sub-locations for this location but does not descendMethod parameters in org.biojava.nbio.core.sequence.location.template with type arguments of type Location Modifier and Type Method Description static LocationLocation.Tools. getMax(List<Location> locations)Scans through a list of locations to find the Location with the highest endstatic LocationLocation.Tools. getMin(List<Location> locations)Scans through a list of locations to find the Location with the lowest startstatic LocationLocation.Tools. location(List<Location> locations, Integer sequenceLength, String type)Used for building a location from a series of sub-locationsvoidAbstractLocation. setSubLocations(List<Location> subLocations)Constructor parameters in org.biojava.nbio.core.sequence.location.template with type arguments of type Location Constructor Description AbstractLocation(Point start, Point end, Strand strand, boolean circular, boolean betweenCompounds, List<Location> subLocations)Default constructorAbstractLocation(Point start, Point end, Strand strand, boolean circular, boolean betweenCompounds, AccessionID accession, List<Location> subLocations)Default constructor
-