diff --git a/immuscreen/package.json b/immuscreen/package.json index cee8722..08a8d77 100644 --- a/immuscreen/package.json +++ b/immuscreen/package.json @@ -1,5 +1,5 @@ { - "name": "screen2.0", + "name": "igscreen", "version": "0.1.0", "private": true, "scripts": { @@ -68,7 +68,7 @@ "eslint": "8.47.0", "eslint-config-next": "13.4.19", "graphql": "^16.7.1", - "jubilant-carnival": "^0.2.8", + "jubilant-carnival": "^0.6.0", "logojs-react": "^2.1.1", "next": "14.1.0", "normalize.css": "^8.0.1", @@ -84,7 +84,7 @@ "tailwindcss": "3.3.3", "typescript": "5.1.6", "umap-js": "^1.3.3", - "umms-gb": "^3.9.13", + "umms-gb": "^3.10.0", "uuid": "^9.0.1" }, "devDependencies": { diff --git a/immuscreen/src/app/celllineage/utils.ts b/immuscreen/src/app/celllineage/utils.ts index 566331e..551d39f 100644 --- a/immuscreen/src/app/celllineage/utils.ts +++ b/immuscreen/src/app/celllineage/utils.ts @@ -1,6 +1,11 @@ import { cellTypeStaticInfo } from "../../common/consts"; import { CellDisplayName, CellLineageTreeState, CellName, CellQueryValue, CellTypeStaticInfo } from "./types"; + +/** + * + * @todo these functions should be moved out of the celllineage directory and into common probably + */ export const getCellColor = (cell: CellName | CellQueryValue | CellDisplayName): string => { return Object.values(cellTypeStaticInfo).find((x: CellTypeStaticInfo) => x.id === cell || x.displayName === cell || extractQueryValues(x, "B").includes(cell as CellQueryValue))?.color ?? "#000000" } diff --git a/immuscreen/src/app/page.tsx b/immuscreen/src/app/page.tsx index c0620d0..1a1d9f0 100644 --- a/immuscreen/src/app/page.tsx +++ b/immuscreen/src/app/page.tsx @@ -39,7 +39,6 @@ const Home = () => {