diff --git a/public/R/scripts/org/broadinstitute/sting/queue/util/queueJobReport.R b/public/R/scripts/org/broadinstitute/sting/queue/util/queueJobReport.R index 7bfdd4d84..aff783b8e 100644 --- a/public/R/scripts/org/broadinstitute/sting/queue/util/queueJobReport.R +++ b/public/R/scripts/org/broadinstitute/sting/queue/util/queueJobReport.R @@ -165,7 +165,7 @@ plotTimeByHost <- function(gatkReportData) { plotMe <- function(name, vis) { p = ggplot(data=runtimes, aes(x=exechosts, y=runtime, group=exechosts, color=exechosts)) - p = p + facet_grid(analysisName ~ .) + p = p + facet_grid(analysisName ~ ., scale="free") p = p + vis() p = p + xlab("Job execution host") p = p + opts(title = paste(name, "of job runtimes by analysis name and execution host"))