Skip to content

Commit

Permalink
fix: parent jid empty on local execution
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Routsong committed Nov 9, 2023
1 parent 2730172 commit e5003ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ def exec_ngsqc_pipeline(configs, dry_run=False, local=False):
mk_or_pass_dirs(*_dirs)

for i in range(0, len(configs['projects'])):
this_config = {k: (v[i] if k != 'resources' else v) for k, v in configs.items()}
this_config = {k: (v[i] if k != 'resources' else v) for k, v in configs.items() if v}
this_config.update(profile_config)
singularity_binds = get_ngsqc_mounts(Path(this_config['out_to']).absolute(), Path(this_config['demux_dir']).absolute())
config_file = Path(this_config['out_to'], '.config', f'config_job_{str(i)}.json').absolute()
Expand Down

0 comments on commit e5003ab

Please sign in to comment.