Skip to content

Commit

Permalink
Fix linting and output file
Browse files Browse the repository at this point in the history
  • Loading branch information
mahesh-panchal committed Mar 26, 2024
1 parent 1b8b5b5 commit 4de8bab
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/nf-core/genomescope2/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ process GENOMESCOPE2 {
tuple val(meta), path("${prefix}_model.txt") , emit: model
tuple val(meta), path("${prefix}_summary.txt") , emit: summary
tuple val(meta), path("${prefix}_lookup_table.txt") , emit: lookup_table, optional: true
tuple val(meta), path("${prefix}_fitted_histogram.png") , emit: fitted_histogram_png, optional: true
tuple val(meta), path("${prefix}_fitted_hist.png") , emit: fitted_histogram_png, optional: true
path "versions.yml" , emit: versions

when:
Expand Down
4 changes: 4 additions & 0 deletions modules/nf-core/genomescope2/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ output:
type: file
description: Fitted histogram lookup table
pattern: "*_lookup_table.txt"
- fitted_histogram_png:
type: file
description: A genomescope2 fitted histogram plot in PNG format
pattern: "*_fitted_hist.png"
authors:
- "@mahesh-panchal"
maintainers:
Expand Down
4 changes: 2 additions & 2 deletions modules/nf-core/genomescope2/tests/main.nf.test
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
// TODO nf-core: Once you have added the required tests, please run the following command to build this file:
// nf-core modules test genomescope2
nextflow_process {

name "Test Process GENOMESCOPE2"
Expand All @@ -10,6 +8,8 @@ nextflow_process {
tag "modules"
tag "modules_nfcore"
tag "genomescope2"
tag "meryl/count"
tag "meryl/histogram"

setup {
run('MERYL_COUNT'){
Expand Down

0 comments on commit 4de8bab

Please sign in to comment.