nf-core_modules/software/TOOL/SUBTOOL/meta.yml

72 lines
2.7 KiB
YAML
Raw Normal View History

2020-08-07 10:30:55 +00:00
## TODO nf-core: Please delete all of these TODO statements once the file has been curated
2021-02-07 23:20:53 +00:00
## TODO nf-core: Change the name of "tool_subtool" below
name: tool_subtool
2020-08-07 09:58:36 +00:00
## TODO nf-core: Add a description and keywords
2021-02-07 23:20:53 +00:00
description: Sort SAM/BAM/CRAM file
2020-08-06 10:32:18 +00:00
keywords:
2021-02-07 23:20:53 +00:00
- sort
- bam
- sam
- cram
2020-08-06 10:32:18 +00:00
tools:
2021-02-07 23:20:53 +00:00
## TODO nf-core: Change the name of the tool below
- samtools:
2020-08-07 14:27:35 +00:00
## TODO nf-core: Add a description and other details for the software below
description: |
2021-02-07 23:20:53 +00:00
SAMtools is a set of utilities for interacting with and post-processing
short DNA sequence read alignments in the SAM, BAM and CRAM formats, written by Heng Li.
These files are generated as output by short read aligners like BWA.
homepage: http://www.htslib.org/
documentation: hhttp://www.htslib.org/doc/samtools.html
doi: 10.1093/bioinformatics/btp352
2020-08-07 09:58:36 +00:00
## TODO nf-core: If you are using any additional "params" in the main.nf script of the module add them below
params:
2020-08-07 14:27:35 +00:00
- outdir:
type: string
description: |
The pipeline's output directory. By default, the module will
output files into `$params.outdir/<SOFTWARE>`
- publish_dir_mode:
type: string
description: |
Value for the Nextflow `publishDir` mode parameter.
Available: symlink, rellink, link, copy, copyNoFollow, move.
2020-10-15 10:13:54 +00:00
- enable_conda:
2020-08-07 14:27:35 +00:00
type: boolean
description: |
Run the module with Conda using the software specified
via the `conda` directive
- singularity_pull_docker_container:
type: boolean
description: |
Instead of directly downloading Singularity images for use with Singularity,
force the workflow to pull and convert Docker containers instead.
2020-08-07 09:58:36 +00:00
## TODO nf-core: Add a description of all of the variables used as input
2020-08-06 10:32:18 +00:00
input:
2020-08-07 14:27:35 +00:00
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
2021-02-07 23:20:53 +00:00
- bam:
2020-08-07 14:27:35 +00:00
type: file
2021-02-07 23:20:53 +00:00
description: BAM/CRAM/SAM file
pattern: "*.{bam,cram,sam}"
2020-08-07 09:58:36 +00:00
## TODO nf-core: Add a description of all of the variables used as output
2020-08-06 10:32:18 +00:00
output:
2020-08-07 14:27:35 +00:00
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
2021-02-07 23:20:53 +00:00
- bam:
2020-08-07 14:27:35 +00:00
type: file
2021-02-07 23:20:53 +00:00
description: Sorted BAM/CRAM/SAM file
pattern: "*.{bam,cram,sam}"
2020-08-07 14:27:35 +00:00
- version:
type: file
description: File containing software version
pattern: "*.{version.txt}"
2020-08-07 09:58:36 +00:00
## TODO nf-core: Add your GitHub username below
2020-08-06 10:32:18 +00:00
authors:
2021-02-07 23:20:53 +00:00
- "@your_github_username"