Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
nschcolnicov committed Dec 17, 2024
1 parent 50e2138 commit eb84fde
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
2 changes: 1 addition & 1 deletion modules/nf-core/custom/matrixfilter/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ process CUSTOM_MATRIXFILTER {
output:
tuple val(meta), path("*.filtered.tsv") , emit: filtered
tuple val(meta), path("*.tests.tsv") , emit: tests
tuple val(meta), path("*R_sessionInfo.log") , emit: session_info
tuple val(meta), path("*R_sessionInfo.log") , emit: session_info
path "versions.yml" , emit: versions

when:
Expand Down
23 changes: 16 additions & 7 deletions modules/nf-core/custom/matrixfilter/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,29 +42,38 @@ output:
description: |
Groovy Map containing information on experiment.
e.g. [ id:'test' ]
pattern: "*.filtered.tsv"
- "*.filtered.tsv":
type: file
description: Filtered version of input matrix
type: map
description: |
Groovy Map containing information on experiment.
e.g. [ id:'test' ]
pattern: "*.filtered.tsv"
- tests:
- meta:
type: map
description: |
Groovy Map containing information on experiment.
e.g. [ id:'test' ]
pattern: "*.tests.tsv"
- "*.tests.tsv":
type: file
description: Boolean matrix with pass/ fail status for each test on each feature
type: map
description: |
Groovy Map containing information on experiment.
e.g. [ id:'test' ]
pattern: "*.tests.tsv"
- session_info:
- meta:
type: map
description: |
Groovy Map containing information on experiment.
e.g. [ id:'test' ]
- R_sessionInfo.log:
type: file
description: Log file containing R session information
pattern: "*.log"
- "*R_sessionInfo.log":
type: map
description: |
Groovy Map containing information on experiment.
e.g. [ id:'test' ]
pattern: "*.log"
- versions:
- versions.yml:
Expand Down

0 comments on commit eb84fde

Please sign in to comment.