Skip to content

Commit

Permalink
Run assemblyscan instead of fastqc
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-plessy committed Apr 17, 2024
1 parent bf16f5d commit 45d5d3a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions workflows/pairalign.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*/

include { FASTQC } from '../modules/nf-core/fastqc/main'
include { ASSEMBLYSCAN } from '../modules/nf-core/assemblyscan/main'
include { MULTIQC } from '../modules/nf-core/multiqc/main'
include { paramsSummaryMap } from 'plugin/nf-validation'
include { paramsSummaryMultiqc } from '../subworkflows/nf-core/utils_nfcore_pipeline'
Expand All @@ -30,11 +31,11 @@ workflow PAIRALIGN {
//
// MODULE: Run FastQC
//
FASTQC (
ASSEMBLYSCAN (
ch_samplesheet
)
ch_multiqc_files = ch_multiqc_files.mix(FASTQC.out.zip.collect{it[1]})
ch_versions = ch_versions.mix(FASTQC.out.versions.first())
ch_multiqc_files = ch_multiqc_files.mix(ASSEMBLYSCAN.out.json.collect{it[1]})
ch_versions = ch_versions.mix(ASSEMBLYSCAN.out.versions.first())

//
// Collate and save software versions
Expand Down

0 comments on commit 45d5d3a

Please sign in to comment.