nf-core_modules/modules/ismapper/meta.yml
Kevin 3aacd46da2
Backfill software licenses meta (#876)
* 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>
2021-10-22 15:39:54 -07:00

50 lines
1.4 KiB
YAML

name: ismapper
description: Identify insertion sites positions in bacterial genomes
keywords:
- fastq
- insertion sequences
tools:
- ismapper:
description: A mapping-based tool for identification of the site and orientation of IS insertions in bacterial genomes.
homepage: https://github.com/jhawkey/IS_mapper
documentation: https://github.com/jhawkey/IS_mapper
tool_dev_url: https://github.com/jhawkey/IS_mapper
doi: "https://doi.org/10.1186/s12864-015-1860-2"
licence: ['BSD-3-Clause']
input:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- reads:
type: file
description: A set of paired-end FASTQ files
pattern: "*.{fastq.gz,fq.gz}"
- reference:
type: file
description: Reference genome in GenBank format
pattern: "*.{gbk}"
- query:
type: file
description: Insertion sequences to query in FASTA format
pattern: "*.{fasta,fa}"
output:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- versions:
type: file
description: File containing software versions
pattern: "versions.yml"
- results:
type: directory
description: Directory containing ISMapper result files
pattern: "*/*"
authors:
- "@rpetit3"