|
| 1 | +# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/modules/meta-schema.json |
| 2 | +name: "gcta_makegrmpart" |
| 3 | +description: Compute one partition of a GCTA genetic relationship matrix |
| 4 | +keywords: |
| 5 | + - gcta |
| 6 | + - genome-wide complex trait analysis |
| 7 | + - grm |
| 8 | + - genetic relationship matrix |
| 9 | + - genetics |
| 10 | +tools: |
| 11 | + - "gcta": |
| 12 | + description: "GCTA is a tool for genome-wide complex trait analysis." |
| 13 | + homepage: "https://yanglab.westlake.edu.cn/software/gcta/" |
| 14 | + documentation: "https://yanglab.westlake.edu.cn/software/gcta/static/gcta_doc_latest.pdf" |
| 15 | + tool_dev_url: "https://github.com/jianyangqt/gcta" |
| 16 | + licence: |
| 17 | + - "GPL-3.0-only" |
| 18 | + identifier: biotools:gcta |
| 19 | +input: |
| 20 | + - - meta: |
| 21 | + type: map |
| 22 | + description: | |
| 23 | + Groovy Map containing GRM-partition sample metadata |
| 24 | + e.g. `[ id:'gcta_grm' ]` |
| 25 | + - nparts_gcta: |
| 26 | + type: integer |
| 27 | + description: Total number of GRM partitions requested via |
| 28 | + `--make-grm-part`; defaults to `1` when `null` |
| 29 | + default: 1 |
| 30 | + - part_gcta_job: |
| 31 | + type: integer |
| 32 | + description: One-based index of the GRM partition to compute via |
| 33 | + `--make-grm-part`; defaults to `1` when `null` |
| 34 | + default: 1 |
| 35 | + - mfile: |
| 36 | + type: file |
| 37 | + description: GCTA multi-input manifest consumed by `--mbfile` or |
| 38 | + `--mpfile` |
| 39 | + pattern: "*.{mbfile,mpfile,txt}" |
| 40 | + ontologies: |
| 41 | + - edam: "http://edamontology.org/format_2330" |
| 42 | + - bed_pgen: |
| 43 | + type: file |
| 44 | + description: Collection of PLINK primary genotype files referenced by the |
| 45 | + multi-input manifest |
| 46 | + pattern: "*.{bed,pgen}" |
| 47 | + ontologies: |
| 48 | + - edam: "http://edamontology.org/format_3003" |
| 49 | + - bim_pvar: |
| 50 | + type: file |
| 51 | + description: Collection of PLINK variant metadata files referenced by the |
| 52 | + multi-input manifest |
| 53 | + pattern: "*.{bim,pvar}" |
| 54 | + ontologies: [] |
| 55 | + - fam_psam: |
| 56 | + type: file |
| 57 | + description: Collection of PLINK sample metadata files referenced by the |
| 58 | + multi-input manifest |
| 59 | + pattern: "*.{fam,psam}" |
| 60 | + ontologies: [] |
| 61 | + - - meta2: |
| 62 | + type: map |
| 63 | + description: | |
| 64 | + Groovy Map containing SNP-selection metadata |
| 65 | + e.g. `[ id:'snp_group1' ]` |
| 66 | + - snp_group_file: |
| 67 | + type: file |
| 68 | + description: Optional SNP extraction file passed to `--extract`; provide |
| 69 | + `[]` when absent |
| 70 | + pattern: "*.{txt,list}" |
| 71 | + ontologies: |
| 72 | + - edam: "http://edamontology.org/format_2330" |
| 73 | +output: |
| 74 | + grm_files: |
| 75 | + - - meta: |
| 76 | + type: map |
| 77 | + description: | |
| 78 | + Groovy Map containing GRM-partition sample metadata |
| 79 | + e.g. `[ id:'gcta_grm' ]` |
| 80 | + - "*.part_${nparts}_${part}.grm.*": |
| 81 | + type: file |
| 82 | + description: Partitioned GRM output files, including ID, binary matrix, |
| 83 | + and sample-count matrix files |
| 84 | + pattern: "*.part_${nparts}_${part}.grm.*" |
| 85 | + ontologies: [] |
| 86 | + - nparts_gcta: |
| 87 | + type: integer |
| 88 | + description: Total number of GRM partitions requested via |
| 89 | + `--make-grm-part` |
| 90 | + - part_gcta_job: |
| 91 | + type: integer |
| 92 | + description: One-based index of the GRM partition computed via |
| 93 | + `--make-grm-part` |
| 94 | + versions_gcta: |
| 95 | + - - ${task.process}: |
| 96 | + type: string |
| 97 | + description: The process the versions were collected from |
| 98 | + - gcta: |
| 99 | + type: string |
| 100 | + description: The tool name |
| 101 | + - "gcta --version | sed -En 's/^[*] version v([0-9.]*).*/\\1/p'": |
| 102 | + type: eval |
| 103 | + description: The command used to generate the version of the tool |
| 104 | +topics: |
| 105 | + versions: |
| 106 | + - - ${task.process}: |
| 107 | + type: string |
| 108 | + description: The process the versions were collected from |
| 109 | + - gcta: |
| 110 | + type: string |
| 111 | + description: The tool name |
| 112 | + - "gcta --version | sed -En 's/^[*] version v([0-9.]*).*/\\1/p'": |
| 113 | + type: eval |
| 114 | + description: The command used to generate the version of the tool |
| 115 | +authors: |
| 116 | + - "@lyh970817" |
| 117 | +maintainers: |
| 118 | + - "@lyh970817" |
0 commit comments