SaguaroPluginInterface.ts 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import {LoadMolstarInterface} from "./MolstarPlugin";
  2. import {PluginContext} from "molstar/lib/mol-plugin/context";
  3. import {StructureRepresentationRegistry} from "molstar/lib/mol-repr/structure/registry";
  4. import {ColorTheme} from "molstar/lib/mol-theme/color";
  5. export type SaguaroPluginModelMapType = Map<string,{entryId: string; chains:Array<{label:string, auth:string; entityId: string; title: string; type:"polymer"|"water"|"branched"|"non-polymer"|"macrolide";}>;}>;
  6. export interface SaguaroPluginInterface extends SaguaroPluginPublicInterface{
  7. init: (elementId: string, props?: any) => void;
  8. load: (args: LoadMolstarInterface) => void;
  9. pluginCall: (f:(plugin: PluginContext)=>void) => void;
  10. clear: () => void;
  11. setSelectCallback: (g:(flag?:boolean)=>void)=>void;
  12. setModelChangeCallback: (f:(modelMap:SaguaroPluginModelMapType)=>void)=>void;
  13. setHoverCallback:(g:(flag?:boolean)=>void)=>void;
  14. setRepresentationChangeCallback:(g:(flag?:boolean)=>void)=>void;
  15. unsetCallbacks:()=>void;
  16. }
  17. export interface SaguaroPluginPublicInterface {
  18. select(modelId:string, labelAsymId: string, x: number, y: number, mode: 'select'|'hover', operation:'set'|'add'): void;
  19. select(selection: Array<{modelId:string; labelAsymId: string; position: number;}>, mode: 'select'|'hover', operation:'add'|'set'): void;
  20. select(selection: Array<{modelId:string; labelAsymId: string; begin: number; end:number;}>, mode: 'select'|'hover', operation:'add'|'set'): void;
  21. clearSelection: (mode:'select'|'hover', option?:{modelId:string; labelAsymId:string;}) => void;
  22. createComponent(componentId: string, modelId:string, labelAsymId: string, begin: number, end : number, representationType: StructureRepresentationRegistry.BuiltIn): Promise<void>;
  23. createComponent(componentId: string, modelId:string, labelAsymId: string, representationType: StructureRepresentationRegistry.BuiltIn): Promise<void>;
  24. createComponent(componentId: string, modelId:string, residues: Array<{labelAsymId: string; position: number;}>, representationType: StructureRepresentationRegistry.BuiltIn): Promise<void>;
  25. createComponent(componentId: string, modelId:string, residues: Array<{labelAsymId: string; begin: number; end: number;}>, representationType: StructureRepresentationRegistry.BuiltIn): Promise<void>;
  26. colorComponent(componentId: string, color: ColorTheme.BuiltIn): Promise<void>;
  27. removeComponent: (componentId?: string) => void;
  28. isComponent: (componentId: string) => boolean;
  29. displayComponent(componentLabel: string, visibilityFlag: boolean): void;
  30. displayComponent(componentLabel: string): boolean;
  31. getComponentSet: () => Set<string>;
  32. setFocus(modelId: string, labelAsymId: string, begin: number, end: number): void;
  33. clearFocus(): void;
  34. cameraFocus(modelId: string, labelAsymId: string, positions:Array<number>): void;
  35. cameraFocus(modelId: string, labelAsymId: string, begin: number, end: number): void;
  36. resetCamera: ()=>void;
  37. }