queueJobReport now compresses PDF when running R 2.13+.
Updated PostCallingQC.scala's VE and R to include missense to silent ratio and plot.
This commit is contained in:
parent
a9a6516527
commit
aae61767c6
|
|
@ -1,6 +1,7 @@
|
|||
library(gsalib)
|
||||
require("ggplot2")
|
||||
require("gplots")
|
||||
library(ggplot2)
|
||||
library(gplots)
|
||||
library(tools)
|
||||
|
||||
#
|
||||
# Standard command line switch. Can we loaded interactively for development
|
||||
|
|
@ -201,4 +202,7 @@ for ( group in gatkReportData ) {
|
|||
|
||||
if ( ! is.na(outputPDF) ) {
|
||||
dev.off()
|
||||
}
|
||||
if (exists("compactPDF")) {
|
||||
compactPDF(outputPDF)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue