molstar
Version:
A comprehensive macromolecular library.
20 lines (19 loc) • 579 B
JavaScript
/**
* Copyright (c) 2022 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author Alexander Rose <alexander.rose@weirdbyte.de>
*/
import { Column } from '../../../../mol-data/db';
import { DensityServer_Data_Schema } from './density-server';
var Schema = Column.Schema;
const int = Schema.int;
export const Segmentation_Data_Schema = {
volume_data_3d_info: DensityServer_Data_Schema.volume_data_3d_info,
segmentation_data_table: {
set_id: int,
segment_id: int,
},
segmentation_data_3d: {
values: int
}
};