Skip to content
Snippets Groups Projects
Commit 981e80ef authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Added a scatter plot

parent 90fe82b4
No related branches found
No related tags found
No related merge requests found
......@@ -112,6 +112,16 @@ object RegionAfCount extends ToolCommand {
}
writer.close()
logger.info("Generate plot")
val scatterPlot = new ScatterPlot(null)
scatterPlot.input = cmdArgs.outputFile
scatterPlot.output = new File(cmdArgs.outputFile.getAbsolutePath + ".png")
scatterPlot.ylabel = Some("Sum of AFs")
scatterPlot.width = Some(1200)
scatterPlot.height = Some(1000)
scatterPlot.runLocal()
logger.info("Done")
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment