mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
e745e167c1
* fix yml formatting * allow fastq.gz and fq.gz as file input, add meta.yml and test * fix yaml files * Revert "allow fastq.gz and fq.gz as file input, add meta.yml and test" This reverts commit 34002d7a7a8c7f7bb4600c3377f35c87849f71a4. * prettier magic! * fix comments for yamllint * remove node version number * fix linting errors Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
62 lines
1.8 KiB
YAML
62 lines
1.8 KiB
YAML
name: isoseq3_refine
|
|
description: Generate transcripts by clustering HiFi reads
|
|
keywords:
|
|
- isoseq3
|
|
- isoseq3/refine
|
|
tools:
|
|
- isoseq3:
|
|
description: IsoSeq3 - Scalable De Novo Isoform Discovery
|
|
homepage: https://github.com/PacificBiosciences/IsoSeq/blob/master/isoseq-clustering.md
|
|
documentation: https://github.com/PacificBiosciences/IsoSeq/blob/master/isoseq-clustering.md
|
|
tool_dev_url: https://github.com/PacificBiosciences/IsoSeq/blob/master/isoseq-clustering.md
|
|
doi: ""
|
|
licence: ["BSD-3-Clause-Clear"]
|
|
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test ]
|
|
- bam:
|
|
type: file
|
|
description: BAM file, cleaned ccs generated by lima
|
|
pattern: "*.bam"
|
|
- primers:
|
|
type: file
|
|
description: fasta file of primers
|
|
pattern: "*.fasta"
|
|
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test' ]
|
|
- bam:
|
|
type: file
|
|
description: Set of complete reads (with polyA tail), where the polyA has been trimmed
|
|
pattern: "*.bam"
|
|
- pbi:
|
|
type: file
|
|
description: Pacbio index file from polyA trimmed reads
|
|
pattern: "*.pbi"
|
|
- consensusreadset:
|
|
type: file
|
|
description: Metadata about read library
|
|
pattern: "*.xml"
|
|
- summary:
|
|
type: file
|
|
description: json file describing number of full length reads, full length non chimeric reads and full length non chimeric polyA reads
|
|
pattern: "*.json"
|
|
- report:
|
|
type: file
|
|
description: Metadata about primer and polyA detection (primers/polyA/insert length, strand, primer name)
|
|
pattern: "*.csv"
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
|
|
authors:
|
|
- "@sguizard"
|