Skip to content

Commit

Permalink
fix multiqc rule
Browse files Browse the repository at this point in the history
  • Loading branch information
CChahrour committed Feb 14, 2024
1 parent a5d850f commit 21b67e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions seqnado/workflow/rules/qc.smk
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def get_fastqc_files(*args, **kwargs):
fastqc_files = []
fq_files = pathlib.Path("seqnado_output/fastqs").glob("*.fastq.gz")
for fq_file in fq_files:
fastqc_file = fastqc_dir / (fq_file.stem.replace(".fastq", "") + ".html")
fastqc_file = fastqc_dir / (fq_file.stem.replace(".fastq", "") + "_fastqc.html")
fastqc_files.append(str(fastqc_file))

return fastqc_files
Expand Down Expand Up @@ -161,7 +161,7 @@ def get_trimmed_files(wc):
fastqc_files = []
fq_files = pathlib.Path("seqnado_output/fastqs").glob("*.fastq.gz")
for fq_file in fq_files:
fastqc_file = fastqc_dir / (fq_file.stem.replace(".fastq", "") + ".html")
fastqc_file = fastqc_dir / (fq_file.stem.replace(".fastq", "") + "_fastqc.html")
fastqc_files.append(str(fastqc_file))

return fastqc_files
Expand Down

0 comments on commit 21b67e9

Please sign in to comment.