Add plate well concentrations to output data

This commit is contained in:
2022-02-20 02:09:22 -06:00
parent 5d0e60708c
commit 248fe4d662
3 changed files with 11 additions and 6 deletions

View File

@@ -28,6 +28,11 @@ public class Plate {
this.sourceFile = sourceFileName;
this.wells = wells;
this.size = wells.size();
List<Integer> concentrations = new ArrayList<>();
for (List<Integer[]> w: wells) {
concentrations.add(w.size());
}
concentrations.toArray(this.concentrations);
}
public void fillWellsExponential(String sourceFileName, List<Integer[]> cells, double lambda){