nf-core_modules/modules/rsem/preparereference/meta.yml
Harshil Patel e937c7950a
Rename software/ directory to modules/ to re-organise module structure (#567)
* Update README

* Rename pytest_software.yml to pytest_modules.yml

* Rename main software directory to modules

* Remove deprecated modules

* Rename tests software to modules

* Replace paths for tests in pytest_modules.yml

* Replace software with modules in Github Actions

* Replace software with modules in main.nf tests

* Rename software to modules in test.yml
2021-07-07 10:10:18 +01:00

37 lines
1,017 B
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
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"
- version:
type: file
description: File containing software version
pattern: "*.{version.txt}"
authors:
- "@drpatelh"
- "@kevinmenden"