vitessce
Version:
Vitessce app and React component library
23 lines (21 loc) • 961 B
JavaScript
import { FileType, DataType } from './constants';
/**
* Mapping from file types to data types. Each file type
* should correspond to one data type. Multiple file types
* can map onto the same data type.
*/
export const FILE_TYPE_DATA_TYPE_MAPPING = {
[]: DataType.CELLS,
[]: DataType.CELL_SETS,
[]: DataType.EXPRESSION_MATRIX,
[]: DataType.GENOMIC_PROFILES,
[]: DataType.MOLECULES,
[]: DataType.NEIGHBORHOODS,
[]: DataType.RASTER,
[]: DataType.RASTER,
[]: DataType.EXPRESSION_MATRIX,
[]: DataType.EXPRESSION_MATRIX,
[]: DataType.CELL_SETS,
[]: DataType.CELLS,
[]: DataType.EXPRESSION_MATRIX,
};