nf-core_modules/modules/blast/tblastn/meta.yml
Guoying Qi 8e21005d53
Add blast/tblastn module (#2092)
* cherry pick the module files from sanger-tol branch and update the test data from official nf-core test datasets

* Update modules/blast/tblastn/main.nf, align the emit

Co-authored-by: nvnieuwk <101190534+nvnieuwk@users.noreply.github.com>

Co-authored-by: nvnieuwk <101190534+nvnieuwk@users.noreply.github.com>
2022-09-26 17:43:41 +02:00

41 lines
1 KiB
YAML

name: blast_tblastn
description: Queries a BLAST DNA database
keywords:
- fasta
- blast
- tblastn
- DNA sequence
tools:
- blast:
description: |
Protein to Translated Nucleotide BLAST.
homepage: https://blast.ncbi.nlm.nih.gov/Blast.cgi
documentation: https://blast.ncbi.nlm.nih.gov/Blast.cgi?CMD=Web&PAGE_TYPE=Blastdocs
doi: 10.1016/S0022-2836(05)80360-2
licence: ["US-Government-Work"]
input:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- fasta:
type: file
description: Input fasta file containing queries sequences
pattern: "*.{fa,fasta}"
- db:
type: directory
description: Directory containing blast database
pattern: "*"
output:
- txt:
type: file
description: File containing blastn hits
pattern: "*.{tblastn.txt}"
- versions:
type: file
description: File containing software versions
pattern: "versions.yml"
authors:
- "@yumisims"
- "@gq2"