diff --git a/src/main/java/eu/hbp/mip/controllers/GalaxyAPI.java b/src/main/java/eu/hbp/mip/controllers/GalaxyAPI.java index 7ae5cccf8eecf0fa937d4b496cc37429c7f43f97..ba6dcf7d386992303955c4fd5019f7345998eb5a 100644 --- a/src/main/java/eu/hbp/mip/controllers/GalaxyAPI.java +++ b/src/main/java/eu/hbp/mip/controllers/GalaxyAPI.java @@ -202,7 +202,7 @@ class GalaxyAPI { final WorkflowDetails workflowDetails = workflowsClient.showWorkflow(matchingWorkflow.getId()); for (Map.Entry<String, WorkflowInputDefinition> entry : workflowDetails.getInputs().entrySet()) { if(!(allJsonParams.containsKey(entry.getValue().getUuid()))) { - logger.warn("Find extra value with label:" + entry.getValue().getLabel() + "and uuid:" + entry.getValue().getUuid() + ", that is mandatory to run the workflow. The uuid will be automate add it with empty value in the parameters to run the workflow."); + logger.warn("Find extra value with label:" + entry.getValue().getLabel() + ", and uuid:" + entry.getValue().getUuid() + ", that is mandatory to run the workflow. The uuid will be automate add it with empty value in the parameters to run the workflow."); allJsonParams.put(entry.getValue().getUuid(), ""); } }