Skip to content

Commit

Permalink
Merge pull request #34 from ghga-de/33-filter-mq-is-not-defined-in-th…
Browse files Browse the repository at this point in the history
…e-header

MQ added into FILTER
  • Loading branch information
kubranarci authored Apr 29, 2024
2 parents e64e931 + a8dab21 commit 1fdc911
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ test_output/
tests/data/
work/
.github/CODEOWNERS-tmp
bin/vcfparser.pyc
bin/vcfparser.pyc
node_modules/*
10 changes: 10 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# This configuration file was automatically generated by Gitpod.
# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml)
# and commit this file to your remote git repository to share the goodness with others.

# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart

tasks:
- init: npm install


20 changes: 15 additions & 5 deletions assets/config/convertToStdVCF.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@
"type": "Flag",
"description": "Strand bias of reads with mutant allele = zero reads on one strand and variant allele frequency below 0.1"
},
"FRQ": {
"FREQ": {
"number": "0",
"type": "Flag",
"description": "variant allele frequency below 0.05"
"description": "Variant allele frequency above 0.001 in GnomAD or above 0.001 in local control database"
},
"TAR": {
"number": "0",
Expand Down Expand Up @@ -97,7 +97,7 @@
"ALTC": {
"number": "0",
"type": "Flag",
"description": "Alternative reads in control"
"description": "Alternative reads in control and other filter not PASS"
},
"ALTCFR": {
"number": "0",
Expand All @@ -117,7 +117,7 @@
"VAF": {
"number": "0",
"type": "Flag",
"description": "Variant allele frequency in tumor < ' + str(args.newpun) + ' times allele frequency in control"
"description": "Variant allele frequency in tumor < 10% and other filter not PASS"
},
"TSR_ctrl": {
"number": "0",
Expand Down Expand Up @@ -167,7 +167,7 @@
"QD": {
"number": "1",
"type": "Float",
"description": "Variant-quality/read-depth for this variant"
"description": "Variants fail quality/depth filter."
},
"Q20": {
"number": "0",
Expand Down Expand Up @@ -198,6 +198,16 @@
"number": "0",
"type": "Flag",
"description": "Too many haplotypes are supported by the data in this region."
},
"MQ": {
"number": "0",
"type": "Flag",
"description": "Root-mean-square mapping quality across calling region is low"
},
"SC": {
"number": "0",
"type": "Flag",
"description": "Variants fail sequence-context filter. Surrounding sequence is low-complexity"
}
},

Expand Down

0 comments on commit 1fdc911

Please sign in to comment.