nf-core_modules/modules/mash/screen/meta.yml

49 lines
1.3 KiB
YAML
Raw Normal View History

2022-05-20 13:23:11 +00:00
name: "mash_screen"
description: Screens query sequences against large sequence databases
keywords:
- screen
- containment
- contamination
- taxonomic assignment
tools:
- "mash":
description: Fast sequence distance estimator that uses MinHash
homepage: https://github.com/marbl/Mash
documentation: https://mash.readthedocs.io/en/latest/sketches.html
tool_dev_url: https://github.com/marbl/Mash
doi: "10.1186/s13059-016-0997-x"
licence: ["https://github.com/marbl/Mash/blob/master/LICENSE.txt"]
input:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
2022-05-25 12:29:14 +00:00
- query:
2022-05-20 13:23:11 +00:00
type: file
2022-05-25 12:29:14 +00:00
description: Query sequences
pattern: "*.fastq.gz"
- sequence_sketch:
2022-05-20 13:23:11 +00:00
type: file
description: Sequence files to match against
2022-05-25 12:29:14 +00:00
pattern: "*.msh"
2022-05-20 13:23:11 +00:00
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"
- screen:
type: file
description: List of sequences from fastx_db similar to query sequences
pattern: "*.screen"
authors:
- "@mahesh-panchal"