Bugfix, can now do plates with <96 wells

This commit is contained in:
2021-11-12 11:16:21 -06:00
parent e15cbc6672
commit 92add6786a
2 changed files with 34 additions and 17 deletions

View File

@@ -182,8 +182,8 @@ public class UserInterface {
}
else{
if(highThreshold > plate.getSize()){
highThreshold = plate.getSize();
if(highThreshold >= plate.getSize()){
highThreshold = plate.getSize() - 1;
}
List<Integer[]> cells = cellReader.getCells();
Simulator.matchCells(filename, cells, plate, lowThreshold, highThreshold);