2021-05-09 22:55:35 +00:00
|
|
|
name: seqtk_sample
|
|
|
|
description: Subsample reads from FASTQ files
|
|
|
|
keywords:
|
|
|
|
- sample
|
|
|
|
tools:
|
|
|
|
- seqtk:
|
|
|
|
description: Seqtk is a fast and lightweight tool for processing sequences in the FASTA or FASTQ format. Seqtk sample command subsamples sequences.
|
|
|
|
homepage: https://github.com/lh3/seqtk
|
|
|
|
documentation: https://docs.csc.fi/apps/seqtk/
|
2021-06-14 11:23:15 +00:00
|
|
|
tool_dev_url: https://github.com/lh3/seqtk
|
2022-02-15 11:15:27 +00:00
|
|
|
licence: ["MIT"]
|
2021-05-09 22:55:35 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
- meta:
|
|
|
|
type: map
|
|
|
|
description: |
|
|
|
|
Groovy Map containing sample information
|
|
|
|
e.g. [ id:'test', single_end:false ]
|
|
|
|
- reads:
|
|
|
|
type: file
|
|
|
|
description: List of input FastQ files of size 1 and 2 for single-end and paired-end data,respectively.
|
|
|
|
pattern: "*.{fastq.gz}"
|
2021-06-14 11:23:15 +00:00
|
|
|
- sample_size:
|
|
|
|
type: value
|
|
|
|
description: Number of reads to sample.
|
2021-05-09 22:55:35 +00:00
|
|
|
|
|
|
|
output:
|
|
|
|
- meta:
|
|
|
|
type: map
|
|
|
|
description: |
|
|
|
|
Groovy Map containing sample information
|
|
|
|
e.g. [ id:'test', single_end:false ]
|
2021-10-03 07:20:26 +00:00
|
|
|
- versions:
|
2021-05-09 22:55:35 +00:00
|
|
|
type: file
|
2021-10-03 07:20:26 +00:00
|
|
|
description: File containing software versions
|
2021-09-27 08:41:24 +00:00
|
|
|
pattern: "versions.yml"
|
2021-05-09 22:55:35 +00:00
|
|
|
- reads:
|
|
|
|
type: file
|
2021-06-14 11:23:15 +00:00
|
|
|
description: Subsampled FastQ files, 1 for single-end data or 2 for paired-end data.
|
2021-05-09 22:55:35 +00:00
|
|
|
pattern: "*.{fastq.gz}"
|
|
|
|
|
|
|
|
authors:
|
|
|
|
- "@kaurravneet4123"
|
2021-06-14 11:23:15 +00:00
|
|
|
- "@sidorov-si"
|