mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
e745e167c1
* 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>
52 lines
1.5 KiB
YAML
52 lines
1.5 KiB
YAML
name: subread_featurecounts
|
|
description: Count reads that map to genomic features
|
|
keywords:
|
|
- counts
|
|
- fasta
|
|
- genome
|
|
- reference
|
|
|
|
tools:
|
|
- featurecounts:
|
|
description: featureCounts is a highly efficient general-purpose read summarization program that counts mapped reads for genomic features such as genes, exons, promoter, gene bodies, genomic bins and chromosomal locations. It can be used to count both RNA-seq and genomic DNA-seq reads.
|
|
homepage: http://bioinf.wehi.edu.au/featureCounts/
|
|
documentation: http://bioinf.wehi.edu.au/subread-package/SubreadUsersGuide.pdf
|
|
doi: "10.1093/bioinformatics/btt656"
|
|
licence: ["GPL v3"]
|
|
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- bam:
|
|
type: file
|
|
description: BAM/SAM file containing read alignments
|
|
pattern: "*.{bam}"
|
|
- annotation:
|
|
type: file
|
|
description: Genomic features annotation in GTF or SAF
|
|
pattern: "*.{gtf,saf}"
|
|
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- counts:
|
|
type: file
|
|
description: Counts of reads mapping to features
|
|
pattern: "*featureCounts.txt"
|
|
- summary:
|
|
type: file
|
|
description: Summary log file
|
|
pattern: "*.featureCounts.txt.summary"
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
|
|
authors:
|
|
- "@ntoda03"
|