This commit is contained in:
2022-02-26 07:35:34 -06:00
parent f032d3e852
commit 7b03a3cce8

View File

@@ -106,7 +106,7 @@ public class Simulator implements GraphModificationFunctions {
List<Vertex> alphaVertices = new ArrayList<>(); List<Vertex> alphaVertices = new ArrayList<>();
//start with map of all alphas mapped to vertex values, get occupancy from the alphaWellCounts map //start with map of all alphas mapped to vertex values, get occupancy from the alphaWellCounts map
for (Integer seq: plateAtoVMap.keySet()) { for (Integer seq: plateAtoVMap.keySet()) {
Vertex alphaVertex = new Vertex(SequenceType.CDR1_ALPHA, seq, alphaWellCounts.get(seq), plateAtoVMap.get(seq)); Vertex alphaVertex = new Vertex(SequenceType.CDR3_ALPHA, seq, alphaWellCounts.get(seq), plateAtoVMap.get(seq));
alphaVertices.add(alphaVertex); alphaVertices.add(alphaVertex);
} }
graphGenerator.first(alphaVertices); graphGenerator.first(alphaVertices);