All Packages Class Hierarchy This Package Previous Next Index
Class PairwiseComparativeMap.LocusNoAndMap
java.lang.Object
|
+----PairwiseComparativeMap.LocusNoAndMap
- public class LocusNoAndMap
- extends Object
This is a simple data class that describes a locus on a map. The data describes whether the locus is on the
left-hand or right-hand side of the Pairwise Map and the index to the loci array of the
Pairwise Map that the locus is available from.
- Version:
- 1.0
- Author:
- Written by Jeremy Dickson for the UK Crop Plant Bioinformatics Network, October 1998.
-
LocusNoAndMap(int, boolean)
- Default constructor.
-
doesLocusMatch(LocusNoAndMap)
- Returns true if the input LocusNoAndMap object matches the LocusNoAndMap object.
-
getLocusNo()
- Returns the locus index in the loci array.
-
isOnLHS()
- Returns whether the locus is on the left-hand side map.
LocusNoAndMap
public LocusNoAndMap(int locusNo,
boolean onLHS)
- Default constructor.
- Parameters:
- locusNo - The locus index in the loci array.
- onLHS - Set to true if the locus is on the left-hand side map.
getLocusNo
public int getLocusNo()
- Returns the locus index in the loci array.
isOnLHS
public boolean isOnLHS()
- Returns whether the locus is on the left-hand side map.
doesLocusMatch
public boolean doesLocusMatch(LocusNoAndMap locusNoAndMap)
- Returns true if the input LocusNoAndMap object matches the LocusNoAndMap object.
All Packages Class Hierarchy This Package Previous Next Index
|