nf-core_modules/modules/ultra/pipeline/meta.yml
Matthias Hörtenhuber e745e167c1
Fix formatting in yaml files, add yamllint config (#1279)
* 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>
2022-02-15 11:15:27 +00:00

52 lines
1.3 KiB
YAML

name: ultra_pipeline
description: uLTRA aligner - A wrapper around minimap2 to improve small exon detection
keywords:
- uLTRA
- minimap2
tools:
- ultra:
description: Splice aligner of long transcriptomic reads to genome.
homepage: https://github.com/ksahlin/uLTRA
documentation: https://github.com/ksahlin/uLTRA
tool_dev_url: https://github.com/ksahlin/uLTRA
doi: "10.1093/bioinformatics/btab540"
licence: ["GNU GPLV3"]
input:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- reads:
type: file
description: A fasta or fastq file of reads to align
pattern: "*.{fasta,fastq}"
- genome:
type: file
description: fasta file of reference genome
pattern: "*.fasta"
- gtf:
type: file
description: A annotation of use the genome
pattern: "*.gtf"
output:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- sam:
type: file
description: The aligned reads in sam format
pattern: "*.sam"
- versions:
type: file
description: File containing software versions
pattern: "versions.yml"
authors:
- "@sguizard"
- "@lassefolkersen"
- "@ksahlin"