|
| 1 | +# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/modules/meta-schema.json |
| 2 | +name: "gatk4_concordance" |
| 3 | +description: Evaluate concordance of an input VCF against a validated truth VCF |
| 4 | + |
| 5 | +keywords: |
| 6 | + - concordance |
| 7 | + - gatk4 |
| 8 | + - gatk |
| 9 | + - genomics |
| 10 | + - variant calling |
| 11 | + - genotyping |
| 12 | + - vcf |
| 13 | + - comparison |
| 14 | + |
| 15 | +tools: |
| 16 | + - "gatk4": |
| 17 | + description: "Genome Analysis Toolkit (GATK4)" |
| 18 | + homepage: "https://gatk.broadinstitute.org/hc/en-us" |
| 19 | + documentation: "https://gatk.broadinstitute.org/hc/en-us/categories/360002369672s" |
| 20 | + tool_dev_url: "https://github.com/broadinstitute/gatk" |
| 21 | + doi: "10.1158/1538-7445.AM2017-3590" |
| 22 | + licence: ["BSD-3-clause"] |
| 23 | + identifier: "biotools:gatk" |
| 24 | + |
| 25 | +input: |
| 26 | + - - meta: |
| 27 | + type: map |
| 28 | + description: | |
| 29 | + Groovy Map containing sample information |
| 30 | + e.g. `[ id:'sample1' ]` |
| 31 | + - vcf: |
| 32 | + type: file |
| 33 | + description: Evaluation VCF file created with a variant caller |
| 34 | + pattern: "*.vcf.gz" |
| 35 | + ontologies: |
| 36 | + - edam: "http://edamontology.org/format_3016" |
| 37 | + - edam: http://edamontology.org/format_3989 # GZIP format |
| 38 | + - vcf_tbi: |
| 39 | + type: file |
| 40 | + description: Index file for the evaluation VCF |
| 41 | + pattern: "*.vcf.gz.tbi" |
| 42 | + ontologies: |
| 43 | + - edam: "http://edamontology.org/format_3616" |
| 44 | + - truth: |
| 45 | + type: file |
| 46 | + description: Truth VCF file created with a variant caller |
| 47 | + pattern: "*.vcf.gz" |
| 48 | + ontologies: |
| 49 | + - edam: "http://edamontology.org/format_3016" |
| 50 | + - edam: http://edamontology.org/format_3989 # GZIP format |
| 51 | + - truth_tbi: |
| 52 | + type: file |
| 53 | + description: Index file for the truth VCF |
| 54 | + pattern: "*.vcf.gz.tbi" |
| 55 | + ontologies: |
| 56 | + - edam: "http://edamontology.org/format_3616" |
| 57 | + - - meta2: |
| 58 | + type: map |
| 59 | + description: | |
| 60 | + Groovy Map containing sample information |
| 61 | + e.g. `[ id:'bed' ]` |
| 62 | + - intervals: |
| 63 | + type: file |
| 64 | + description: Bed file with the genomic regions included in the library |
| 65 | + (optional) |
| 66 | + pattern: "*.bed" |
| 67 | + ontologies: |
| 68 | + - edam: "http://edamontology.org/format_3003" |
| 69 | + - - meta3: |
| 70 | + type: map |
| 71 | + description: | |
| 72 | + Groovy Map containing sample information |
| 73 | + e.g. `[ id:'fasta' ]` |
| 74 | + - fasta: |
| 75 | + type: file |
| 76 | + description: Reference FASTA file |
| 77 | + pattern: "*.{fasta,fa}" |
| 78 | + ontologies: |
| 79 | + - edam: "http://edamontology.org/format_1929" |
| 80 | + - - meta4: |
| 81 | + type: map |
| 82 | + description: | |
| 83 | + Groovy Map containing sample information |
| 84 | + e.g. `[ id:'fai' ]` |
| 85 | + - fai: |
| 86 | + type: file |
| 87 | + description: Index of the reference FASTA file |
| 88 | + pattern: "*.fai" |
| 89 | + ontologies: |
| 90 | + - edam: "http://edamontology.org/format_2330" |
| 91 | + - - meta5: |
| 92 | + type: map |
| 93 | + description: | |
| 94 | + Groovy Map containing sample information |
| 95 | + e.g. `[ id:'dict' ]` |
| 96 | + - dict: |
| 97 | + type: file |
| 98 | + description: Sequence dictionary of the reference FASTA file |
| 99 | + pattern: "*.dict" |
| 100 | + ontologies: |
| 101 | + - edam: "http://edamontology.org/format_2330" |
| 102 | + |
| 103 | +output: |
| 104 | + summary: |
| 105 | + - - meta: |
| 106 | + type: map |
| 107 | + description: | |
| 108 | + Groovy Map containing sample information |
| 109 | + e.g. `[ id:'sample1' ]` |
| 110 | + - "*.tsv": |
| 111 | + type: file |
| 112 | + description: A tab-delimited file containing the metrics with number of |
| 113 | + TPs, FPs, FNs, Precision, Recall and F1 statistics |
| 114 | + pattern: "*.tsv" |
| 115 | + ontologies: |
| 116 | + - edam: "http://edamontology.org/format_3475" |
| 117 | + tpfn: |
| 118 | + - - meta: |
| 119 | + type: map |
| 120 | + description: | |
| 121 | + Groovy Map containing sample information |
| 122 | + e.g. `[ id:'sample1' ]` |
| 123 | + - "*.tpfn.vcf": |
| 124 | + type: file |
| 125 | + description: Eval VCF file with tagged with TP or FN in "INFO/STATUS" |
| 126 | + pattern: "*.vcf" |
| 127 | + ontologies: |
| 128 | + - edam: "http://edamontology.org/format_3989" |
| 129 | + tpfp: |
| 130 | + - - meta: |
| 131 | + type: map |
| 132 | + description: | |
| 133 | + Groovy Map containing sample information |
| 134 | + e.g. `[ id:'sample1' ]` |
| 135 | + - "*.tpfp.vcf": |
| 136 | + type: file |
| 137 | + description: Eval VCF file with tagged with TP or FP in "INFO/STATUS" |
| 138 | + pattern: "*.vcf" |
| 139 | + ontologies: |
| 140 | + - edam: "http://edamontology.org/format_3989" |
| 141 | + versions: |
| 142 | + - versions.yml: |
| 143 | + type: file |
| 144 | + description: File containing software versions |
| 145 | + pattern: "versions.yml" |
| 146 | + ontologies: |
| 147 | + - edam: "http://edamontology.org/format_3750" |
| 148 | + |
| 149 | +authors: |
| 150 | + - "@kubranarci" |
| 151 | +maintainers: |
| 152 | + - "@kubranarci" |
0 commit comments