Skip to content

Commit

Permalink
[FIX] Found errors in qc after debbuging (#69)
Browse files Browse the repository at this point in the history
* fix on `fastqc` module and `qc_reports` workflow

* updating multiqc version

* Update workflows/qc_reports.nf

* Update modules/qc/fastqc.nf

Co-authored-by: Abhinav Sharma <[email protected]>
  • Loading branch information
Mxrcon and abhi18av authored May 4, 2022
1 parent aedcddf commit ad52933
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion conda_envs/mtbseq-nf-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ dependencies:
- bioconda::mtbseq=1.0.3
- bioconda/linux-64::gatk=3.8.0=py36_0
- bioconda::fastqc=0.11.9
- bioconda::multiqc=1.9
- bioconda::multiqc=1.12
2 changes: 1 addition & 1 deletion modules/qc/fastqc.nf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ process FASTQC {

output:
tuple path('*.html'), path('*.zip')

path("*.{html,zip}"), emit: html_zip_ch

script:

Expand Down
2 changes: 1 addition & 1 deletion workflows/qc_reports.nf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ workflow QC_REPORTS {

main:
FASTQC(reads_ch)
MULTIQC(FASTQC.out.collect())
MULTIQC(FASTQC.out.html_zip_ch.collect())

}

0 comments on commit ad52933

Please sign in to comment.