2021-02-12 16:22:07 +00:00
|
|
|
name: cat_fastq
|
|
|
|
description: Concatenates fastq files
|
|
|
|
keywords:
|
2022-02-15 11:15:27 +00:00
|
|
|
- fastq
|
|
|
|
- concatenate
|
2021-02-12 16:22:07 +00:00
|
|
|
tools:
|
2022-02-15 11:15:27 +00:00
|
|
|
- cat:
|
|
|
|
description: |
|
|
|
|
The cat utility reads files sequentially, writing them to the standard output.
|
|
|
|
documentation: https://www.gnu.org/software/coreutils/manual/html_node/cat-invocation.html
|
|
|
|
licence: ["GPL-3.0-or-later"]
|
2021-02-12 16:22:07 +00:00
|
|
|
input:
|
2022-02-15 11:15:27 +00:00
|
|
|
- meta:
|
|
|
|
type: map
|
|
|
|
description: |
|
|
|
|
Groovy Map containing sample information
|
|
|
|
e.g. [ id:'test', single_end:false ]
|
|
|
|
- reads:
|
|
|
|
type: list
|
|
|
|
description: |
|
|
|
|
List of input FastQ files to be concatenated.
|
2021-02-12 16:22:07 +00:00
|
|
|
output:
|
2022-02-15 11:15:27 +00:00
|
|
|
- meta:
|
|
|
|
type: map
|
|
|
|
description: |
|
|
|
|
Groovy Map containing sample information
|
|
|
|
e.g. [ id:'test', single_end:false ]
|
|
|
|
- reads:
|
|
|
|
type: file
|
|
|
|
description: Merged fastq file
|
|
|
|
pattern: "*.{merged.fastq.gz}"
|
|
|
|
- versions:
|
|
|
|
type: file
|
|
|
|
description: File containing software versions
|
|
|
|
pattern: "versions.yml"
|
2021-10-03 07:20:26 +00:00
|
|
|
|
2021-02-12 16:22:07 +00:00
|
|
|
authors:
|
2022-02-15 11:15:27 +00:00
|
|
|
- "@joseespinosa"
|
|
|
|
- "@drpatelh"
|