|
@@ -25,7 +25,7 @@ import { StructureSelectionQuery, StructureSelectionCategory } from '../../mol-p
|
|
|
import { MolScriptBuilder as MS } from '../../mol-script/language/builder';
|
|
|
import { GenericRepresentationRef } from '../../mol-plugin-state/manager/structure/hierarchy-state';
|
|
|
import { PluginUIContext } from '../../mol-plugin-ui/context';
|
|
|
-
|
|
|
+// import { Gunzip } from "zlibt2";
|
|
|
|
|
|
|
|
|
// TMDET imports
|
|
@@ -37,7 +37,7 @@ import { registerTmDetSymmetry } from './symmetry';
|
|
|
import { TmDetLabelProvider } from './labeling';
|
|
|
import { TmDetColorThemeProvider, updateSiteColors } from './tmdet-color-theme';
|
|
|
import { loadInitialSnapshot, rotateCamera, storeCameraSnapshot } from './camera';
|
|
|
-
|
|
|
+import { DebugUtil } from './debug-utils';
|
|
|
|
|
|
const Tag = MembraneOrientation.Tag;
|
|
|
const TMDET_MEMBRANE_ORIENTATION = 'Membrane Orientation';
|
|
@@ -205,13 +205,26 @@ async function loadStructure(ctx: PluginUIContext, params: any, pdbtmDescriptor:
|
|
|
// replace original symmetry format function
|
|
|
registerTmDetSymmetry(pdbtmDescriptor);
|
|
|
|
|
|
+ let format: "mmcif"|"pdb" = "mmcif";
|
|
|
+ // check url to determine file format and compression
|
|
|
+ const match: string[] = params.structureUrl.match(new RegExp('/(pdb|cif)(.gz)?$/g/'));
|
|
|
+ DebugUtil.log(`format: ${params.format}`);
|
|
|
+ if ((params.format != 'mmcif' || params.format != 'pdb') && match != null) {
|
|
|
+ if (match[0].startsWith('cif')) {
|
|
|
+ format = 'mmcif';
|
|
|
+ }
|
|
|
+ if (match[0].startsWith('pdb')) {
|
|
|
+ format = 'pdb';
|
|
|
+ }
|
|
|
+ } else if (params.format) {
|
|
|
+ format = params.format;
|
|
|
+ }
|
|
|
+
|
|
|
const builders = ctx.builders;
|
|
|
- const data = await builders.data.download({
|
|
|
- url: params.structureUrl,
|
|
|
- label: `${pdbtmDescriptor.pdb_id}`,
|
|
|
- isBinary: false
|
|
|
- }); // , { state: { isGhost: true } });
|
|
|
- const trajectory = await builders.structure.parseTrajectory(data, 'mmcif');
|
|
|
+ const data = await downloadData(ctx, params, pdbtmDescriptor);
|
|
|
+
|
|
|
+ const trajectory = await builders.structure.parseTrajectory(data, format);
|
|
|
+
|
|
|
|
|
|
// create membrane representation
|
|
|
await builders.structure.hierarchy.applyPreset(
|
|
@@ -219,7 +232,32 @@ async function loadStructure(ctx: PluginUIContext, params: any, pdbtmDescriptor:
|
|
|
}
|
|
|
|
|
|
|
|
|
+async function downloadData(ctx: PluginUIContext, params: any, pdbtmDescriptor: PDBTMDescriptor) {
|
|
|
+
|
|
|
+ // let gzipped: boolean = false;
|
|
|
+ // if (params.compression || params.structureUrl.endsWith('gz')) {
|
|
|
+ // gzipped = true;
|
|
|
+ // }
|
|
|
+
|
|
|
+ const builders = ctx.builders;
|
|
|
+ let downloadResult = await ctx.runTask(ctx.fetch({ url: params.structureUrl, type: "string" }));
|
|
|
+ console.log(downloadResult.slice(0, 100));
|
|
|
+ // TODO: temporary solution
|
|
|
+ downloadResult = downloadResult.replace(/HETATM.+\n/mg, ''); // remove all hetatom stuffs
|
|
|
+ // TODO: const uncompressed: string = await ungzip(downloadResult);
|
|
|
+ // console.log(uncompressed.slice(0, 100));
|
|
|
+
|
|
|
+ return await builders.data.rawData({
|
|
|
+ data: downloadResult,
|
|
|
+ label: `${pdbtmDescriptor.pdb_id}`,
|
|
|
+ }); // , { state: { isGhost: true } });
|
|
|
+
|
|
|
+}
|
|
|
|
|
|
+// async function ungzip(data: Uint8Array) {
|
|
|
+// // TODO: it does not work :(
|
|
|
+// return new Gunzip(data).decompress();
|
|
|
+// }
|
|
|
|
|
|
//
|
|
|
// //////////////////////////// END OF TMDET VIEWER SECTION
|