فهرست منبع

Issue #805: transformation before applying MembraneOrientationPreset

cycle20 1 سال پیش
والد
کامیت
3b245e7146
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 2 1
      src/examples/assembly-tm/preset2.ts

+ 2 - 1
src/examples/assembly-tm/preset2.ts

@@ -121,6 +121,8 @@ export const TmDetRcsbPreset = TrajectoryHierarchyPresetProvider({
             .apply(StateTransforms.Model.StructureFromModel, props, { ref: 'assembly' })
             .commit();
 
+        applyTransformations(plugin, descriptor!);
+
         const builder = plugin.builders.structure;
         const model = new StateObjectSelector(plugin.state.data.build().to('model').ref, plugin.state.data);
         const modelProperties = await builder.insertModelProperties(model.ref);
@@ -128,7 +130,6 @@ export const TmDetRcsbPreset = TrajectoryHierarchyPresetProvider({
         const structureProperties = await builder.insertStructureProperties(structure);
         const representation = await plugin.builders.structure.representation.applyPreset<any>(structureProperties, MembraneOrientationPreset, {});
 
-        applyTransformations(plugin, descriptor!);
 
         (window as any).plugin = plugin;