Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
HaidYi committed Jul 28, 2024
1 parent 23bb3ec commit 3515f0d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions workflows/dbcan.nf
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,13 @@ workflow DBCAN {
//
// MODULE: Run FastQC
//

FASTQC_TRIMGALORE (
ch_samplesheet,
params.skip_fastqc || params.skip_qc,
params.skip_trimming
)
ch_multiqc_files = ch_multiqc_files.mix(FASTQC_TRIMGALORE.out.fastqc_zip.collect{it[1]})
ch_versions = ch_versions.mix(FASTQC.out.versions)
ch_versions = ch_versions.mix(FASTQC_TRIMGALORE.out.versions)

//
// MODULE: Kraken2 Build Database (Note: better to use nf-core kraken2 db build subworkflow)
Expand Down Expand Up @@ -117,7 +116,7 @@ workflow DBCAN {
//
// MODULE: Prodigal to find genes in bacteria and archaea
//
PRODIGAL ( ch_contigs, 'gff' )
PRODIGAL ( MEGAHIT.out.contigs, 'gff' )
ch_versions = ch_versions.mix(PRODIGAL.out.versions)

//
Expand Down

0 comments on commit 3515f0d

Please sign in to comment.