|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.peace_tools.data.ESTEntry
public class ESTEntry
A class that represents a single EST entry in PreAlignmentModel. This class is a pure data class that is used to encapsulate the information pertaining to the position of an EST node as used by the PreAlignmentModel class. This class is used to encapsulate information that is needed to represent the relative position of an EST in an alignment model. This class encapsulates the following information:
Field Summary | |
---|---|
(package private) int |
alignmentMetric
The alignment metric generated by a given EST analyzer indicating some of the alignment relationship between this node and its parent node. |
private int |
clusterID
The ID of the cluster to which the EST Entry belongs. |
private int |
colPos
The starting column position for this entry. |
private EST |
est
The EST node for this ESTEntry. |
Constructor Summary | |
---|---|
protected |
ESTEntry(EST est,
int clusterID,
int colPos)
Constructor to create an object. |
Method Summary | |
---|---|
int |
getClusterID()
Returns the ID of the cluster to which this entry belongs. |
int |
getColumn()
Obtain the starting column position where this entry is to be placed. |
EST |
getEST()
Returns the actual EST object set for this node. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private final EST est
private final int clusterID
private final int colPos
int alignmentMetric
Constructor Detail |
---|
protected ESTEntry(EST est, int clusterID, int colPos)
est
- The actual EST object for which this entry is being
created.clusterID
- The ID of the cluster to which the given EST entry
belongs.colPos
- The zero-based column position from where the EST
is to be rendered. This column position indicates the position of
the left-most nucleotide in the EST.OverlapModel
Method Detail |
---|
public EST getEST()
public int getClusterID()
public int getColumn()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |