Skip to content
Snippets Groups Projects
Commit 35805332 authored by David Sehnal's avatar David Sehnal
Browse files

Wrap Model.create in Task

parent ba2a4f3a
No related branches found
No related tags found
No related merge requests found
......@@ -178,7 +178,8 @@ export default class State {
if (this.spacefillRepr) this.viewer.remove(this.spacefillRepr)
if (this.pdbId.length !== 4) return
this.loading.next(true)
this.setModel((await getModelFromPdbId(this.pdbId))[0])
const models = await getModelFromPdbId(this.pdbId);
this.setModel(models[0])
}
setVolume(volume: Volume) {
......
......@@ -29,7 +29,7 @@ export async function parseCif(data: string|Uint8Array) {
export async function getModelFromPdbId(pdbid: string) {
const cif = await downloadCif(`https://files.rcsb.org/download/${pdbid}.cif`, false)
return Model.create({ kind: 'mmCIF', data: CIF.schema.mmCIF(cif.blocks[0]) })
return Run(Model.create({ kind: 'mmCIF', data: CIF.schema.mmCIF(cif.blocks[0]) }))
}
const readFileAsText = (file: File) => {
......@@ -46,7 +46,7 @@ const readFileAsText = (file: File) => {
export async function getModelFromFile(file: File) {
const cif = await parseCif(await readFileAsText(file))
return Model.create({ kind: 'mmCIF', data: CIF.schema.mmCIF(cif.blocks[0]) })
return Run(Model.create({ kind: 'mmCIF', data: CIF.schema.mmCIF(cif.blocks[0]) }))
}
export type Volume = { source: DensityServer_Data_Database, volume: VolumeData }
......
......@@ -16,6 +16,7 @@ import { OrderedSet } from 'mol-data/int';
import { Table } from 'mol-data/db';
import { mmCIF_Database } from 'mol-io/reader/cif/schema/mmcif';
import { openCif, downloadCif } from './helpers';
import { Run } from 'mol-task';
async function downloadFromPdb(pdb: string) {
......@@ -117,7 +118,7 @@ export function printIHMModels(model: Model) {
}
async function run(mmcif: mmCIF_Database) {
const models = Model.create({ kind: 'mmCIF', data: mmcif });
const models = await Run(Model.create({ kind: 'mmCIF', data: mmcif }));
const structure = Structure.ofModel(models[0]);
printSequence(models[0]);
printIHMModels(models[0]);
......
......@@ -21,6 +21,7 @@ import { getIHMCoarse } from './mmcif/ihm';
import { getSequence } from './mmcif/sequence';
import mmCIF_Format = Format.mmCIF
import { Task } from 'mol-task';
function findModelBounds({ data }: mmCIF_Format, startIndex: number) {
const num = data.atom_site.pdbx_PDB_model_num;
......@@ -154,25 +155,27 @@ function createModel(format: mmCIF_Format, bounds: Interval, previous?: Model):
};
}
function buildModels(format: mmCIF_Format): ReadonlyArray<Model> {
const atomCount = format.data.atom_site._rowCount;
const isIHM = format.data.ihm_model_list._rowCount > 0;
if (atomCount === 0) {
return isIHM
? [createModel(format, Interval.Empty, void 0)]
: [];
}
const models: Model[] = [];
let modelStart = 0;
while (modelStart < atomCount) {
const bounds = findModelBounds(format, modelStart);
const model = createModel(format, bounds, models.length > 0 ? models[models.length - 1] : void 0);
models.push(model);
modelStart = Interval.end(bounds);
}
return models;
function buildModels(format: mmCIF_Format): Task<ReadonlyArray<Model>> {
return Task.create('Create mmCIF Model', async ctx => {
const atomCount = format.data.atom_site._rowCount;
const isIHM = format.data.ihm_model_list._rowCount > 0;
if (atomCount === 0) {
return isIHM
? [createModel(format, Interval.Empty, void 0)]
: [];
}
const models: Model[] = [];
let modelStart = 0;
while (modelStart < atomCount) {
const bounds = findModelBounds(format, modelStart);
const model = createModel(format, bounds, models.length > 0 ? models[models.length - 1] : void 0);
models.push(model);
modelStart = Interval.end(bounds);
}
return models;
});
}
export default buildModels;
\ No newline at end of file
......@@ -7,7 +7,7 @@
import { IntMap, SortedArray, Iterator } from 'mol-data/int'
import { UniqueArray } from 'mol-data/generic'
import { SymmetryOperator } from 'mol-math/geometry/symmetry-operator'
import { Model, Format } from '../model'
import { Model } from '../model'
import { sortArray, sort, arraySwap, hash1 } from 'mol-data/util';
import Element from './element'
import Unit from './unit'
......@@ -85,11 +85,6 @@ namespace Structure {
export function create(units: ReadonlyArray<Unit>): Structure { return new Structure(units); }
export function ofData(format: Format) {
const models = Model.create(format);
return models.map(ofModel);
}
export function ofModel(model: Model): Structure {
const chains = model.atomicHierarchy.chainSegments;
const builder = new StructureBuilder();
......
......@@ -34,7 +34,7 @@ export async function readCIF(path: string) {
const data = parsed.result.blocks[0];
const mmcif = CIF.schema.mmCIF(data);
const models = Model.create({ kind: 'mmCIF', data: mmcif });
const models = await Run(Model.create({ kind: 'mmCIF', data: mmcif }));
const structures = models.map(Structure.ofModel);
return { mmcif, models, structures };
......
......@@ -74,7 +74,7 @@ export async function readCIF(path: string) {
console.timeEnd('schema')
console.time('buildModels')
const models = Model.create({ kind: 'mmCIF', data: mmcif });
const models = await Run(Model.create({ kind: 'mmCIF', data: mmcif }));
console.timeEnd('buildModels')
const structures = models.map(Structure.ofModel);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment