Skip to content

Commit b611877

Browse files
Merge pull request #165 from ncsa/bugfix/multi-thread-error
fixed default output folder name
2 parents aae58d4 + 4f94ea0 commit b611877

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

neat/parallel_read_simulator/parallelize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def coalesce_bool(cli_val, key: str, default: bool = False) -> bool:
205205

206206
# Outputs
207207
cwd = Path.cwd()
208-
default_outdir = (cwd / f"{Path(args.config).stem}_parallel").resolve()
208+
default_outdir = (cwd / f"neat_parallel_output").resolve()
209209
args.outdir = coalesce(args.outdir, "outdir", Path, default_outdir)
210210
if not args.outdir.is_absolute():
211211
args.outdir = (cwd / args.outdir).resolve()

0 commit comments

Comments
 (0)