mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23: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>
38 lines
1 KiB
YAML
38 lines
1 KiB
YAML
name: rsem_preparereference
|
|
description: Prepare a reference genome for RSEM
|
|
keywords:
|
|
- rsem
|
|
- reference
|
|
tools:
|
|
- rseqc:
|
|
description: |
|
|
RSEM: accurate transcript quantification from RNA-Seq data with or without a reference genome
|
|
homepage: https://github.com/deweylab/RSEM
|
|
documentation: https://github.com/deweylab/RSEM
|
|
doi: https://doi.org/10.1186/1471-2105-12-323
|
|
licence: ["GPL-3.0-or-later"]
|
|
input:
|
|
- fasta:
|
|
type: file
|
|
description: The Fasta file of the reference genome
|
|
pattern: "*.{fasta,fa}"
|
|
- gtf:
|
|
type: file
|
|
description: The GTF file of the reference genome
|
|
pattern: "*.gtf"
|
|
output:
|
|
- rsem:
|
|
type: directory
|
|
description: RSEM index directory
|
|
pattern: "rsem"
|
|
- transcript_fasta:
|
|
type: file
|
|
description: Fasta file of transcripts
|
|
pattern: "rsem/*transcripts.fa"
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
authors:
|
|
- "@drpatelh"
|
|
- "@kevinmenden"
|