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)
|
library(gsalib)
|
||||||
require("ggplot2")
|
library(ggplot2)
|
||||||
require("gplots")
|
library(gplots)
|
||||||
|
library(tools)
|
||||||
|
|
||||||
#
|
#
|
||||||
# Standard command line switch. Can we loaded interactively for development
|
# Standard command line switch. Can we loaded interactively for development
|
||||||
|
|
@ -201,4 +202,7 @@ for ( group in gatkReportData ) {
|
||||||
|
|
||||||
if ( ! is.na(outputPDF) ) {
|
if ( ! is.na(outputPDF) ) {
|
||||||
dev.off()
|
dev.off()
|
||||||
}
|
if (exists("compactPDF")) {
|
||||||
|
compactPDF(outputPDF)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue