nf-core_modules/modules/nanolyse/meta.yml

48 lines
1.3 KiB
YAML
Raw Normal View History

add nanolyse module (from nanoseq modules) (#471) * add nanolyse modules * add clean.fastq.gz path and md5sum * fix errors * remove unreproducible md5sum * solve linting problem * address PR suggestions * GET_NANOLYSE_FASTA as a local module * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/meta.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/meta.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/nanolyse/test.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * update to the version from nf-core/tools-dev * input and output files cannot have the same names * Update test.yml * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update test.yml * revert Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2021-05-05 10:20:09 +00:00
name: nanolyse
description: DNA contaminant removal using NanoLyse
keywords:
- contaminant_removal
tools:
- nanolyse:
description: |
DNA contaminant removal using NanoLyse
homepage: https://github.com/wdecoster/nanolyse
documentation: https://github.com/wdecoster/nanolyse#nanolyse
licence: ['GPL-3.0-or-later']
add nanolyse module (from nanoseq modules) (#471) * add nanolyse modules * add clean.fastq.gz path and md5sum * fix errors * remove unreproducible md5sum * solve linting problem * address PR suggestions * GET_NANOLYSE_FASTA as a local module * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/meta.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/meta.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/nanolyse/test.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * update to the version from nf-core/tools-dev * input and output files cannot have the same names * Update test.yml * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update test.yml * revert Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2021-05-05 10:20:09 +00:00
input:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- fastq:
type: file
description: |
Basecalled reads in FASTQ.GZ format
pattern: "*.fastq.gz"
- fasta:
type: file
description: |
A reference fasta file against which to filter.
pattern: "*.fasta"
output:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- fastq:
type: file
description: Reads with contaminants removed in FASTQ format
pattern: "*.fastq.gz"
- log:
type: file
description: Log of the Nanolyse run.
pattern: "*.log"
- versions:
add nanolyse module (from nanoseq modules) (#471) * add nanolyse modules * add clean.fastq.gz path and md5sum * fix errors * remove unreproducible md5sum * solve linting problem * address PR suggestions * GET_NANOLYSE_FASTA as a local module * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/meta.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/meta.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/nanolyse/test.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * update to the version from nf-core/tools-dev * input and output files cannot have the same names * Update test.yml * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update test.yml * revert Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2021-05-05 10:20:09 +00:00
type: file
description: File containing software versions
pattern: "versions.yml"
add nanolyse module (from nanoseq modules) (#471) * add nanolyse modules * add clean.fastq.gz path and md5sum * fix errors * remove unreproducible md5sum * solve linting problem * address PR suggestions * GET_NANOLYSE_FASTA as a local module * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/meta.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update software/nanolyse/meta.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/nanolyse/test.yml Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * update to the version from nf-core/tools-dev * input and output files cannot have the same names * Update test.yml * Update software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update tests/software/nanolyse/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update test.yml * revert Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2021-05-05 10:20:09 +00:00
authors:
- "@yuukiiwa"