placeholder values until CLI is updated to support read depth simulation

This commit is contained in:
eugenefischer
2022-09-26 19:43:29 -05:00
parent 199c81f983
commit 13a1af1f71

View File

@@ -146,7 +146,7 @@ public class CommandLineInterface {
CellSample cells = getCells(cellFilename); CellSample cells = getCells(cellFilename);
//get plate //get plate
Plate plate = getPlate(plateFilename); Plate plate = getPlate(plateFilename);
GraphWithMapData graph = Simulator.makeGraph(cells, plate, false); GraphWithMapData graph = Simulator.makeGraph(cells, plate, 1, 0.0, 0.0, false);
if (!line.hasOption("no-binary")) { //output binary file unless told not to if (!line.hasOption("no-binary")) { //output binary file unless told not to
GraphDataObjectWriter writer = new GraphDataObjectWriter(outputFilename, graph, false); GraphDataObjectWriter writer = new GraphDataObjectWriter(outputFilename, graph, false);
writer.writeDataToFile(); writer.writeDataToFile();