Skip to content

Commit

Permalink
Update news for v4.10 (#1036)
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinlu3 authored Oct 23, 2023
1 parent f399f33 commit 0019876
Show file tree
Hide file tree
Showing 5 changed files with 71 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/main/webapp/app/config/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -783,6 +783,7 @@ export type DataRelease = {
};

export const DATA_RELEASES: DataRelease[] = [
{ date: '10232023', version: 'v4.10' },
{ date: '10022023', version: 'v4.9' },
{ date: '09012023', version: 'v4.8' },
{ date: '07282023', version: 'v4.7' },
Expand Down
1 change: 1 addition & 0 deletions src/main/webapp/app/pages/newsPage/NewsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ export default class NewsPage extends React.Component<{
<CitationText />
</div>
<div className="mt-2">
<NewsList date={'10232023'} />
<NewsList date={'10022023'} />
<NewsList date={'09012023'} />
<NewsList date={'07282023'} />
Expand Down
67 changes: 67 additions & 0 deletions src/main/webapp/app/pages/newsPage/NewsPageContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,73 @@ const EVIDENCE_COLUMN_SEPARATOR = '; ';
// https://stackoverflow.com/questions/41947168/is-it-possible-to-use-keyof-operator-on-literals-instead-of-interfaces

export const NEWS_BY_DATE: { [date: string]: NewsData } = {
'10232023': {
changedAnnotations: [
{
columnHeaderType: AnnotationColumnHeaderType.LEVEL,
title: 'Updated therapeutic implications - Changed level of evidence',
content: [
[
'KRAS',
'G12C',
'Colorectal Cancer',
<div>
<div style={{ fontStyle: 'italic' }}>
{DRUGS_CURRENTLY_IN_ONCOKB}:
</div>
<div>Adagrasib + Cetuximab (Level 3A)</div>
<br></br>
<div style={{ fontStyle: 'italic' }}>
{DRUGS_ADDED_TO_ONCOKB}:
</div>
<div>
Adagrasib + Panitumumab; Sotorasib + Cetuximab; Sotorasib +
Panitumumab
</div>
</div>,
'3A',
'2',
<WithSeparator separator={EVIDENCE_COLUMN_SEPARATOR}>
<span>
Inclusion in Colon Cancer NCCN guidelines v3.2023 and in Rectal
Cancer NCCN guidelines v5.2023
</span>
<PMIDLink pmids={'36546659'} />
<AbstractLink
link={
'https://www.annalsofoncology.org/article/S0923-7534(22)04268-5/fulltext'
}
abstract="Kuboki et al. Abstract# 45MO, ESMO 2022."
/>
</WithSeparator>,
],
],
},
{
columnHeaderType: AnnotationColumnHeaderType.ADDITIONAL_SAME_LEVEL_DRUG,
content: [
[
'BRAF',
'V600E',
'Non-Small Cell Lung Cancer',
'1',
'Dabrafenib + Trametinib (Level 1)',
'Encorafenib + Binimetinib (Level 1)',
<WithSeparator separator={EVIDENCE_COLUMN_SEPARATOR}>
<FdaApprovalLink
approval={'Encorafenib + Binimetinib for BRAF V600E NSCLC'}
link={
'https://www.fda.gov/drugs/drug-approvals-and-databases/fda-approves-quizartinib-newly-diagnosed-acute-myeloid-leukemia'
}
/>
<PMIDLink pmids={'37270692'} />
</WithSeparator>,
],
],
},
],
newlyAddedGenes: ['EPHB4', 'ETS1', 'FANCE', 'FANCF', 'FANCG', 'MYB'],
},
'10022023': {
changedAnnotations: [
{
Expand Down
Binary file modified src/main/webapp/content/images/oncokb_summary.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/webapp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
<meta name="twitter:site" content="@oncokb">
<meta name="twitter:title" content="OncoKB™ - MSK's Precision Oncology Knowledge Base">
<meta name="twitter:description" content="OncoKB™ is a precision oncology knowledge base developed at Memorial Sloan Kettering Cancer Center that contains biological and clinical information about genomic alterations in cancer.">
<meta name="twitter:image" content="https://www.oncokb.org/content/images/oncokb_summary.png?20230929">
<meta name="twitter:image" content="https://www.oncokb.org/content/images/oncokb_summary.png?20231023">
<meta name="twitter:url" content="https://www.oncokb.org/">

<meta property="og:site_name" content="OncoKB™">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.oncokb.org/">
<meta property="og:title" content="OncoKB™ - MSK's Precision Oncology Knowledge Base">
<meta property="og:description" content="OncoKB™ is a precision oncology knowledge base developed at Memorial Sloan Kettering Cancer Center that contains biological and clinical information about genomic alterations in cancer.">
<meta property="og:image" content="https://www.oncokb.org/content/images/oncokb_summary.png?20230929">
<meta property="og:image" content="https://www.oncokb.org/content/images/oncokb_summary.png?20231023">

<link rel="mask-icon" href="content/images/favicon/safari-pinned-tab.svg" color="#0968c3">
<!-- Preload the customized fonts, so the html knows how to pain the page -->
Expand Down

0 comments on commit 0019876

Please sign in to comment.