2021-01-25 14:14:57 +00:00
|
|
|
name: star_align
|
|
|
|
description: Align reads to a reference genome using STAR
|
|
|
|
keywords:
|
|
|
|
- align
|
|
|
|
- fasta
|
|
|
|
- genome
|
|
|
|
- reference
|
|
|
|
tools:
|
|
|
|
- star:
|
|
|
|
description: |
|
|
|
|
STAR is a software package for mapping DNA sequences against
|
|
|
|
a large reference genome, such as the human genome.
|
|
|
|
homepage: https://github.com/alexdobin/STAR
|
|
|
|
manual: https://github.com/alexdobin/STAR/blob/master/doc/STARmanual.pdf
|
|
|
|
doi: 10.1093/bioinformatics/bts635
|
2021-10-22 22:39:54 +00:00
|
|
|
licence: ['MIT']
|
2021-01-25 14:14:57 +00:00
|
|
|
input:
|
|
|
|
- meta:
|
|
|
|
type: map
|
|
|
|
description: |
|
|
|
|
Groovy Map containing sample information
|
|
|
|
e.g. [ id:'test', single_end:false ]
|
|
|
|
- reads:
|
|
|
|
type: file
|
|
|
|
description: |
|
|
|
|
List of input FastQ files of size 1 and 2 for single-end and paired-end data,
|
|
|
|
respectively.
|
|
|
|
- index:
|
|
|
|
type: directory
|
|
|
|
description: STAR genome index
|
|
|
|
pattern: "star"
|
|
|
|
output:
|
|
|
|
- bam:
|
|
|
|
type: file
|
|
|
|
description: Output BAM file containing read alignments
|
|
|
|
pattern: "*.{bam}"
|
|
|
|
- log_final:
|
|
|
|
type: file
|
|
|
|
description: STAR final log file
|
|
|
|
pattern: "*Log.final.out"
|
|
|
|
- log_out:
|
|
|
|
type: file
|
|
|
|
description: STAR lot out file
|
|
|
|
pattern: "*Log.out"
|
|
|
|
- log_progress:
|
|
|
|
type: file
|
|
|
|
description: STAR log progress file
|
|
|
|
pattern: "*Log.progress.out"
|
2021-10-03 07:20:26 +00:00
|
|
|
- versions:
|
2021-01-25 14:14:57 +00:00
|
|
|
type: file
|
2021-10-03 07:20:26 +00:00
|
|
|
description: File containing software versions
|
2021-09-27 08:41:24 +00:00
|
|
|
pattern: "versions.yml"
|
2021-01-26 12:31:30 +00:00
|
|
|
- bam_sorted:
|
|
|
|
type: file
|
|
|
|
description: Sorted BAM file of read alignments (optional)
|
|
|
|
pattern: "*sortedByCoord.out.bam"
|
|
|
|
- bam_transcript:
|
|
|
|
type: file
|
|
|
|
description: Output BAM file of transcriptome alignment (optional)
|
|
|
|
pattern: "*toTranscriptome.out.bam"
|
|
|
|
- bam_unsorted:
|
|
|
|
type: file
|
|
|
|
description: Unsorted BAM file of read alignments (optional)
|
|
|
|
pattern: "*Aligned.unsort.out.bam"
|
|
|
|
- fastq:
|
|
|
|
type: file
|
|
|
|
description: Unmapped FastQ files (optional)
|
|
|
|
pattern: "*fastq.gz"
|
|
|
|
- tab:
|
|
|
|
type: file
|
|
|
|
description: STAR output tab file(s) (optional)
|
|
|
|
pattern: "*.tab"
|
2021-07-26 17:03:30 +00:00
|
|
|
- junction:
|
|
|
|
type: file
|
|
|
|
description: STAR chimeric junction output file (optional)
|
|
|
|
pattern: "*.out.junction"
|
2021-01-25 14:14:57 +00:00
|
|
|
|
|
|
|
authors:
|
|
|
|
- "@kevinmenden"
|
|
|
|
- "@drpatelh"
|
2021-07-26 17:03:30 +00:00
|
|
|
- "@praveenraj2018"
|