Add plate well concentrations to output data

This commit is contained in:
2022-02-20 02:29:42 -06:00
parent 284a5b3a40
commit cb2c5a6024
2 changed files with 3 additions and 1 deletions

View File

@@ -31,7 +31,9 @@ public class Plate {
List<Integer> concentrations = new ArrayList<>();
for (List<Integer[]> w: wells) {
concentrations.add(w.size());
if(!concentrations.contains(w.size())){
concentrations.add(w.size());
}
}
this.concentrations = new Integer[concentrations.size()];
for (int i = 0; i < this.concentrations.length; i++) {