Expanding simulation to attempt CDR3/CDR1 matching - doubles size of cells
This commit is contained in:
@@ -30,8 +30,10 @@ public class CellFileReader {
|
||||
){
|
||||
for(CSVRecord record: parser.getRecords()) {
|
||||
Integer[] cell = new Integer[2];
|
||||
cell[0] = Integer.valueOf(record.get("Alpha"));
|
||||
cell[1] = Integer.valueOf(record.get("Beta"));
|
||||
cell[0] = Integer.valueOf(record.get("Alpha CDR3"));
|
||||
cell[1] = Integer.valueOf(record.get("Beta CDR3"));
|
||||
cell[2] = Integer.valueOf(record.get("Alpha CDR1"));
|
||||
cell[3] = Integer.valueOf(record.get("Beta CDR1"));
|
||||
distinctCells.add(cell);
|
||||
}
|
||||
} catch(IOException ex){
|
||||
|
||||
Reference in New Issue
Block a user