mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-05 05:52:07 -05:00
Add TODO comments
This commit is contained in:
parent
9296897009
commit
bdfe187440
1 changed files with 71 additions and 37 deletions
|
@ -1,42 +1,76 @@
|
||||||
name: bwa mem
|
## TODO nf-core: Change the name of "software_tool" below
|
||||||
description: Performs fastq alignment to a fasta reference using the burrows-wheeler aligner
|
name: software_tool
|
||||||
|
## TODO nf-core: Add a description and keywords
|
||||||
|
description: Run FastQC on sequenced reads
|
||||||
keywords:
|
keywords:
|
||||||
- mem
|
- Quality Control
|
||||||
- bwa
|
- QC
|
||||||
- alignment
|
- Adapters
|
||||||
tools:
|
tools:
|
||||||
- bwa:
|
## TODO nf-core: Change the name of "software_tool" below
|
||||||
|
- software_tool:
|
||||||
|
## TODO nf-core: Add a description and other details for the tool below
|
||||||
description: |
|
description: |
|
||||||
BWA is a software package for mapping DNA sequences against a large reference genome, such as the human genome.
|
FastQC gives general quality metrics about your reads.
|
||||||
homepage: http://bio-bwa.sourceforge.net/
|
It provides information about the quality score distribution
|
||||||
documentation: http://www.htslib.org/doc/samtools.html
|
across your reads, the per base sequence content (%A/C/G/T).
|
||||||
arxiv: arXiv:1303.3997
|
You get information about adapter contamination and other
|
||||||
|
overrepresented sequences.
|
||||||
|
homepage: https://www.bioinformatics.babraham.ac.uk/projects/fastqc/
|
||||||
|
documentation: https://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/
|
||||||
|
## TODO nf-core: If you are using any additional "params" in the main.nf script of the module add them below
|
||||||
|
params:
|
||||||
|
- 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.
|
||||||
|
- conda:
|
||||||
|
type: boolean
|
||||||
|
description: |
|
||||||
|
Run the module with Conda using the software specified
|
||||||
|
via the `conda` directive
|
||||||
|
## TODO nf-core: Add a description of all of the variables used as input
|
||||||
input:
|
input:
|
||||||
-
|
- meta:
|
||||||
- id:
|
type: map
|
||||||
type: val
|
description: |
|
||||||
description: read/read pair id
|
Groovy Map containing sample information
|
||||||
|
e.g. [ id:'test', single_end:false ]
|
||||||
- reads:
|
- reads:
|
||||||
type: file
|
type: file
|
||||||
description: Input fastq file
|
description: |
|
||||||
pattern: "*.{fastq,fq}"
|
List of input FastQ files of size 1 and 2 for single-end and paired-end data,
|
||||||
- index:
|
respectively.
|
||||||
type: file
|
- options:
|
||||||
description: bwa indexes file
|
type: map
|
||||||
pattern: "*.{amb,ann,bwt,pac,sa}"
|
description: |
|
||||||
- prefix:
|
Groovy Map containing module options for passing command-line arguments and
|
||||||
type: val
|
output file paths.
|
||||||
description: bwa index prefix, equivalent to index file names without extensions. Usually the reference genome file name unless otherwise specified.
|
## TODO nf-core: Add a description of all of the variables used as output
|
||||||
output:
|
output:
|
||||||
-
|
- meta:
|
||||||
- bam:
|
type: map
|
||||||
|
description: |
|
||||||
|
Groovy Map containing sample information
|
||||||
|
e.g. [ id:'test', single_end:false ]
|
||||||
|
- html:
|
||||||
type: file
|
type: file
|
||||||
description: Output bam file
|
description: FastQC report
|
||||||
pattern: "*.bam"
|
pattern: "*_fastqc.html"
|
||||||
- bamindex:
|
- zip:
|
||||||
type: file
|
type: file
|
||||||
description: Output bam index file
|
description: FastQC report archive
|
||||||
pattern: "*.bai"
|
pattern: "*_fastqc.zip"
|
||||||
|
- version:
|
||||||
|
type: file
|
||||||
|
description: File containing software version
|
||||||
|
pattern: "*.version.txt"
|
||||||
|
## TODO nf-core: Add your GitHub username below
|
||||||
authors:
|
authors:
|
||||||
- "@jeremy1805"
|
- "@your_github_username"
|
||||||
|
|
Loading…
Reference in a new issue