Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env.development
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
NEXT_PUBLIC_GEN3_COMMONS_NAME=gen3
NEXT_PUBLIC_PROTEINPAINT_API=/auth/api/custom/proteinpaint
1 change: 1 addition & 0 deletions .env.production
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
NEXT_PUBLIC_GEN3_COMMONS_NAME=gen3
NEXT_PUBLIC_PROTEINPAINT_API=/auth/api/custom/proteinpaint
33 changes: 33 additions & 0 deletions config/gen3/analysisTools.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,39 @@
"hideCounts" : true,
"appId" : "CohortComparison",
"countUnits": "Cases"
},
{
"title": "ProteinPaint",
"type": "application",
"hasDemo": false,
"loginRequired": false,
"description": "Visualize mutations in protein-coding genes by consequence type and protein domain.",
"icon": "/icons/apps/ProteinPaint.svg",
"appId" : "ProteinPaint",
"count": 1000,
"countUnits": "Cases"
},
{
"title": "OncoMatrix",
"type": "application",
"hasDemo": false,
"loginRequired": false,
"description": "Visualize the top most mutated cases and genes affected by high impact mutations in your cohort.",
"icon": "/icons/apps/OncoMatrix.svg",
"appId" : "OncoMatrix",
"count": 1000,
"countUnits": "Cases"
},
{
"title": "Set Operations",
"type": "application",
"hasDemo": false,
"loginRequired": false,
"description": "Display a Venn diagram and compare/contrast your cohorts or sets of the same type.",
"icon": "/icons/apps/SetOperations.svg",
"href": "/",
"count": 1000,
"countUnits": "Cases"
}
]
}
Expand Down
7 changes: 7 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"@next/mdx": "^15.5.7",
"@oncojs/survivalplot": "^0.8.3",
"@react-spring/web": "^9.7.5",
"@sjcrh/proteinpaint-client": "^2.164.1",
"cookies-next": "^4.3.0",
"echarts": "^5.5.1",
"file-saver": "^2.0.5",
Expand Down
8 changes: 8 additions & 0 deletions src/features/apps/OncoMatrix.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from "react";
import { MatrixWrapper } from "../proteinpaint/MatrixWrapper";

const MatrixApp: React.FC = () => {
return <MatrixWrapper chartType="matrix" />;
};

export default MatrixApp;
8 changes: 8 additions & 0 deletions src/features/apps/ProteinPaint.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from "react";
import { ProteinPaintWrapper } from "@/features/proteinpaint/ProteinPaintWrapper";

const ProteinPaintApp: React.FC = () => {
return <ProteinPaintWrapper />;
};

export default ProteinPaintApp;
Loading