Add plate well concentrations to output data

This commit is contained in:
2022-02-20 02:13:13 -06:00
parent 248fe4d662
commit 9c52bc878a
2 changed files with 1 additions and 1 deletions

View File

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