mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-24 02:08:12 +08:00
* do not reset colors when subsetting to world * revert diffexp state change
22 lines
801 B
JavaScript
22 lines
801 B
JavaScript
// jshint esversion: 6
|
|
|
|
/*
|
|
Model manager providing an abstraction for the use of the reducer code.
|
|
This module provides several buckets of functionality:
|
|
- schema and config driven tranformation of the wire protocol
|
|
into a format that is easy for the UI code to use.
|
|
- manage the universe/world abstraction:
|
|
+ universe: all of the server-provided, read-only data
|
|
+ world: subset of universe
|
|
- lazy access and caching of dataframe contents as needed
|
|
|
|
This is all VERY tightly integrated with reducers and actions, and
|
|
exists to support those concepts.
|
|
*/
|
|
|
|
export { default as createColors } from "./colorHelpers";
|
|
export * as Universe from "./universe";
|
|
export * as World from "./world";
|
|
export * as WorldUtil from "./worldUtil";
|
|
export * as ControlsHelpers from "./controlsHelpers";
|