mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
e560fbbc3e
* first commit with imputeme as a module. Extensive re-write of imputeme-code, resulting in release v1.0.7 that is runnable in the next-flow framework. Co-authored-by: EC2 Default User <ec2-user@ip-172-31-21-198.us-west-2.compute.internal> Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> Co-authored-by: Pontus Freyhult <pontus_github@soua.net>
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
name: imputeme_vcftoprs
|
|
description: inputs a VCF-file with whole genome DNA sequencing. Outputs a JSON with polygenic risk scores.
|
|
keywords:
|
|
- PRS, VCF
|
|
tools:
|
|
- imputeme:
|
|
description:
|
|
homepage: www.impute.me
|
|
documentation: https://hub.docker.com/repository/docker/lassefolkersen/impute-me
|
|
tool_dev_url: https://github.com/lassefolkersen/impute-me
|
|
doi: "https://doi.org/10.3389/fgene.2020.00578"
|
|
licence: LGPL3
|
|
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ vcf:'test', single_end:false ]
|
|
- vcf:
|
|
type: file
|
|
description: vcf file
|
|
pattern: "*.{vcf}"
|
|
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
- json:
|
|
type: file
|
|
description: json containing Z-scores for all calculated PRS
|
|
pattern: "*.{json}"
|
|
|
|
authors:
|
|
- "@lassefolkersen"
|