Fixing units in queue job report Gantt plots
This commit is contained in:
parent
09050a01db
commit
07d365ce39
|
|
@ -140,6 +140,8 @@ print(paste("Project :", inputFileName))
|
||||||
convertUnits <- function(gatkReportData) {
|
convertUnits <- function(gatkReportData) {
|
||||||
convertGroup <- function(g) {
|
convertGroup <- function(g) {
|
||||||
g$runtime = g$runtime * ORIGINAL_UNITS_TO_SECONDS
|
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
|
g
|
||||||
}
|
}
|
||||||
lapply(gatkReportData, convertGroup)
|
lapply(gatkReportData, convertGroup)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue