mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
1d668eefa2
* Update seqwish to version 0.7.2 * seqwish can work with a comma-separated list of PAFs * level with nf-core/modules master branch * update seqwish/induce to v0.7.6 * add pangenome test data * test seqwish/induce v0.7.6 with pangenomics test data * we already have pointed to the pangenomics test data sets * update paths to test data * add path to bgzipped fa, gzi, fai * remove one tab * remove one tab * actually execute the 2nd test * try to fix versions.yml * pangenomic tests can be run in their own subworkflow * maybe the csv input is the problem * remove space as suggested by Rike * csv input was not the problem * update test.yml * typo * enable pangenome tests * add md5sum for pangenomic test * Update tests/modules/seqwish/induce/test.yml Co-authored-by: Gisela Gabernet <gisela.gabernet@gmail.com> * PAF input is a list of files * beautify comment Co-authored-by: Michael L Heuer <heuermh@acm.org> Co-authored-by: Gisela Gabernet <gisela.gabernet@gmail.com> Co-authored-by: Simon Pearce <24893913+SPPearce@users.noreply.github.com>
47 lines
1.3 KiB
YAML
47 lines
1.3 KiB
YAML
name: seqwish_induce
|
|
description: Induce a variation graph in GFA format from alignments in PAF format
|
|
keywords:
|
|
- induce
|
|
- paf
|
|
- gfa
|
|
- graph
|
|
- variation graph
|
|
tools:
|
|
- seqwish:
|
|
description: |
|
|
seqwish implements a lossless conversion from pairwise alignments between
|
|
sequences to a variation graph encoding the sequences and their alignments.
|
|
homepage: https://github.com/ekg/seqwish
|
|
documentation: https://github.com/ekg/seqwish
|
|
licence: ["MIT"]
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- paf:
|
|
type: list
|
|
description: comma-separated PAF file(s) of alignments, single entry allowed
|
|
pattern: "[*.{paf,paf.gz},*.{paf,paf.gz},...]"
|
|
- fasta:
|
|
type: file
|
|
description: FASTA file used to generate alignments
|
|
pattern: "*.{fa,fa.gz,fasta,fasta.gz}"
|
|
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- gfa:
|
|
type: file
|
|
description: Variation graph in GFA 1.0 format
|
|
pattern: "*.{gfa}"
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
authors:
|
|
- "@heuermh"
|