gonzalobenegas commited on
Commit
35a77d6
1 Parent(s): a3b822e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -1
README.md CHANGED
@@ -1,11 +1,14 @@
1
  # Human variants
2
- A curated set of variants from three sources: ClinVar, OMIM and gnomAD.
3
 
4
  ## Data sources
5
 
6
  **ClinVar**:
7
  Missense variants considered "Pathogenic" by human labelers.
8
 
 
 
 
9
  **OMIM**:
10
  Regulatory variants considered "Pathogenic" by human labelers, curated in [this paper](https://doi.org/10.1016/j.ajhg.2016.07.005).
11
 
@@ -24,6 +27,11 @@ Subset - ClinVar Pathogenic vs. gnomAD common (missense) (can specify `num_proc`
24
  dataset = dataset.filter(lambda v: v["source"]=="ClinVar" or (v["label"]=="Common" and "missense" in v["consequence"]))
25
  ```
26
 
 
 
 
 
 
27
  Subset - OMIM Pathogenic vs. gnomAD common (regulatory):
28
  ```python
29
  cs = ["5_prime_UTR", "upstream_gene", "intergenic", "3_prime_UTR", "non_coding_transcript_exon"]
 
1
  # Human variants
2
+ A curated set of variants from three sources: ClinVar, COSMIC, OMIM and gnomAD.
3
 
4
  ## Data sources
5
 
6
  **ClinVar**:
7
  Missense variants considered "Pathogenic" by human labelers.
8
 
9
+ **COSMIC**:
10
+ Somatic missense variants with a frequency at least 0.1% in cancer samples (whole-genome and whole-exome sequencing only).
11
+
12
  **OMIM**:
13
  Regulatory variants considered "Pathogenic" by human labelers, curated in [this paper](https://doi.org/10.1016/j.ajhg.2016.07.005).
14
 
 
27
  dataset = dataset.filter(lambda v: v["source"]=="ClinVar" or (v["label"]=="Common" and "missense" in v["consequence"]))
28
  ```
29
 
30
+ Subset - COSMIC frequent vs. gnomAD common (missense):
31
+ ```python
32
+ dataset = dataset.filter(lambda v: v["source"]=="COSMIC" or (v["label"]=="Common" and "missense" in v["consequence"]))
33
+ ```
34
+
35
  Subset - OMIM Pathogenic vs. gnomAD common (regulatory):
36
  ```python
37
  cs = ["5_prime_UTR", "upstream_gene", "intergenic", "3_prime_UTR", "non_coding_transcript_exon"]