Skip to content

Commit

Permalink
update to better handle subworkflows
Browse files Browse the repository at this point in the history
  • Loading branch information
vortexing committed Sep 15, 2021
1 parent 1dbeda9 commit 90a4cf4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: fh.wdlR
Title: Convenience Tools for Managing WDL Workflows via Cromwell
Version: 1.0.0
Version: 1.0.1
Authors@R:
person(given = "Amy",
family = "Paguirigan",
Expand Down
4 changes: 2 additions & 2 deletions R/cromwellCall.R
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@ cromwellCall <- function(workflow_id, cromURL = Sys.getenv("CROMWELLURL", unset
if (exists("justSubCalls")) {
justCalls <- suppressMessages(dplyr::full_join(justCalls, justSubCalls))
}
} else {
# returns a data frame if no data is avaialable so that this can be used with Shiny apps easier
} else if(exists("justSubCalls")) {justCalls <- justSubCalls} else {
# returns a data frame if no data is available so that this can be used with Shiny apps easier
justCalls <- data.frame("workflow_id" = "No call metadata available.", stringsAsFactors = F)
}
} else {
Expand Down

0 comments on commit 90a4cf4

Please sign in to comment.