Skip to content

Commit

Permalink
splitting hairs here
Browse files Browse the repository at this point in the history
  • Loading branch information
rcannood committed Sep 17, 2024
1 parent e7b9f97 commit f6e4d91
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/bd_rhapsody/bd_rhapsody_sequence_analysis/script.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,10 +228,11 @@ def main(par: dict[str, Any], meta: dict[str, Any], temp_dir: str):

# Run command
print("> " + ' '.join(cmd), flush=True)
_ = subprocess.check_call(
_ = subprocess.run(
cmd,
cwd=os.path.dirname(config_file),
env=env
env=env,
check=True
)

# Copy outputs
Expand Down

0 comments on commit f6e4d91

Please sign in to comment.