Uses of Class
org.biojavax.bio.seq.RichLocation.Strand
-
Packages that use RichLocation.Strand Package Description org.biojavax.bio.db.biosql Interface between biojava and biosql databasesorg.biojavax.bio.seq Rich implementations of Sequences, Locations and Features. -
-
Uses of RichLocation.Strand in org.biojavax.bio.db.biosql
Methods in org.biojavax.bio.db.biosql that return RichLocation.Strand Modifier and Type Method Description RichLocation.Strand
BioSQLFeatureFilter.ByStrand. getStrand()
Constructors in org.biojavax.bio.db.biosql with parameters of type RichLocation.Strand Constructor Description ByStrand(RichLocation.Strand str)
Creates a filter that returns everything on strand str. -
Uses of RichLocation.Strand in org.biojavax.bio.seq
Fields in org.biojavax.bio.seq declared as RichLocation.Strand Modifier and Type Field Description static RichLocation.Strand
RichLocation.Strand. NEGATIVE_STRAND
The negative strand is represented by the symbol '-' and has the number -1.static RichLocation.Strand
RichLocation.Strand. POSITIVE_STRAND
The positive strand is represented by the symbol '+' and has the number 1.static RichLocation.Strand
RichLocation.Strand. UNKNOWN_STRAND
The unknown strand is represented by the symbol '?'Methods in org.biojavax.bio.seq that return RichLocation.Strand Modifier and Type Method Description static RichLocation.Strand
RichLocation.Strand. forName(String name)
Returns the strand object that matches the symbol given.static RichLocation.Strand
RichLocation.Strand. forValue(int value)
Returns the strand object that matches the number given.RichLocation.Strand
EmptyRichLocation. getStrand()
Retrieves the strand associated with this location.RichLocation.Strand
MultiSourceCompoundRichLocation. getStrand()
Retrieves the strand associated with this location.RichLocation.Strand
RichLocation. getStrand()
Retrieves the strand associated with this location.RichLocation.Strand
SimpleRichLocation. getStrand()
Retrieves the strand associated with this location.Methods in org.biojavax.bio.seq with parameters of type RichLocation.Strand Modifier and Type Method Description protected void
SimpleRichLocation. setStrand(RichLocation.Strand strand)
Constructors in org.biojavax.bio.seq with parameters of type RichLocation.Strand Constructor Description SimpleRichLocation(Position pos, int rank, RichLocation.Strand strand)
Creates a new instance of SimpleRichSequenceLocation that points to a single position.SimpleRichLocation(Position pos, int rank, RichLocation.Strand strand, CrossRef crossRef)
Creates a new instance of SimpleRichSequenceLocation that points to a single position on another sequence.SimpleRichLocation(Position min, Position max, int rank, RichLocation.Strand strand)
Creates a new instance of SimpleRichSequenceLocation that points to a range position.SimpleRichLocation(Position min, Position max, int rank, RichLocation.Strand strand, CrossRef crossRef)
Creates a new instance of SimpleRichSequenceLocation that points to a range position on another sequence.
-