Skip to content

Commit

Permalink
Merge pull request #194 from danilodileo/fix-small-issues
Browse files Browse the repository at this point in the history
Fix small issues
  • Loading branch information
danilodileo authored Oct 17, 2023
2 parents de8f83b + 19f74da commit 90887dc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,11 @@ process {
publishDir = [
path: "${params.outdir}/multiqc",
mode: 'copy',
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
saveAs: { filename -> filename.equals('versions.yml') ? null : filename },
path: "${params.outdir}/summary_tables",
mode: 'copy',
pattern: '*.html',
saveAs: { filename -> "${params.assembler}.${params.orf_caller}.multiqc_report.html" }
]
}
}
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ params {
save_cat_db = false

// Eukulele options
eukulele_db = null
eukulele_db = ''
dbname = null
skip_eukulele = false
eukulele_dbpath = './eukulele/'
Expand Down
2 changes: 1 addition & 1 deletion workflows/metatdenovo.nf
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ workflow METATDENOVO {
.map { [ [ id: 'megahit' ], it ] }
.set { ch_assembly_contigs }
ch_versions = ch_versions.mix(MEGAHIT_INTERLEAVED.out.versions)
}
} else { exit 1, 'Assembler not specified!' }

// If the user asked for length filtering, perform that with SEQTK_SEQ (the actual length parameter is used in modules.config)
if ( params.min_contig_length > 0 ) {
Expand Down

0 comments on commit 90887dc

Please sign in to comment.