public interface IntervalPileup
Modifier and Type | Interface and Description |
---|---|
static interface |
IntervalPileup.Element |
static interface |
IntervalPileup.Insert |
Modifier and Type | Field and Description |
---|---|
static byte |
GAP |
static byte |
NO_BASE |
static byte |
NO_BQ |
Modifier and Type | Method and Description |
---|---|
byte |
baseAt(int row,
int column) |
IntervalPileup.Element |
element(GATKRead read) |
default IntervalPileup.Element |
element(int row) |
boolean |
hasInsertAt(int i,
int j) |
int |
height() |
IntervalPileup.Insert |
insertAt(int row,
int column) |
byte[] |
insertBasesAt(int i,
int j) |
byte[] |
insertQualsAt(int i,
int j) |
static IntervalPileup |
of(java.util.List<GATKRead> reads,
ReferenceBases referenceBases) |
static IntervalPileup |
of(htsjdk.samtools.util.Locatable loc,
ReadsDataSource aln,
ReferenceDataSource ref) |
byte |
qualAt(int row,
int column) |
GATKRead |
readAt(int row,
int column) |
java.util.List<GATKRead> |
reads() |
java.util.List<GATKRead> |
readsAt(int row,
int column) |
ReferenceBases |
reference() |
int |
width() |
static final byte NO_BQ
static final byte GAP
static final byte NO_BASE
java.util.List<GATKRead> reads()
ReferenceBases reference()
int width()
int height()
byte baseAt(int row, int column)
byte qualAt(int row, int column)
IntervalPileup.Insert insertAt(int row, int column)
GATKRead readAt(int row, int column)
java.util.List<GATKRead> readsAt(int row, int column)
IntervalPileup.Element element(GATKRead read)
default IntervalPileup.Element element(int row)
boolean hasInsertAt(int i, int j)
byte[] insertBasesAt(int i, int j)
byte[] insertQualsAt(int i, int j)
static IntervalPileup of(htsjdk.samtools.util.Locatable loc, ReadsDataSource aln, ReferenceDataSource ref)
static IntervalPileup of(java.util.List<GATKRead> reads, ReferenceBases referenceBases)