nf-core_modules/software/hisat2/meta.yml

38 lines
1.3 KiB
YAML
Raw Normal View History

2020-07-11 11:42:13 +00:00
name: HISAT2
2020-03-20 11:04:25 +00:00
description: Graph-based alignment of next generation sequencing reads to a population of genomes
keywords:
- Alignment
- Short reads
- graph FM Index (GFM)
- RNA-seq
tools:
- fastqc:
description: |
HISAT2 is a fast and sensitive alignment program for mapping next-generation
sequencing reads (whole-genome, transcriptome, and exome sequencing data)
against the general human population (as well as against a single reference genome).
Based on GCSA (an extension of BWT for a graph) it is designed and implemented as a
graph FM index (GFM).
homepage: http://daehwankimlab.github.io/hisat2/
documentation: https://ccb.jhu.edu/software/hisat2/manual.shtml
input:
-
- sample_id:
type: string
description: Sample identifier
- reads:
type: file
description: Input FastQ file, or pair of files
output:
-
- report:
type: file
description: mapping statistics report
2020-07-11 11:54:12 +00:00
pattern: "*hisat2_stats.txt"
2020-03-20 11:04:25 +00:00
- alignment:
type: file
description: alignment file in BAM format
2020-07-11 11:54:12 +00:00
pattern: "*hisat2.bam"
2020-03-20 11:04:25 +00:00
authors:
2020-07-11 11:54:12 +00:00
- "@FelixKrueger"