From d4ac18358032558d6895b8753c14364015ca768c Mon Sep 17 00:00:00 2001 From: Ryan Poplin Date: Wed, 14 Aug 2013 14:40:03 -0400 Subject: [PATCH] Something changed with the ggtitle syntax in the latest version of ggplot2. --- .../org/broadinstitute/sting/queue/util/queueJobReport.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 2bc0a2fa5..6679781ee 100644 --- a/public/R/scripts/org/broadinstitute/sting/queue/util/queueJobReport.R +++ b/public/R/scripts/org/broadinstitute/sting/queue/util/queueJobReport.R @@ -57,7 +57,7 @@ plotJobsGantt <- function(gatkReport, sortOverall, title, includeText) { p <- p + xlim(0, maxRelTime * 1.3) p <- p + xlab(paste("Start time, relative to first job", RUNTIME_UNITS)) p <- p + ylab("Job number") - p <- p + ggtitle(title) + p <- p + opts(title = title) print(p) }