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

@@ -56,11 +56,8 @@ public class PlateFileReader {
}
public List<List<Integer[]>> getWells() {
return wells;
public Plate getSamplePlate() {
return new Plate(filename, wells);
}
public String getFilename() {
return filename;
}
}