We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cda591 commit eb07aa9Copy full SHA for eb07aa9
reana_job_controller/htcondorcern_job_manager.py
@@ -164,7 +164,7 @@ def _format_arguments(self):
164
# Take only the user's command, removes the change directory to workflow workspace
165
# added by RWE-Serial/Snakemake since HTCondor implementation does not need it.
166
# E.g. "cd /path/to/workspace ; user-command" -> "user-command"
167
- base_cmd = " ".join(self.cmd.split()[3:])
+ base_cmd = self.cmd.split(maxsplit=3)[3]
168
if self.workflow.type_ == "snakemake":
169
# For Snakemake workflows, also remove the workspace path from
170
# `jobfinished` and `jobfailed` touch commands.
0 commit comments