We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a8b4aa commit cb142b6Copy full SHA for cb142b6
src/jote/compose.py
@@ -36,10 +36,8 @@
36
"""
37
38
_NF_CONFIG_CONTENT: str = """
39
-docker {
40
- enabled = true
41
- runOptions = '-u $(id -u):$(id -g)'
42
-}
+docker.enabled = true
+docker.runOptions = '-u $(id -u):$(id -g)'
43
44
45
src/jote/jote.py
@@ -329,10 +329,11 @@ def _run_nextflow(command: str,
329
os.chdir(project_path)
330
331
try:
332
- test = subprocess.run(command.split(),
+ test = subprocess.run(command,
333
+ shell=True,
334
+ check=False,
335
capture_output=True,
- timeout=timeout_minutes * 60,
- check=False)
336
+ timeout=timeout_minutes * 60)
337
finally:
338
os.chdir(cwd)
339
0 commit comments