Skip to content

Commit 67d6c53

Browse files
authored
Merge pull request #215 from zhx828/rc
Release 1.16
2 parents f1277cb + 1ec48b5 commit 67d6c53

15 files changed

+5392
-30
lines changed

app/scripts/app.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ angular.module('oncokbStaticApp').run(
145145
}, {content: '3855 Variants'}, {content: '60 Tumor Types'}]
146146
};
147147
$rootScope.data = {
148-
lastUpdate: 'August 20, 2018',
149-
version: '1.15',
148+
lastUpdate: 'October 1, 2018',
149+
version: '1.16',
150150
levelColors: {
151151
'1': '#33A02C',
152152
'2A': '#1F78B4',

app/scripts/controllers/about.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
* Controller of the oncokbStaticApp
99
*/
1010
angular.module('oncokbStaticApp')
11-
.controller('AboutCtrl', function() {
12-
11+
.controller('AboutCtrl', function($scope, $rootScope) {
12+
$scope.numOfGenes = $rootScope.meta.numbers.main.gene;
1313
});

app/scripts/controllers/cancerGenes.js

+2-17
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Controller of the oncokbStaticApp
1212
*/
1313
angular.module('oncokbStaticApp')
14-
.controller('CancerGenesCtrl', function($scope, _, api, $q) {
14+
.controller('CancerGenesCtrl', function($scope, _, api, $q, apiLink) {
1515
// DataTable initialization & options
1616
$scope.dt = {};
1717
$scope.dt.dtOptions = {
@@ -40,9 +40,6 @@ angular.module('oncokbStaticApp')
4040
};
4141

4242
function displayConvert(obj, keys) {
43-
if (obj.oncokbAnnotated === true) {
44-
obj.occurrenceCount += 1;
45-
}
4643
_.each(keys, function(key) {
4744
obj[key] = obj[key] === true ? 'Yes' : 'No';
4845
});
@@ -90,17 +87,5 @@ angular.module('oncokbStaticApp')
9087
$scope.cancerGeneList = [];
9188
$scope.doneLoading = true;
9289
});
93-
$scope.download = function() {
94-
var tempArr = ['Hugo Symbol', '# of occurence within resources', 'OncoKB Annotated', 'OncoKB Oncogene', 'OncoKB TSG', 'MSK-IMPACT', 'MSK-HEME', 'Foundation One', 'Foundation One Heme', 'Vogelstein', 'Sanger CGC'];
95-
var content = [tempArr.join('\t')];
96-
_.each($scope.cancerGeneList, function(item) {
97-
tempArr = [item.hugoSymbol, item.occurrenceCount, item.oncokbAnnotated, item.oncogene, item.tsg, item.mSKImpact, item.mSKHeme, item.foundation,
98-
item.foundationHeme, item.vogelstein, item.sangerCGC];
99-
content.push(tempArr.join('\t'));
100-
});
101-
var blob = new Blob([content.join('\n')], {
102-
type: 'text/plain;charset=utf-8;',
103-
});
104-
saveAs(blob, 'CancerGenesList.txt');
105-
};
90+
$scope.apiLink = apiLink;
10691
});

app/scripts/controllers/news.js

+10-4
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,12 @@ angular.module('oncokbStaticApp')
9090

9191
],
9292
'Level 3': [
93-
'EGFR - Exon 20 insertions - Non-small cell lung cancer - Poziotinib (<b>added as new association</b>)',
93+
'EGFR - Exon 20 insertions - Non-small cell lung cancer - Poziotinib (<b>added as new association</b>)',
9494
'ALK - G1202R - Non-small cell lung cancer - Lorlatinib (<b>added as new association</b>)',
9595
'KIT - D816 mutations - Mastocytosis - Avapritinib (<b>added as new association</b>)',
96-
'MTOR - E2014K, E2419K - Bladder cancer - Everolimus (<b>updated association</b>)',
96+
'MTOR - E2014K, E2419K - Bladder cancer - Everolimus (<b>updated association</b>)',
9797
'MTOR - L1460P, L2209V, L2427Q - Renal cell carcinoma - Temsirolimus (<b>updated association</b>)',
98-
'MTOR - Q2223K -Renal cell carcinoma - Everolimus (<b>updated association</b>)'
98+
'MTOR - Q2223K - Renal cell carcinoma - Everolimus (<b>updated association</b>)'
9999
]
100100
},
101101
'08172018': {
@@ -104,6 +104,11 @@ angular.module('oncokbStaticApp')
104104
'href="https://www.fda.gov/Drugs/InformationOnDrugs/ApprovedDrugs/ucm614128.htm">' +
105105
'the FDA approved ivosidenib</a> for adult patients with relapsed or refractory acute myeloid leukemia (AML) with a susceptible IDH1 mutation as detected by an FDA-approved test.',
106106
]
107+
},
108+
'10012018': {
109+
'Level 3': [
110+
'RET - Oncogenic Mutations - Medullary Thyroid Cancer - LOXO-292 (<b>added as new association</b>)',
111+
]
107112
}
108113
};
109114
$scope.data.newlyAddedLevelFour = [
@@ -187,6 +192,7 @@ angular.module('oncokbStaticApp')
187192
}
188193
];
189194
$scope.data.newlyAddedGenes = {
190-
'08172018': ['ACTG1', 'ARHGEF28', 'ARID3A', 'ARID3B', 'ARID3C', 'ARID4A', 'ARID4B', 'ARID5A', 'ATP6AP1', 'ATP6V1B2', 'ATXN2', 'BACH2', 'BCL11B', 'BCORL1', 'BCR', 'BTG1', 'CD28', 'CD58', 'CIITA', 'CRBN', 'CUX1', 'DDX3X', 'DTX1', 'DUSP22', 'EGR1', 'EP400', 'ESCO2', 'ETNK1', 'FANCD2', 'FAS', 'FBXO11', 'FURIN', 'GNA12', 'GNA13', 'GNB1', 'GTF2I', 'HDAC1', 'HDAC4', 'HDAC7', 'HIF1A', 'HIST1H1B', 'HIST1H1D']
195+
'08172018': ['ACTG1', 'ARHGEF28', 'ARID3A', 'ARID3B', 'ARID3C', 'ARID4A', 'ARID4B', 'ARID5A', 'ATP6AP1', 'ATP6V1B2', 'ATXN2', 'BACH2', 'BCL11B', 'BCORL1', 'BCR', 'BTG1', 'CD28', 'CD58', 'CIITA', 'CRBN', 'CUX1', 'DDX3X', 'DTX1', 'DUSP22', 'EGR1', 'EP400', 'ESCO2', 'ETNK1', 'FANCD2', 'FAS', 'FBXO11', 'FURIN', 'GNA12', 'GNA13', 'GNB1', 'GTF2I', 'HDAC1', 'HDAC4', 'HDAC7', 'HIF1A', 'HIST1H1B', 'HIST1H1D'],
196+
'10012018': ['HIST1H1E','SETD6','SETD5','SETD7','SETDB2','SETDB1','SETD4','SETD3','SETD1B','U2AF2','TET3','NFE2','IRF8','IRF1','IKZF3','JARID2','NCSTN','HIST1H2BO','HIST1H2AC','HIST1H2BG','HIST1H2BJ','HIST1H2BK','HIST1H2BC','HIST1H2AG','HIST1H2AL','HIST1H2AM','TYK2']
191197
};
192198
});

