Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
- Add functions to dynamically include pipeline tool citations in MultiQC methods description section for better reporting. ([#2326](https://github.com/nf-core/tools/pull/2326))
- Remove `--tracedir` parameter ([#2290](https://github.com/nf-core/tools/pull/2290))
- Incorrect config parameter warnings when customising pipeline template ([#2333](https://github.com/nf-core/tools/pull/2333))
- Use markdown syntax in the description for the meta map channels ([#2358](https://github.com/nf-core/tools/pull/2358))

### Download

Expand Down
4 changes: 2 additions & 2 deletions nf_core/module-template/modules/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ input:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
e.g. `[ id:'test', single_end:false ]`
{% endif %}
{% if not_empty_template -%}
## TODO nf-core: Delete / customise this example input
Expand All @@ -49,7 +49,7 @@ output:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
e.g. `[ id:'test', single_end:false ]`
{% endif %}
- versions:
type: file
Expand Down
4 changes: 2 additions & 2 deletions nf_core/subworkflow-template/subworkflows/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ input:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test' ]
e.g. `[ id:'test' ]`
- bam:
type: file
description: BAM/CRAM/SAM file
Expand All @@ -28,7 +28,7 @@ output:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test' ]
e.g. `[ id:'test' ]`
- bam:
type: file
description: Sorted BAM/CRAM/SAM file
Expand Down