mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-23 06:58:11 +08:00
* rename config param label-file * annotations rework - CLI params, file naming and backups * lint * improve cli option error checks * enable session cookies * enable session cookies * add session id * name annotations file in multi-dataset and multi-user safe manner * pass data user hash to front-end * add annotation collection name support to front-end * add constant for annotation data collection name * parameterize annotation collection name; make it sticky in the session * clarify comments * hard wire a temporary data collection name for testing * prettier * test comment * package command * set annotations filename dialog * name and hash are visible * wire up data collection capture
403 lines
11 KiB
JavaScript
403 lines
11 KiB
JavaScript
// jshint esversion: 6
|
|
import _ from "lodash";
|
|
import * as globals from "../globals";
|
|
import { Universe, MatrixFBS } from "../util/stateManager";
|
|
import {
|
|
catchErrorsWrap,
|
|
doJsonRequest,
|
|
doBinaryRequest,
|
|
dispatchNetworkErrorMessageToUser
|
|
} from "../util/actionHelpers";
|
|
|
|
/*
|
|
Bootstrap application with the initial data loading.
|
|
* /config - application configuration
|
|
* /schema - schema of dataframe
|
|
* /annotations - all metadata annotation
|
|
* /layout - all default layout
|
|
*/
|
|
const doInitialDataLoad = () =>
|
|
catchErrorsWrap(async dispatch => {
|
|
dispatch({ type: "initial data load start" });
|
|
|
|
try {
|
|
/*
|
|
Step 1 - config & schema, all JSON
|
|
*/
|
|
const requestJson = ["config", "schema"]
|
|
.map(r => `${globals.API.prefix}${globals.API.version}${r}`)
|
|
.map(url => doJsonRequest(url));
|
|
const stepOneResults = await Promise.all(requestJson);
|
|
/* set config defaults */
|
|
const config = { ...globals.configDefaults, ...stepOneResults[0].config };
|
|
const schema = stepOneResults[1];
|
|
|
|
/*
|
|
Step 2 - dataframes, all binary. NOTE: uses results of step 1.
|
|
*/
|
|
/* only load names for var annotations, if possible*/
|
|
const varIndexName = schema?.schema?.annotations?.var?.index;
|
|
const varAnnotationsQuery = varIndexName
|
|
? `?annotation-name=${encodeURIComponent(varIndexName)}`
|
|
: "";
|
|
const varAnnotationsURL = `annotations/var${varAnnotationsQuery}`;
|
|
const requestBinary = ["annotations/obs", varAnnotationsURL, "layout/obs"]
|
|
.map(r => `${globals.API.prefix}${globals.API.version}${r}`)
|
|
.map(url => doBinaryRequest(url));
|
|
const stepTwoResults = await Promise.all(requestBinary);
|
|
const [obsAnno, varAnno, obsLayout] = [...stepTwoResults];
|
|
|
|
const universe = Universe.createUniverseFromResponse(
|
|
config,
|
|
schema,
|
|
obsAnno,
|
|
varAnno,
|
|
obsLayout
|
|
);
|
|
|
|
dispatch({
|
|
type: "configuration load complete",
|
|
config
|
|
});
|
|
dispatch({
|
|
type: "initial data load complete (universe exists)",
|
|
universe
|
|
});
|
|
} catch (error) {
|
|
dispatch({ type: "initial data load error", error });
|
|
}
|
|
}, true);
|
|
|
|
/*
|
|
Set the view (world) to current selection. Placeholder for an async action
|
|
which also does re-layout.
|
|
*/
|
|
const regraph = () => (dispatch, getState) => {
|
|
const { universe, world, crossfilter } = getState();
|
|
dispatch({
|
|
type: "set World to current selection",
|
|
universe,
|
|
world,
|
|
crossfilter
|
|
});
|
|
};
|
|
|
|
// Throws
|
|
const dispatchExpressionErrors = (dispatch, res) => {
|
|
const msg = `Unexpected HTTP response while fetching expression data ${res.status}, ${res.statusText}`;
|
|
dispatchNetworkErrorMessageToUser(msg);
|
|
throw new Error(msg);
|
|
};
|
|
|
|
/*
|
|
Fetch expression vectors for each gene in genes. This is NOT an action
|
|
function, but rather a helper to be called from an action helper that
|
|
needs expression data.
|
|
|
|
Transparently utilizes cached data if it is already present.
|
|
*/
|
|
async function _doRequestExpressionData(dispatch, getState, genes) {
|
|
const state = getState();
|
|
const { universe } = state;
|
|
const varIndexName = universe.schema.annotations.var.index;
|
|
|
|
/* helper for this function only */
|
|
const fetchData = async geneNames => {
|
|
const res = await fetch(
|
|
`${globals.API.prefix}${globals.API.version}data/var`,
|
|
{
|
|
method: "PUT",
|
|
body: JSON.stringify({
|
|
filter: {
|
|
var: {
|
|
annotation_value: [{ name: varIndexName, values: geneNames }]
|
|
}
|
|
}
|
|
}),
|
|
headers: new Headers({
|
|
accept: "application/octet-stream",
|
|
"Content-Type": "application/json"
|
|
}),
|
|
credentials: "include"
|
|
}
|
|
);
|
|
|
|
if (
|
|
!res.ok ||
|
|
res.headers.get("Content-Type") !== "application/octet-stream"
|
|
) {
|
|
// WILL throw
|
|
return dispatchExpressionErrors(dispatch, res);
|
|
}
|
|
|
|
const data = await res.arrayBuffer();
|
|
return Universe.convertDataFBStoObject(universe, data);
|
|
};
|
|
|
|
/* preload data already in cache */
|
|
let expressionData = _.transform(
|
|
genes,
|
|
(expData, g) => {
|
|
const data = universe.varData.col(g);
|
|
if (data) {
|
|
expData[g] = data.asArray();
|
|
}
|
|
},
|
|
{}
|
|
); // --> { gene: data }
|
|
/* make a list of genes for which we do not have data */
|
|
const genesToFetch = _.filter(genes, g => expressionData[g] === undefined);
|
|
|
|
dispatch({ type: "expression load start" });
|
|
|
|
/* Fetch data for any genes not in cache */
|
|
if (genesToFetch.length) {
|
|
try {
|
|
const newExpressionData = await fetchData(genesToFetch);
|
|
expressionData = {
|
|
...expressionData,
|
|
...newExpressionData
|
|
};
|
|
} catch (error) {
|
|
dispatch({ type: "expression load error", error });
|
|
throw error; // rethrow
|
|
}
|
|
}
|
|
|
|
dispatch({ type: "expression load success", expressionData });
|
|
return expressionData;
|
|
}
|
|
|
|
function requestSingleGeneExpressionCountsForColoringPOST(gene) {
|
|
return async (dispatch, getState) => {
|
|
dispatch({ type: "get single gene expression for coloring started" });
|
|
try {
|
|
await _doRequestExpressionData(dispatch, getState, [gene]);
|
|
const { world } = getState();
|
|
dispatch({
|
|
type: "color by expression",
|
|
gene,
|
|
data: {
|
|
[gene]: world.varData.col(gene).asArray()
|
|
}
|
|
});
|
|
} catch (error) {
|
|
dispatch({
|
|
type: "get single gene expression for coloring error",
|
|
error
|
|
});
|
|
}
|
|
};
|
|
}
|
|
|
|
const requestUserDefinedGene = gene => async (dispatch, getState) => {
|
|
dispatch({ type: "request user defined gene started" });
|
|
try {
|
|
await await _doRequestExpressionData(dispatch, getState, [gene]);
|
|
const { world } = getState();
|
|
|
|
/* then send the success case action through */
|
|
return dispatch({
|
|
type: "request user defined gene success",
|
|
data: {
|
|
genes: [gene],
|
|
expression: world.varData.col(gene).asArray()
|
|
}
|
|
});
|
|
} catch (error) {
|
|
return dispatch({
|
|
type: "request user defined gene error",
|
|
error
|
|
});
|
|
}
|
|
};
|
|
|
|
const dispatchDiffExpErrors = (dispatch, response) => {
|
|
switch (response.status) {
|
|
case 403:
|
|
dispatchNetworkErrorMessageToUser(
|
|
"Too many cells selected for differential experesion calculation - please make a smaller selection."
|
|
);
|
|
break;
|
|
case 501:
|
|
dispatchNetworkErrorMessageToUser(
|
|
"Differential expression is not implemented."
|
|
);
|
|
break;
|
|
default: {
|
|
const msg = `Unexpected differential expression HTTP response ${response.status}, ${response.statusText}`;
|
|
dispatchNetworkErrorMessageToUser(msg);
|
|
dispatch({
|
|
type: "request differential expression error",
|
|
error: new Error(msg)
|
|
});
|
|
}
|
|
}
|
|
};
|
|
|
|
const requestDifferentialExpression = (set1, set2, num_genes = 10) => async (
|
|
dispatch,
|
|
getState
|
|
) => {
|
|
dispatch({ type: "request differential expression started" });
|
|
try {
|
|
/*
|
|
Steps:
|
|
1. get the most differentially expressed genes
|
|
2. get expression data for each
|
|
*/
|
|
const state = getState();
|
|
const { universe } = state;
|
|
const varIndexName = universe.schema.annotations.var.index;
|
|
|
|
// Legal values are null, Array or TypedArray. Null is initial state.
|
|
if (!set1) set1 = [];
|
|
if (!set2) set2 = [];
|
|
|
|
// These lines ensure that we convert any TypedArray to an Array.
|
|
// This is necessary because JSON.stringify() does some very strange
|
|
// things with TypedArrays (they are marshalled to JSON objects, rather
|
|
// than being marshalled as a JSON array).
|
|
set1 = Array.isArray(set1) ? set1 : Array.from(set1);
|
|
set2 = Array.isArray(set2) ? set2 : Array.from(set2);
|
|
|
|
const res = await fetch(
|
|
`${globals.API.prefix}${globals.API.version}diffexp/obs`,
|
|
{
|
|
method: "POST",
|
|
headers: new Headers({
|
|
Accept: "application/json",
|
|
"Content-Type": "application/json"
|
|
}),
|
|
body: JSON.stringify({
|
|
mode: "topN",
|
|
count: num_genes,
|
|
set1: { filter: { obs: { index: set1 } } },
|
|
set2: { filter: { obs: { index: set2 } } }
|
|
}),
|
|
credentials: "include"
|
|
}
|
|
);
|
|
|
|
if (!res.ok || res.headers.get("Content-Type") !== "application/json") {
|
|
return dispatchDiffExpErrors(dispatch, res);
|
|
}
|
|
|
|
const data = await res.json();
|
|
// result is [ [varIdx, ...], ... ]
|
|
const topNGenes = _.map(data, r =>
|
|
universe.varAnnotations.at(r[0], varIndexName)
|
|
);
|
|
|
|
/*
|
|
Kick off secondary action to fetch all of the expression data for the
|
|
topN expressed genes.
|
|
*/
|
|
await _doRequestExpressionData(dispatch, getState, topNGenes);
|
|
|
|
/* then send the success case action through */
|
|
return dispatch({
|
|
type: "request differential expression success",
|
|
data
|
|
});
|
|
} catch (error) {
|
|
return dispatch({
|
|
type: "request differential expression error",
|
|
error
|
|
});
|
|
}
|
|
};
|
|
|
|
const resetInterface = () => (dispatch, getState) => {
|
|
const { universe } = getState();
|
|
|
|
dispatch({
|
|
type: "user reset start"
|
|
});
|
|
dispatch({
|
|
type: "clear all user defined genes"
|
|
});
|
|
dispatch({
|
|
type: "clear differential expression"
|
|
});
|
|
dispatch({
|
|
type: "reset colorscale"
|
|
});
|
|
dispatch({
|
|
type: "clear scatterplot"
|
|
});
|
|
dispatch({
|
|
type: "reset World to eq Universe",
|
|
universe
|
|
});
|
|
dispatch({
|
|
type: "increment graph render counter"
|
|
});
|
|
dispatch({
|
|
type: "user reset end"
|
|
});
|
|
};
|
|
|
|
const saveObsAnnotations = () => async (dispatch, getState) => {
|
|
const { universe, annotations } = getState();
|
|
const { obsAnnotations, schema } = universe;
|
|
const { dataCollectionNameIsReadOnly, dataCollectionName } = annotations;
|
|
|
|
dispatch({
|
|
type: "writable obs annotations - save started"
|
|
});
|
|
|
|
const writableAnnotations = schema.annotations.obs.columns
|
|
.filter(s => s.writable)
|
|
.map(s => s.name);
|
|
const df = obsAnnotations.subset(null, writableAnnotations);
|
|
const matrix = MatrixFBS.encodeMatrixFBS(df);
|
|
try {
|
|
const queryString =
|
|
!dataCollectionNameIsReadOnly && !!dataCollectionName
|
|
? `?annotation-collection-name=${encodeURIComponent(
|
|
dataCollectionName
|
|
)}`
|
|
: "";
|
|
const res = await fetch(
|
|
`${globals.API.prefix}${globals.API.version}annotations/obs${queryString}`,
|
|
{
|
|
method: "PUT",
|
|
body: matrix,
|
|
headers: new Headers({
|
|
"Content-Type": "application/octet-stream"
|
|
}),
|
|
credentials: "include"
|
|
}
|
|
);
|
|
if (res.ok) {
|
|
dispatch({
|
|
type: "writable obs annotations - save complete",
|
|
obsAnnotations
|
|
});
|
|
} else {
|
|
dispatch({
|
|
type: "writable obs annotations - save error",
|
|
message: `HTTP error ${res.status} - ${res.statusText}`,
|
|
res
|
|
});
|
|
}
|
|
} catch (error) {
|
|
dispatch({
|
|
type: "writable obs annotations - save error",
|
|
message: error.toString(),
|
|
error
|
|
});
|
|
}
|
|
};
|
|
|
|
export default {
|
|
regraph,
|
|
resetInterface,
|
|
requestSingleGeneExpressionCountsForColoringPOST,
|
|
requestDifferentialExpression,
|
|
requestUserDefinedGene,
|
|
doInitialDataLoad,
|
|
saveObsAnnotations
|
|
};
|