mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
4c59984d7b
* add seqkit pair module * local tests * local tests * fix workflow name * fix workflow name * fix version indentation * fix version indentation * fix version indentation * fix review comments * fix review comments * fix github usernames * minor fix * add meta unpaired output Co-authored-by: Peri <rrx8@cdc.gov>
48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
name: seqkit_pair
|
|
description: match up paired-end reads from two fastq files
|
|
keywords:
|
|
- seqkit
|
|
- pair
|
|
tools:
|
|
- seqkit:
|
|
description: Cross-platform and ultrafast toolkit for FASTA/Q file manipulation, written by Wei Shen.
|
|
homepage: https://bioinf.shenwei.me/seqkit/usage/
|
|
documentation: https://bioinf.shenwei.me/seqkit/usage/
|
|
tool_dev_url: https://github.com/shenwei356/seqkit/
|
|
doi: "10.1371/journal.pone.0163962"
|
|
licence: ['MIT']
|
|
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- reads:
|
|
type: file
|
|
description: |
|
|
List of input paired-end FastQ files.
|
|
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
- reads:
|
|
type: file
|
|
description: Paired fastq reads
|
|
pattern: "*.paired.fastq.gz"
|
|
- unpaired_reads:
|
|
type: file
|
|
description: Unpaired reads (optional)
|
|
pattern: "*.unpaired.fastq.gz"
|
|
|
|
authors:
|
|
- "@sateeshperi"
|
|
- "@mjcipriano"
|
|
- "@hseabolt"
|