Skip to content

Commit

Permalink
fix: fix failure when using paired data
Browse files Browse the repository at this point in the history
  • Loading branch information
igboyes authored Mar 15, 2024
1 parent 2f0af16 commit 3bb0429
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ async def stdout_handler(line: bytes):
"-x",
index.bowtie_path,
"-U",
*sample.read_paths,
",".join(str(path) for path in sample.read_paths),
],
stdout_handler=stdout_handler,
)
Expand Down Expand Up @@ -201,7 +201,7 @@ async def stdout_handler(line: bytes):
"-x",
isolate_index_path,
"-U",
*sample.read_paths,
",".join(str(path) for path in sample.read_paths),
]

await run_subprocess(command, stdout_handler=stdout_handler)
Expand Down

0 comments on commit 3bb0429

Please sign in to comment.