diff --git a/public/R/queueJobReport.R b/public/R/queueJobReport.R index a24d269c9..31916361e 100644 --- a/public/R/queueJobReport.R +++ b/public/R/queueJobReport.R @@ -140,6 +140,8 @@ print(paste("Project :", inputFileName)) convertUnits <- function(gatkReportData) { convertGroup <- function(g) { g$runtime = g$runtime * ORIGINAL_UNITS_TO_SECONDS + g$startTime = g$startTime * ORIGINAL_UNITS_TO_SECONDS + g$doneTime = g$doneTime * ORIGINAL_UNITS_TO_SECONDS g } lapply(gatkReportData, convertGroup)