mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
49 lines
1.2 KiB
YAML
49 lines
1.2 KiB
YAML
|
name: last_train
|
||
|
description: Find suitable score parameters for sequence alignment
|
||
|
keywords:
|
||
|
- LAST
|
||
|
- train
|
||
|
- fastq
|
||
|
- fasta
|
||
|
tools:
|
||
|
- last:
|
||
|
description: LAST finds & aligns related regions of sequences.
|
||
|
homepage: https://gitlab.com/mcfrith/last
|
||
|
documentation: https://gitlab.com/mcfrith/last/-/blob/main/doc/last-train.rst
|
||
|
tool_dev_url: https://gitlab.com/mcfrith/last
|
||
|
doi: ""
|
||
|
licence: ['GPL v3-or-later']
|
||
|
|
||
|
input:
|
||
|
- index:
|
||
|
type: directory
|
||
|
description: Directory containing the files of the LAST index
|
||
|
pattern: "lastdb/"
|
||
|
- meta:
|
||
|
type: map
|
||
|
description: |
|
||
|
Groovy Map containing sample information
|
||
|
e.g. [ id:'test', single_end:false ]
|
||
|
- fastx:
|
||
|
type: file
|
||
|
description: FASTA/FASTQ file
|
||
|
pattern: "*.{fasta,fastq}"
|
||
|
|
||
|
output:
|
||
|
- meta:
|
||
|
type: map
|
||
|
description: |
|
||
|
Groovy Map containing sample information
|
||
|
e.g. [ id:'test', single_end:false ]
|
||
|
- version:
|
||
|
type: file
|
||
|
description: File containing software version
|
||
|
pattern: "*.{version.txt}"
|
||
|
- param_file:
|
||
|
type: file
|
||
|
description: Trained parameter file
|
||
|
pattern: "*.par"
|
||
|
|
||
|
authors:
|
||
|
- "@aleksandrabliznina"
|