diff --git a/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/tools/RegionAfCount.scala b/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/tools/RegionAfCount.scala index 96446e4d11c49e6d0529be20d5a68003ce6ff269..b409b65b583eec98ccc6ed5c06680cb9226ed38b 100644 --- a/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/tools/RegionAfCount.scala +++ b/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/tools/RegionAfCount.scala @@ -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