Refactor plate to fill its own wells in its constructor

This commit is contained in:
2022-02-27 14:25:53 -06:00
parent b53f5f1cc0
commit 8ebfc1469f
4 changed files with 10 additions and 9 deletions

View File

@@ -290,7 +290,7 @@ public class InteractiveInterface {
else {
System.out.println("Reading Sample Plate file: " + plateFile);
PlateFileReader plateReader = new PlateFileReader(plateFile);
plate = new Plate(plateReader.getFilename(), plateReader.getWells());
plate = plateReader.getSamplePlate();
if(BiGpairSEQ.cachePlate()) {
BiGpairSEQ.setPlateInMemory(plate, plateFile);
}