예제 #1
0
        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;
        }
예제 #2
0
 public SequenceAligner(Cell[] inputCells, Cell[] comparisonCells)
 {
     _inputCells = inputCells;
     _comparisonCells = comparisonCells;
 }