mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23: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>
44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
name: bandage_image
|
|
description: Render an assembly graph in GFA 1.0 format to PNG and SVG image formats
|
|
keywords:
|
|
- gfa
|
|
- graph
|
|
- assembly
|
|
- visualisation
|
|
tools:
|
|
- bandage:
|
|
description: |
|
|
Bandage - a Bioinformatics Application for Navigating De novo Assembly Graphs Easily
|
|
homepage: https://github.com/rrwick/Bandage
|
|
documentation: https://github.com/rrwick/Bandage
|
|
licence: ['GPL-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 graph in GFA 1.0 format
|
|
pattern: "*.gfa"
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- png:
|
|
type: file
|
|
description: Bandage image in PNG format
|
|
pattern: "*.png"
|
|
- svg:
|
|
type: file
|
|
description: Bandage image in SVG format
|
|
pattern: "*.svg"
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
authors:
|
|
- "@heuermh"
|