Skip to content

Commit

Permalink
only show inputs submitted/completed in task view if input kind is fi…
Browse files Browse the repository at this point in the history
…les or file
  • Loading branch information
wpbonelli committed Jul 29, 2021
1 parent 2cdcddb commit 6b6b043
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plantit/front_end/src/components/tasks/task.vue
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@
getTask.inputs_detected
"
></b-progress></b-col
><b-col
><b-col v-if="getWorkflow.config.input.kind !== 'directory'"
>{{
getTask.inputs_submitted
}}/{{
Expand All @@ -709,7 +709,7 @@
getTask.inputs_detected
"
></b-progress></b-col
><b-col
><b-col v-if="getWorkflow.config.input.kind !== 'directory'"
>{{
getTask.inputs_completed
}}/{{
Expand Down
1 change: 1 addition & 0 deletions plantit/plantit/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -951,6 +951,7 @@ def compose_task_singularity_command(
val = str(parameter['value'])
print(f"Replacing '{key}' with '{val}'")
cmd = cmd.replace(f"${key}", val)
cmd = f"SINGULARITY_${key}={val} " + cmd

print(f"Using command: '{cmd}'")

Expand Down

0 comments on commit 6b6b043

Please sign in to comment.