Add plate well concentrations to output data
This commit is contained in:
Binary file not shown.
@@ -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++) {
|
||||
|
||||
Reference in New Issue
Block a user