mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
0745213729
* New last/mafconvert module to convert MAF alignments. The `maf-convert` tool distributed with [LAST](https://gitlab.com/mcfrith/last) reads alignmnts in [MAF](https://genome-asia.ucsc.edu/FAQ/FAQformat.html#format5) format and converts them in another format (axt, blast, blasttab, chain, gff, html, psl, sam, tab). This new module is part of the work described in Issue #464. During this development, we fix the versiob of LAST to 1219 to ensure consistency. We will upgrade it later. * Delete white space. * Update the function.nf file to the dev version.
44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
name: last_mafconvert
|
|
description: Converts MAF alignments in another format.
|
|
keywords:
|
|
- LAST
|
|
- convert
|
|
- alignment
|
|
- MAF
|
|
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/
|
|
tool_dev_url: https://gitlab.com/mcfrith/last
|
|
doi: ""
|
|
licence: ['GPL v3-or-later']
|
|
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- maf:
|
|
type: file
|
|
description: Multiple Aligment Format (MAF) file, compressed with gzip
|
|
pattern: "*.{maf.gz}"
|
|
|
|
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}"
|
|
- alm:
|
|
type: file
|
|
description: Gzipped pairwise alignmnet in TAB or other formats
|
|
pattern: "*.{axt,blast,blasttab,chain,gff,html,psl,sam,tab}.gz"
|
|
|
|
authors:
|
|
- "@aleksandrabliznina"
|