Skip to content

Commit

Permalink
fix Params!!!
Browse files Browse the repository at this point in the history
  • Loading branch information
vortexing committed Jan 8, 2020
1 parent eade438 commit 9382011
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/cromwelljobmanagement.R
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ cromwellSubmitBatch <-
if(is.null(Dependencies) == F) bodyList <- c(bodyList, workflowDependencies = list(httr::upload_file(Dependencies)))
if(is.null(Options) == F) bodyList <- c(bodyList, workflowOptions = list(httr::upload_file(Options)))
if(is.null(Labels) == F) bodyList <- c(bodyList, labels = list(jsonlite::toJSON(as.list(Labels), auto_unbox = TRUE)))
if(is.null(Batch) == F) bodyList <- c(bodyList, workflowInputs_2 = list(httr::upload_file(Batch)))
if(is.null(Params) == F) bodyList <- c(bodyList, workflowInputs_2 = list(httr::upload_file(Params)))

cromDat <-
httr::POST(
Expand Down

0 comments on commit 9382011

Please sign in to comment.