mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-27 03:38:13 +08:00
* revert all commits to before Typescript migration * update compat workflow to match latest deps (#2335) * update compat workflow to match latest deps * attempt to debug * attempt to debug * remove debugging code * typo * update deps to match desktop (#2340) * fix: don't run lint with `--fix` on push tests (#2273) * fix: don't run lint with `--fix` on push tests * npx Co-authored-by: maniarathi <mani.arathi@gmail.com> Co-authored-by: Madison Dunitz <madison.dunitz@chanzuckerberg.com> * rename X_approx_distribution to X_approximate_distribution (#2337) * Correctly handle non-finite numbers in heuristic determination of X distribution (#2342) * handle non-finites explicitly * improve and test edge case handling for distribution estimation * revert debugging changes * code readability * clean up type inferencing (#2332) * unit tests for 64 bit conversion * clean up type handling * type inference tests * more type inference fixes * use schema to determine user intent for data typing * stop using deprecated API * fbs type encoding test * add missing test * add more tests * correctly infer X type for CXG adaptor * lint * fix typo * ts migration * cleanup from PR review * lint * PR review changes * remove unused packages from client (#2359) * remove unused packages from client * add missing peer dep * fix: disable FE auth testing on compatibility tests (#2377) * update: release process (#2277) Co-authored-by: maniarathi <mani.arathi@gmail.com> * fix: remove spaces in param setup (#2380) * delete deploy workflow (#2396) * undo reformatting which now does not pass lint * fix snapshots which changed due to npm dep changes * add missing quoting to snapshot * another snapshot typo fix * TS Revert (2) - replay PR #2347 and #2354 (#2403) * replay edits from PR 2347 * TS Revert (3) - replay edits in PR #2327 (#2404) * replay edits in PR 2327 * TS Revert (4) - replay PR #2355 (#2405) * replay edits in PR 2355 * add additional babel config * reformat with new prettier config Co-authored-by: Severiano Badajoz <sbadajoz@chanzuckerberg.com> Co-authored-by: maniarathi <mani.arathi@gmail.com> Co-authored-by: Madison Dunitz <madison.dunitz@chanzuckerberg.com>
212 lines
5.8 KiB
JavaScript
212 lines
5.8 KiB
JavaScript
import { schema } from "./schema";
|
|
import { Dataframe, KeyIndex } from "../../../../src/util/dataframe";
|
|
import { encodeMatrixFBS } from "../../../../src/util/stateManager/matrix";
|
|
|
|
const indexedSchema = {
|
|
obsByName: Object.fromEntries(
|
|
schema.schema.annotations.obs.columns.map((v) => [v.name, v]) ?? []
|
|
),
|
|
varByName: Object.fromEntries(
|
|
schema.schema.annotations.var.columns.map((v) => [v.name, v]) ?? []
|
|
),
|
|
embByName: Object.fromEntries(
|
|
schema.schema.layout.obs.map((v) => [v.name, v]) ?? []
|
|
),
|
|
};
|
|
|
|
function makeMockColumn(s, length) {
|
|
const { type } = s;
|
|
switch (type) {
|
|
case "int32":
|
|
return new Int32Array(length).fill(Math.floor(99 * Math.random()));
|
|
|
|
case "string":
|
|
return new Array(length).fill("test");
|
|
|
|
case "float32":
|
|
return new Float32Array(length).fill(99 * Math.random());
|
|
|
|
case "boolean":
|
|
return new Array(length).fill(false);
|
|
|
|
case "categorical":
|
|
return new Array(length).fill(s.categories[0]);
|
|
|
|
default:
|
|
throw new Error("unkonwn type");
|
|
}
|
|
}
|
|
|
|
function getEncodedDataframe(colNames, length, colSchemas) {
|
|
const colIndex = new KeyIndex(colNames);
|
|
const columns = colSchemas.map((s) => makeMockColumn(s, length));
|
|
const df = new Dataframe([length, colNames.length], columns, null, colIndex);
|
|
const body = encodeMatrixFBS(df);
|
|
return body;
|
|
}
|
|
|
|
export function dataframeResponse(colNames, columns) {
|
|
const colIndex = new KeyIndex(colNames);
|
|
const df = new Dataframe(
|
|
[columns[0].length, colNames.length],
|
|
columns,
|
|
null,
|
|
colIndex
|
|
);
|
|
const body = encodeMatrixFBS(df);
|
|
const headers = new Headers({
|
|
"Content-Type": "application/octet-stream",
|
|
});
|
|
return () => Promise.resolve({ body, init: { status: 200, headers } });
|
|
}
|
|
|
|
function annotationObsResponse(request) {
|
|
const url = new URL(request.url);
|
|
const params = Array.from(url.searchParams.entries());
|
|
const names = params
|
|
.filter(([k]) => k === "annotation-name")
|
|
.map(([, v]) => v);
|
|
if (!names.every((n) => indexedSchema.obsByName[n])) {
|
|
return Promise.reject(new Error("bad obs annotation name in URL"));
|
|
}
|
|
const colSchemas = names.map((n) => indexedSchema.obsByName[n]);
|
|
const body = getEncodedDataframe(
|
|
names,
|
|
schema.schema.dataframe.nObs,
|
|
colSchemas
|
|
);
|
|
|
|
const headers = new Headers({
|
|
"Content-Type": "application/octet-stream",
|
|
});
|
|
return Promise.resolve({
|
|
body,
|
|
init: { status: 200, headers },
|
|
});
|
|
}
|
|
|
|
function annotationVarResponse(request) {
|
|
const url = new URL(request.url);
|
|
const params = Array.from(url.searchParams.entries());
|
|
const names = params
|
|
.filter(([k]) => k === "annotation-name")
|
|
.map(([, v]) => v);
|
|
if (!names.every((n) => indexedSchema.varByName[n])) {
|
|
return Promise.reject(new Error("bad var annotation name in URL"));
|
|
}
|
|
const colSchemas = names.map((n) => indexedSchema.varByName[n]);
|
|
const body = getEncodedDataframe(
|
|
names,
|
|
schema.schema.dataframe.nVar,
|
|
colSchemas
|
|
);
|
|
|
|
const headers = new Headers({
|
|
"Content-Type": "application/octet-stream",
|
|
});
|
|
return Promise.resolve({
|
|
body,
|
|
init: { status: 200, headers },
|
|
});
|
|
}
|
|
|
|
function layoutObsResponse(request) {
|
|
const url = new URL(request.url);
|
|
const params = Array.from(url.searchParams.entries());
|
|
const names = params.filter(([k]) => k === "layout-name").map(([, v]) => v);
|
|
if (!names.every((n) => indexedSchema.embByName[n])) {
|
|
return Promise.reject(new Error("bad layout name in URL"));
|
|
}
|
|
const dims = names.map((n) => indexedSchema.embByName[n].dims).flat();
|
|
const colSchemas = names
|
|
.map((n) => [indexedSchema.embByName[n], indexedSchema.embByName[n]])
|
|
.flat();
|
|
const body = getEncodedDataframe(
|
|
dims,
|
|
schema.schema.dataframe.nObs,
|
|
colSchemas
|
|
);
|
|
|
|
const headers = new Headers({
|
|
"Content-Type": "application/octet-stream",
|
|
});
|
|
return Promise.resolve({
|
|
body,
|
|
init: { status: 200, headers },
|
|
});
|
|
}
|
|
|
|
function dataVarResponse(request) {
|
|
const url = new URL(request.url);
|
|
const params = Array.from(url.searchParams.entries());
|
|
|
|
const colNames = params.map((v) => `${v[0]}/${v[1]}`);
|
|
const colSchemas = colNames.map(() => schema.schema.dataframe);
|
|
const body = getEncodedDataframe(
|
|
colNames,
|
|
schema.schema.dataframe.nObs,
|
|
colSchemas
|
|
);
|
|
|
|
const headers = new Headers({
|
|
"Content-Type": "application/octet-stream",
|
|
});
|
|
return Promise.resolve({
|
|
body,
|
|
init: { status: 200, headers },
|
|
});
|
|
}
|
|
|
|
export function responder(request) {
|
|
const url = new URL(request.url);
|
|
const { pathname } = url;
|
|
if (pathname.endsWith("/annotations/obs")) {
|
|
return annotationObsResponse(request);
|
|
}
|
|
if (pathname.endsWith("/annotations/var")) {
|
|
return annotationVarResponse(request);
|
|
}
|
|
if (pathname.endsWith("/layout/obs")) {
|
|
return layoutObsResponse(request);
|
|
}
|
|
if (pathname.endsWith("/data/var")) {
|
|
return dataVarResponse(request);
|
|
}
|
|
return Promise.reject(new Error("bad URL"));
|
|
}
|
|
|
|
export function withExpected(expectedURL, expectedParams) {
|
|
/*
|
|
Do some additional error checking
|
|
*/
|
|
return (request) => {
|
|
// if URL is bogus, reject the promise
|
|
const url = new URL(request.url);
|
|
if (!url.pathname.endsWith(expectedURL)) {
|
|
return Promise.reject(new Error("Unexpected URL!"));
|
|
}
|
|
const params = Array.from(url.searchParams.entries()).sort(
|
|
(a, b) => a[0] < b[0]
|
|
);
|
|
expectedParams = expectedParams.slice().sort((a, b) => a[0] < b[0]);
|
|
|
|
if (
|
|
params.length !== expectedParams.length ||
|
|
!params.every(
|
|
(p, i) => p[0] === expectedParams[i][0] && p[1] === expectedParams[i][1]
|
|
)
|
|
) {
|
|
return Promise.reject(new Error("unexpected name requested in URL"));
|
|
}
|
|
|
|
return responder(request);
|
|
};
|
|
}
|
|
|
|
export function annotationsObs(names) {
|
|
return withExpected(
|
|
"/annotations/obs",
|
|
names.map((name) => ["annotation-name", name])
|
|
);
|
|
}
|