mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
3aacd46da2
* backfilled modules with meta.yml that had no license identifier * harmonized BSD license names * whitespace linting at modules/unzip/meta.yml:12 * harmonized software from US NIH-NCBI/NIST to 'US-Government-Work' * Update modules/bcftools/index/meta.yml `bcftools` is dual-licensed, use associative array to allow for multiple licenses Co-authored-by: Michael L Heuer <heuermh@acm.org> Co-authored-by: Michael L Heuer <heuermh@acm.org>
41 lines
1.3 KiB
YAML
41 lines
1.3 KiB
YAML
name: dshbio_exportsegments
|
|
description: Export assembly segment sequences in GFA 1.0 format to FASTA format
|
|
keywords:
|
|
- gfa
|
|
- assembly
|
|
- segment
|
|
tools:
|
|
- dshbio:
|
|
description: |
|
|
Reads, features, variants, assemblies, alignments, genomic range trees, pangenome
|
|
graphs, and a bunch of random command line tools for bioinformatics. LGPL version 3
|
|
or later.
|
|
homepage: https://github.com/heuermh/dishevelled-bio
|
|
documentation: https://github.com/heuermh/dishevelled-bio
|
|
licence: ['LGPL-3.0-or-later']
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- gfa:
|
|
type: file
|
|
description: Assembly segments in GFA 1.0 format
|
|
pattern: "*.{gfa}"
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- fasta:
|
|
type: file
|
|
description: Assembly segment sequences in FASTA format
|
|
pattern: "*.{fa}"
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
authors:
|
|
- "@heuermh"
|