We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f062efc commit 4fd8027Copy full SHA for 4fd8027
kb_python/extract.py
@@ -351,8 +351,9 @@ def extract(
351
352
if extract_all_unmapped:
353
# Save unmapped reads in a separate fastq file
354
- unmapped_fastq = os.path.join(out_dir, "all_unmapped")
355
- extract_matching_reads_by_header(extract_out_folder, fastq, unmapped_fastq)
+ unmapped_fastq = os.path.join(out_dir, "all_unmapped/1.fastq.gz")
+ mapped_fastq = os.path.join(extract_out_folder, "1.fastq.gz")
356
+ extract_matching_reads_by_header(mapped_fastq, fastq, unmapped_fastq)
357
358
else:
359
if not mm:
0 commit comments