Open hsienchao opened 1 year ago
Sample: CL0049_N1D_E2_HGM3YBGXY Case:OM16-008-FFPE Type: Germline | Category | Both | AVIA_Only | OC_Only | AVIA only Reason | OC only Reason |
---|---|---|---|---|---|---|
Total | 747 | 49 | 1 | variant is classified synonymous in AVIA | ||
Tier 1.0 | 1 | 0 | 0 | |||
Tier 1.1 | 0 | 1 | 0 | Clinvar definition change: chr12:65563608-65563631 GCCGCGGGACCAGCGGCGGCGGCG->-. Tier 1.1 -> Tier 1.3 | ||
Tier 1.2 | 0 | 0 | 0 | |||
Tier 1.3 | 1 | 0 | 1 | See Tier 1.1 | ||
Tier 2 | 16 | 1 | 4 | CHR8:37555933-37555933 -->CG not found in OC | CHR19:33444628-33444643 TGTCCTCTTCGTCCCC->- etc : MAF changed | |
Tier 3 | 9 | 3 | 1 | chr7:2265161-2265161 G>A: HGMD missing;chr1:152285077-152285080 clinvar changed | chr19:33444607-33444607 T>G: MAF changed | |
Tier 4 | 40 | 5 | 3 | |||
No tier | 665 | 54 | 6 |
Sample: CL0049_T1D_E2_HGM3YBGXY Case:OM16-008-FFPE Type: Somatic
Category | Both | AVIA_Only | OC_Only |
---|---|---|---|
Total | 15544 | 178 | 34 |
Tier 1.0 | 0 | 0 | 0 |
Tier 1.1 | 4 | 0 | 0 |
Tier 1.2 | 21 | 5 | 3 |
Tier 1.3 | 13 | 2 | 0 |
Tier 2 | 70 | 2 | 2 |
Tier 3 | 1069 | 24 | 2 |
Tier 4 | 14141 | 269 | 53 |
No tier | 77 | 13 | 111 |
The gene page is working now
Added the annotation description to detailed page
HGMD in OC is version 2021 and AVIA is version 2022. Need to update HGMD to 2022 in OC
Found the reason why there are count differences. The version of CBIO in OC is newer than AVIA.
There was a configuration error on my end that fails to put ICGC to the select list. I’ve fixed this and this is the new plot:
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
I also found some MAF values on dev are larger than 1:
Some examples:
Query example:
select maf from hg19_annot_oc@aviad_lnk where chr='1' and
query_start=24417419
Comments from Anney:
After we reannotate all 3 millions khanlab variants, about 0.2% (6443/3235826 ~ 0.2%) did not have OC annotation. It is because these position did not map to a HG38 (OC does the liftover first, when HG19 variants are given).
in oncosnpprod, if you run the following query, you will get all the samples that have these variants:
select * from ( (select original_inputchrom, original_input__pos, original_inputREF_BASE,original_inputalt_BASE from hg19_annot_oc@aviap_lnk where baseso is null) a join var_sample_avia b on a.original_input__chrom = b.CHROMOSOME and a.original_inputpos = b.START_POS and a.original_inputREF_BASE = b.ref and a.original_input__alt_BASE = b.alt );