app/styles/_cancerGenes.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
float: left;
1212
line-height: 50px;
1313
}
14-
button {
14+
a {
1515
height: 30px;
1616
margin: 10px;
1717
float: right;

app/views/about.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
and Henry R. Kravis Center for Molecular Oncology</a> at Memorial Sloan Kettering Cancer
2121
Center (MSK), in partnership with Quest Diagnostics.</p>
2222
<p>Curated by a network of clinical fellows, research fellows, and faculty members at MSK, OncoKB contains
23-
detailed information about specific alterations in 477 cancer genes. The information is curated from various
23+
detailed information about specific alterations in {{numOfGenes}} cancer genes. The information is curated from various
2424
sources, such as guidelines from the FDA, NCCN, or ASCO, <a href="https://clinicaltrials.gov/">ClinicalTrials.gov</a>
2525
and the scientific literature.</p>
2626
<p>For each alteration, we have curated the biological effect, prevalence and prognostic information, as well as

app/views/cancerGenes.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<div class="row" style="margin-bottom: 0;">
77
<div class="col-lg-12 title">
88
<span>OncoKB Cancer Gene List</span>
9-
<button class="btn btn-sm download waves-effect waves-light"
10-
ng-click="download()"><i class="fa fa-cloud-download"></i> Cancer Gene List
11-
</button>
9+
<a class="btn btn-sm download waves-effect waves-light"
10+
ng-href="{{apiLink}}utils/cancerGeneList.txt"
11+
download> <i class="fa fa-cloud-download"></i> Cancer Gene List</a>
1212
</div>
1313
</div>
1414
<div class="row" style="margin-bottom: 0;">

app/views/news.html

+42
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,48 @@
1919
</p>
2020
<p ng-bind-html="data.citationURL"></p>
2121
</div>
22+
<h3>October 1, 2018</h3>
23+
<div>
24+
<ul>
25+
<li>Updated Actionable Genes
26+
<div class="row">
27+
<table class="table">
28+
<thead>
29+
<th class="col-lg-1 col-sm-2 col-xs-3">Level</th>
30+
<th class="col-lg-11 col-sm-10 col-xs-9">Update</th>
31+
</thead>
32+
<tbody>
33+
<tr ng-repeat="(key, value) in data.updatedActionableGenes['10012018']">
34+
<td>{{key}}</td>
35+
<td>
36+
<ul>
37+
<li ng-repeat="item in value"><span ng-bind-html="item"></span></li>
38+
</ul>
39+
</td>
40+
</tr>
41+
</tbody>
42+
</table>
43+
</div>
44+
</li>
45+
<li>Addition of 27 new heme-associated genes:
46+
<div class="newly-added-genes">
47+
<span class="gene" ng-repeat="hugo in data.newlyAddedGenes['10012018']"><a
48+
href="#/gene/{{hugo}}">{{hugo}}</a></span>
49+
</div>
50+
</li>
51+
<li>OncoKB is monitoring the following drugs that were granted <a target="_blank"
52+
href="https://www.fda.gov/forpatients/approvals/fast/ucm405397.htm">Breakthrough
53+
Therapy</a> designation by the
54+
FDA:
55+
<ul class="bullet" style="margin-top: 10px">
56+
<li>Sept 5, 2018: <a target="_blank"
57+
href="https://www.onclive.com/web-exclusives/fda-grants-loxo292-breakthrough-designation-for-nsclc-mtc">
58+
LOXO-292 for RET fusion–positive non–small cell lung cancer (NSCLC) or RET-mutant medullary
59+
thyroid cancer (MTC)</a></li>
60+
</ul>
61+
</li>
62+
</ul>
63+
</div>
2264
<h3>August 20, 2018</h3>
2365
<div>
2466
<ul>

data/v1.16/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# v1.16
2+
3+
## Related releases
4+
[OncoKB Public Website, October 1, 2018 Updates](https://github.com/oncokb/oncokb-public/releases/tag/0.10)
5+
[OncoKB Core/Curate v0.3.3 Release](https://github.com/oncokb/oncokb/releases/tag/v0.3.3)
6+

data/v1.16/allActionableVariants.json

+1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)