nf-core_modules/modules/dastool/dastool/meta.yml
James A. Fellows Yates 8ce6810787
Update DASTool to 1.1.4 (#1471)
* fix: remove left-over unnecessary code

* Update DASTool

* Fix tests

* Fix test.ymls

* Fix container build version

* Make tests less strict to account for variability

* Apply suggestions from code review

Co-authored-by: Daniel Straub <42973691+d4straub@users.noreply.github.com>

* Add missing description

Co-authored-by: Sateesh Peri <33637490+sateeshperi@users.noreply.github.com>
Co-authored-by: Daniel Straub <42973691+d4straub@users.noreply.github.com>
2022-04-01 11:33:07 +02:00

103 lines
2.8 KiB
YAML

name: dastool_dastool
description: DAS Tool binning step.
keywords:
- binning
- das tool
- table
- de novo
- bins
- contigs
- assembly
- das_tool
tools:
- dastool:
description: |
DAS Tool is an automated method that integrates the results
of a flexible number of binning algorithms to calculate an optimized, non-redundant
set of bins from a single assembly.
homepage: https://github.com/cmks/DAS_Tool
documentation: https://github.com/cmks/DAS_Tool
tool_dev_url: https://github.com/cmks/DAS_Tool
doi: "10.1038/s41564-018-0171-1"
licence: ["BSD"]
input:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- contigs:
type: file
description: fasta file
pattern: "*.{fa.gz,fas.gz,fasta.gz}"
- bins:
type: file
description: "FastaToContig2Bin tabular file generated with dastool/fastatocontig2bin"
pattern: "*.tsv"
- proteins:
type: file
description: Predicted proteins in prodigal fasta format (>scaffoldID_geneNo)
pattern: "*.{fa.gz,fas.gz,fasta.gz}"
- db_directory:
type: file
description: (optional) Directory of single copy gene database.
output:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- version:
type: file
description: File containing software version
pattern: "versions.yml"
- log:
type: file
description: Log file of the run
pattern: "*.log"
- summary:
type: file
description: Summary of output bins including quality and completeness estimates
pattern: "*summary.txt"
- contig2bin:
type: file
description: Scaffolds to bin file of output bins
pattern: "*.contig2bin.txt"
- eval:
type: file
description: Quality and completeness estimates of input bin sets
pattern: "*.eval"
- bins:
description: Final refined bins in fasta format
pattern: "*.fa"
- pdfs:
type: file
description: Plots showing the amount of high quality bins and score distribution of bins per method
pattern: "*.pdf"
- fasta_proteins:
type: file
description: Output from prodigal if not already supplied
pattern: "*.proteins.faa"
- fasta_archaea_scg:
type: file
description: Results of archaeal single-copy-gene prediction
pattern: "*.archaea.scg"
- fasta_bacteria_scg:
type: file
description: Results of bacterial single-copy-gene prediction
pattern: "*.bacteria.scg"
- b6:
type: file
description: Results in b6 format
pattern: "*.b6"
- seqlength:
type: file
description: Summary of contig lengths
pattern: "*.seqlength"
authors:
- "@maxibor"
- "@jfy133"