2021-11-15 15:57:58 +00:00
|
|
|
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"
|
2022-02-15 11:15:27 +00:00
|
|
|
licence: ["GNU GPLV3"]
|
2021-11-15 15:57:58 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
- meta:
|
|
|
|
type: map
|
|
|
|
description: |
|
|
|
|
Groovy Map containing sample information
|
|
|
|
e.g. [ id:'test', single_end:false ]
|
2021-11-21 13:00:53 +00:00
|
|
|
- reads:
|
|
|
|
type: file
|
|
|
|
description: A fasta or fastq file of reads to align
|
|
|
|
pattern: "*.{fasta,fastq}"
|
2021-11-15 15:57:58 +00:00
|
|
|
- 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"
|
2021-11-21 13:00:53 +00:00
|
|
|
- "@lassefolkersen"
|
|
|
|
- "@ksahlin"
|