Skip to content

Commit

Permalink
In batch run accept the storage and temp directories arguments as des…
Browse files Browse the repository at this point in the history
…cribed in the docs.
  • Loading branch information
marvinkobit committed Aug 24, 2024
1 parent 91dfe78 commit 9364bda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tb-profiler
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def main_batch(args):


for row in csv.DictReader(open(args.csv)):
line = f"tb-profiler profile -p {row['id']} --threads {args.threads_per_job}"
line = f"tb-profiler profile -p {row['id']} --temp {args.temp} --dir {args.dir} --threads {args.threads_per_job}"
if "bam" in row:
line += f" -a {row['bam']}"
elif "read1" in row:
Expand Down

0 comments on commit 9364bda

Please sign in to comment.