mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
f080015754
* style: Add prettier config files * build: Add prettier vscode extension * ci: Replace markdownlint and yamllint with prettier * style: Run prettier * style: Use indent of 2 for markdown as well https://github.com/nf-core/tools/pull/1470#issuecomment-1071028358 * style: Fix indent * style: Let editorconfig take over tab widths * style: yaml => yml * ci: Run prettier once Co-authored-by: Phil Ewels <phil.ewels@scilifelab.se> Co-authored-by: Phil Ewels <phil.ewels@scilifelab.se>
56 lines
1.5 KiB
YAML
56 lines
1.5 KiB
YAML
name: plink2_score
|
|
description: Apply a scoring system to each sample in a plink 2 fileset
|
|
keywords:
|
|
- plink2
|
|
- score
|
|
tools:
|
|
- plink2:
|
|
description: |
|
|
Whole genome association analysis toolset, designed to perform a range
|
|
of basic, large-scale analyses in a computationally efficient manner
|
|
homepage: http://www.cog-genomics.org/plink/2.0/
|
|
documentation: http://www.cog-genomics.org/plink/2.0/general_usage
|
|
tool_dev_url: None
|
|
doi: "10.1186/s13742-015-0047-8"
|
|
licence: ["GPL v3"]
|
|
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- pgen:
|
|
type: file
|
|
description: PLINK 2 binary genotype table
|
|
pattern: "*.{pgen}"
|
|
- psam:
|
|
type: file
|
|
description: PLINK 2 sample information file
|
|
pattern: "*.{psam}"
|
|
- pvar:
|
|
type: file
|
|
description: PLINK 2 variant information file
|
|
pattern: "*.{pvar}"
|
|
- scorefile:
|
|
type: file
|
|
description: A text file containing variant identifiers and weights
|
|
pattern: "*.{scores,txt,scorefile}"
|
|
|
|
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"
|
|
- score:
|
|
type: file
|
|
description: A text file containing sample scores, in plink 2 .sscore format
|
|
pattern: "*.{sscore}"
|
|
|
|
authors:
|
|
- "@nebfield"
|