2021-03-25 21:08:46 +00:00
name : hisat2_align
description : Align RNA-Seq reads to a reference with HISAT2
keywords :
2022-02-15 11:15:27 +00:00
- align
- fasta
- genome
- reference
2021-03-25 21:08:46 +00:00
tools :
- hisat2 :
description : HISAT2 is a fast and sensitive alignment program for mapping next-generation sequencing reads (both DNA and RNA) to a population of human genomes as well as to a single reference genome.
homepage : https://daehwankimlab.github.io/hisat2/
documentation : https://daehwankimlab.github.io/hisat2/manual/
doi : "10.1038/s41587-019-0201-4"
2022-02-15 11:15:27 +00:00
licence : [ "MIT" ]
2021-03-25 21:08:46 +00:00
input :
- meta :
type : map
description : |
2022-02-15 11:15:27 +00:00
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
2021-03-25 21:08:46 +00:00
- reads :
type : file
description : |
2022-02-15 11:15:27 +00:00
List of input FastQ files of size 1 and 2 for single-end and paired-end data,
respectively.
2021-03-25 21:08:46 +00:00
- index :
type : file
description : HISAT2 genome index file
pattern : "*.ht2"
- splicesites :
type : file
description : Splices sites in gtf file
pattern : "*.{txt}"
output :
- meta :
type : map
description : |
2022-02-15 11:15:27 +00:00
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
2021-03-25 21:08:46 +00:00
- bam :
type : file
description : Output BAM file containing read alignments
pattern : "*.{bam}"
- summary :
type : file
description : Aligment log
pattern : "*.log"
2021-10-03 07:20:26 +00:00
- versions :
2021-03-25 21:08:46 +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-03-25 21:08:46 +00:00
authors :
- "@ntoda03"