public final class Cell extends Object
A single cell in the DP matrix.
The cell is divided into parallel arrays for the cell scores, backpointers and emission probabilities. The scores and backpointer arrays are as long as the number of states in the model. The emissions array is as long as the number of emitting states in the model.
Modifier and Type | Field and Description |
---|---|
BackPointer[] |
backPointers |
double[] |
emissions |
double[] |
scores |
Constructor and Description |
---|
Cell() |
public double[] scores
public BackPointer[] backPointers
public double[] emissions
public Cell()
Copyright © 2014 BioJava. All rights reserved.