Bugfix, can now do plates with <96 wells
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user