Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add markdown hint to modules template #2358

Merged
merged 3 commits into from
Jun 30, 2023
Merged
Show file tree
Hide file tree
Changes from 2 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 ([#23585](https://github.com/nf-core/tools/pull/2358))
mashehu marked this conversation as resolved.
Show resolved Hide resolved

### 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