Expanding simulation to attempt CDR3/CDR1 matching - doubles size of cells

This commit is contained in:
2021-11-15 15:00:11 -06:00
parent c425b05d8c
commit 13b58e3204
5 changed files with 445 additions and 56 deletions

View File

@@ -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){