Refactor for better encapsulation with CellSamples
This commit is contained in:
@@ -24,8 +24,9 @@ public class Simulator implements GraphModificationFunctions {
|
||||
private static final int cdr1BetaIndex = 3;
|
||||
|
||||
//Make the graph needed for matching CDR3s
|
||||
public static GraphWithMapData makeGraph(List<Integer[]> distinctCells, Plate samplePlate, boolean verbose) {
|
||||
public static GraphWithMapData makeGraph(CellSample cellSample, Plate samplePlate, boolean verbose) {
|
||||
Instant start = Instant.now();
|
||||
List<Integer[]> distinctCells = cellSample.getCells();
|
||||
int[] alphaIndex = {cdr3AlphaIndex};
|
||||
int[] betaIndex = {cdr3BetaIndex};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user