|
| 1 | +# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/modules/meta-schema.json |
| 2 | +name: "gcta_fastgwa" |
| 3 | +description: Run GCTA fastGWA mixed linear model association analysis with PLINK genotype inputs |
| 4 | +keywords: |
| 5 | + - gcta |
| 6 | + - genome-wide complex trait analysis |
| 7 | + - fastgwa |
| 8 | + - fast genome-wide association |
| 9 | + - gwas |
| 10 | + - genome-wide association study |
| 11 | + - genetics |
| 12 | +tools: |
| 13 | + - "gcta": |
| 14 | + description: "Genome-wide Complex Trait Analysis (GCTA) estimates genetic relationships, variance components, and association statistics from genome-wide data." |
| 15 | + homepage: "https://yanglab.westlake.edu.cn/software/gcta/" |
| 16 | + documentation: "https://yanglab.westlake.edu.cn/software/gcta/static/gcta_doc_latest.pdf" |
| 17 | + tool_dev_url: "https://yanglab.westlake.edu.cn/software/gcta/" |
| 18 | + licence: ["GPL-3.0-only"] |
| 19 | + identifier: "biotools:gcta" |
| 20 | +input: |
| 21 | + - - meta: |
| 22 | + type: map |
| 23 | + description: | |
| 24 | + Groovy map containing PLINK genotype metadata |
| 25 | + e.g. `[ id:'plink_simulated' ]` |
| 26 | + - bed_pgen: |
| 27 | + type: file |
| 28 | + description: PLINK primary genotype file, either `.bed` or `.pgen` |
| 29 | + pattern: "*.{bed,pgen}" |
| 30 | + ontologies: |
| 31 | + - edam: "http://edamontology.org/format_3003" |
| 32 | + - bim_pvar: |
| 33 | + type: file |
| 34 | + description: PLINK sidecar file, either `.bim` or `.pvar` |
| 35 | + pattern: "*.{bim,pvar}" |
| 36 | + ontologies: [] |
| 37 | + - fam_psam: |
| 38 | + type: file |
| 39 | + description: PLINK sidecar file, either `.fam` or `.psam` |
| 40 | + pattern: "*.{fam,psam}" |
| 41 | + ontologies: [] |
| 42 | + - - meta2: |
| 43 | + type: map |
| 44 | + description: | |
| 45 | + Groovy map containing sparse GRM metadata |
| 46 | + e.g. `[ id:'plink_simulated_sp' ]` |
| 47 | + Used when sparse GRM files are supplied |
| 48 | + - sparse_grm_files: |
| 49 | + type: file |
| 50 | + description: Sparse GRM sidecar files, pass `[]` when absent |
| 51 | + pattern: "*.grm.{id,sp}" |
| 52 | + ontologies: [] |
| 53 | + - - meta3: |
| 54 | + type: map |
| 55 | + description: | |
| 56 | + Groovy map containing phenotype metadata |
| 57 | + Keep only stable phenotype metadata in this map |
| 58 | + e.g. `[ id:'plink_simulated' ]` |
| 59 | + - phenotype_file: |
| 60 | + type: file |
| 61 | + description: Phenotype file |
| 62 | + pattern: "*.{phe,pheno,txt,tsv}" |
| 63 | + ontologies: |
| 64 | + - edam: "http://edamontology.org/format_3475" |
| 65 | + - - meta4: |
| 66 | + type: map |
| 67 | + description: | |
| 68 | + Groovy map containing quantitative covariate metadata |
| 69 | + e.g. `[ id:'covariates_quant' ]` |
| 70 | + - quant_covariates_file: |
| 71 | + type: file |
| 72 | + description: Quantitative covariates file, pass `[]` when absent |
| 73 | + pattern: "*.{covar,cov,txt,tsv}" |
| 74 | + ontologies: |
| 75 | + - edam: "http://edamontology.org/format_3475" |
| 76 | + - - meta5: |
| 77 | + type: map |
| 78 | + description: | |
| 79 | + Groovy map containing categorical covariate metadata |
| 80 | + e.g. `[ id:'covariates_cat' ]` |
| 81 | + - cat_covariates_file: |
| 82 | + type: file |
| 83 | + description: Categorical covariates file, pass `[]` when absent |
| 84 | + pattern: "*.{covar,cov,txt,tsv}" |
| 85 | + ontologies: |
| 86 | + - edam: "http://edamontology.org/format_3475" |
| 87 | +output: |
| 88 | + results: |
| 89 | + - - meta: |
| 90 | + type: map |
| 91 | + description: | |
| 92 | + Groovy map containing PLINK genotype metadata |
| 93 | + e.g. `[ id:'plink_simulated' ]` |
| 94 | + - "*.fastGWA": |
| 95 | + type: file |
| 96 | + description: FastGWA association results |
| 97 | + pattern: "*.fastGWA" |
| 98 | + ontologies: |
| 99 | + - edam: "http://edamontology.org/format_2330" |
| 100 | + log: |
| 101 | + - - meta: |
| 102 | + type: map |
| 103 | + description: | |
| 104 | + Groovy map containing PLINK genotype metadata |
| 105 | + e.g. `[ id:'plink_simulated' ]` |
| 106 | + - "*.log": |
| 107 | + type: file |
| 108 | + description: GCTA fastGWA log file |
| 109 | + pattern: "*.log" |
| 110 | + ontologies: |
| 111 | + - edam: "http://edamontology.org/format_2330" |
| 112 | + versions_gcta: |
| 113 | + - - "${task.process}": |
| 114 | + type: string |
| 115 | + description: The process the version was collected from |
| 116 | + - "gcta": |
| 117 | + type: string |
| 118 | + description: The tool name |
| 119 | + - "gcta --version | sed -En 's/^[*] version v([0-9.]*).*/\\1/p'": |
| 120 | + type: eval |
| 121 | + description: The command used to retrieve the GCTA version |
| 122 | +topics: |
| 123 | + versions: |
| 124 | + - - ${task.process}: |
| 125 | + type: string |
| 126 | + description: The process the version was collected from |
| 127 | + - gcta: |
| 128 | + type: string |
| 129 | + description: The tool name |
| 130 | + - "gcta --version | sed -En 's/^[*] version v([0-9.]*).*/\\1/p'": |
| 131 | + type: eval |
| 132 | + description: The command used to retrieve the GCTA version |
| 133 | +authors: |
| 134 | + - "@lyh970817" |
| 135 | +maintainers: |
| 136 | + - "@lyh970817" |
0 commit comments