Skip to content

Commit 4f94ea0

Browse files
committed
fixed default output folder name
1 parent 35e5e57 commit 4f94ea0

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)