public static Cell[] CreateCellSequence(byte[] bytes) { Cell[] cells = new Cell[bytes.Length]; for (int i = 0; i < bytes.Length; i++) { cells[i] = new Cell { Index = i, Value = bytes[i] }; } return cells; }
public SequenceAligner(Cell[] inputCells, Cell[] comparisonCells) { _inputCells = inputCells; _comparisonCells = comparisonCells; }