public class ClusterData extends Object
Constructor | Description |
---|---|
ClusterData(ReadData... reads) |
Used for testing, reads is set directly with no copying to the input array
|
ClusterData(ReadType[] readTypes) |
Creates a ClusterData with one read for each type provided
|
Modifier and Type | Method | Description |
---|---|---|
int |
getLane() |
|
String |
getMatchedBarcode() |
|
int |
getNumReads() |
|
ReadData |
getRead(int index) |
|
int |
getTile() |
|
int |
getX() |
|
int |
getY() |
|
Boolean |
isPf() |
|
boolean |
laneIsSet() |
|
void |
setLane(int lane) |
|
void |
setMatchedBarcode(String matchedBarcode) |
|
void |
setOrCheckLane(int lane) |
Either set this value if not already set, or if already set, throw an exception if new value != current value.
|
void |
setOrCheckPf(boolean pf) |
Either set this value if not already set, or if already set, throw an exception if new value != current value.
|
void |
setOrCheckTile(int tile) |
Either set this value if not already set, or if already set, throw an exception if new value != current value.
|
void |
setOrCheckX(int x) |
Either set this value if not already set, or if already set, throw an exception if new value != current value.
|
void |
setOrCheckY(int y) |
Either set this value if not already set, or if already set, throw an exception if new value != current value.
|
void |
setPf(boolean pf) |
|
void |
setTile(int tile) |
|
void |
setX(int x) |
|
void |
setY(int y) |
|
boolean |
tileIsSet() |
|
String |
toString() |
|
boolean |
xIsSet() |
|
boolean |
yIsSet() |
public ClusterData(ReadData... reads)
public ClusterData(ReadType[] readTypes)
public int getTile()
public void setTile(int tile)
public boolean tileIsSet()
public ReadData getRead(int index)
public int getNumReads()
public void setOrCheckTile(int tile)
public int getLane()
public void setLane(int lane)
public boolean laneIsSet()
public void setOrCheckLane(int lane)
public int getX()
public void setX(int x)
public boolean xIsSet()
public void setOrCheckX(int x)
public int getY()
public void setY(int y)
public boolean yIsSet()
public void setOrCheckY(int y)
public Boolean isPf()
public void setPf(boolean pf)
public void setOrCheckPf(boolean pf)
public String getMatchedBarcode()
public void setMatchedBarcode(String matchedBarcode)