mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
f080015754
* style: Add prettier config files * build: Add prettier vscode extension * ci: Replace markdownlint and yamllint with prettier * style: Run prettier * style: Use indent of 2 for markdown as well https://github.com/nf-core/tools/pull/1470#issuecomment-1071028358 * style: Fix indent * style: Let editorconfig take over tab widths * style: yaml => yml * ci: Run prettier once Co-authored-by: Phil Ewels <phil.ewels@scilifelab.se> Co-authored-by: Phil Ewels <phil.ewels@scilifelab.se>
47 lines
1.7 KiB
YAML
47 lines
1.7 KiB
YAML
name: rgi_main
|
|
description: Predict antibiotic resistance from protein or nucleotide data
|
|
keywords:
|
|
- bacteria
|
|
- fasta
|
|
- antibiotic resistance
|
|
tools:
|
|
- rgi:
|
|
description: This tool provides a preliminary annotation of your DNA sequence(s) based upon the data available in The Comprehensive Antibiotic Resistance Database (CARD). Hits to genes tagged with Antibiotic Resistance ontology terms will be highlighted. As CARD expands to include more pathogens, genomes, plasmids, and ontology terms this tool will grow increasingly powerful in providing first-pass detection of antibiotic resistance associated genes. See license at CARD website
|
|
homepage: https://card.mcmaster.ca
|
|
documentation: https://github.com/arpcard/rgi
|
|
tool_dev_url: https://github.com/arpcard/rgi
|
|
doi: "10.1093/nar/gkz935"
|
|
licence: ["https://card.mcmaster.ca/about"]
|
|
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- fasta:
|
|
type: file
|
|
description: Nucleotide or protein sequences in FASTA format
|
|
pattern: "*.{fasta,fasta.gz,fa,fa.gz,fna,fna.gz,faa,faa.gz}"
|
|
|
|
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"
|
|
- json:
|
|
type: file
|
|
description: JSON formatted file with RGI results
|
|
pattern: "*.{json}"
|
|
- tsv:
|
|
type: file
|
|
description: Tab-delimited file with RGI results
|
|
pattern: "*.{txt}"
|
|
|
|
authors:
|
|
- "@rpetit3"
|