nf-core_modules/modules/ampir/meta.yml

60 lines
1.8 KiB
YAML
Raw Normal View History

2022-05-25 11:27:10 +00:00
name: "ampir"
description: A fast and user-friendly method to predict antimicrobial peptides (AMPs) from any given size protein dataset. ampir uses a supervised statistical machine learning approach to predict AMPs.
keywords:
- ampir
- amp
- antimicrobial peptide prediction
tools:
- "ampir":
description: "A toolkit to predict antimicrobial peptides from protein sequences on a genome-wide scale."
homepage: "https://github.com/Legana/ampir"
2022-06-09 13:37:35 +00:00
documentation: "https://cran.r-project.org/web/packages/ampir/index.html"
2022-05-25 11:27:10 +00:00
tool_dev_url: "https://github.com/Legana/ampir"
doi: "10.1093/bioinformatics/btaa653"
licence: ["GPL v2"]
input:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- faa:
type: file
description: FASTA file containing amino acid sequences
pattern: "*.{faa,fasta}"
- model:
type: value
2022-06-09 14:59:00 +00:00
description: Built-in model for AMP prediction
2022-05-25 11:27:10 +00:00
pattern: "{precursor,mature}"
2022-06-09 14:59:00 +00:00
- min_length:
type: value
description: Minimum protein length for which predictions will be generated
pattern: "[0-9]+"
- min_probability:
2022-05-25 11:27:10 +00:00
type: value
description: Cut-off for AMP prediction
pattern: "[0-9][0-9]"
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"
2022-06-09 13:37:35 +00:00
- amps_faa:
2022-05-25 11:27:10 +00:00
type: file
2022-06-09 13:37:35 +00:00
description: File containing AMP predictions in amino acid FASTA format
pattern: "*.{faa}"
2022-06-10 12:46:58 +00:00
- amps_tsv:
2022-06-09 13:37:35 +00:00
type: file
description: File containing AMP predictions in TSV format
pattern: "*.tsv"
2022-05-25 11:27:10 +00:00
authors:
- "@jasmezz"