StructureViewerInterface.ts 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. import {PluginContext} from "molstar/lib/mol-plugin/context";
  2. import {StructureRepresentationRegistry} from "molstar/lib/mol-repr/structure/registry";
  3. import {ColorTheme} from "molstar/lib/mol-theme/color";
  4. import {RegionSelectionInterface} from "../RcsbFvState/RcsbFvSelectorManager";
  5. import {Subscription} from "rxjs";
  6. import {RcsbFvStateInterface} from "../RcsbFvState/RcsbFvStateInterface";
  7. export type ChainType = "polymer"|"water"|"branched"|"non-polymer"|"macrolide";
  8. export type OperatorInfo = {ids:string[], name: string};
  9. export type ChainInfo = {auth:string;label:string;entityId:string;title:string;type:ChainType;operators:OperatorInfo[]};
  10. export type SaguaroPluginModelMapType = Map<string,{entryId: string; assemblyId: string, chains:Array<ChainInfo>;}>;
  11. export interface SaguaroChain {
  12. modelId: string;
  13. labelAsymId: string;
  14. operatorName?: string;
  15. }
  16. export interface SaguaroPosition extends SaguaroChain{
  17. position: number;
  18. }
  19. export interface SaguaroRange extends SaguaroChain {
  20. begin: number;
  21. end: number;
  22. }
  23. export interface SaguaroSet extends SaguaroChain{
  24. seqIds: Set<number>;
  25. }
  26. export interface SaguaroRegionList extends SaguaroChain{
  27. regions: Array<RegionSelectionInterface>;
  28. }
  29. export interface StructureViewerInterface<R,L,S> extends StructureViewerPublicInterface<R,L>,ViewerCallbackManagerInterface {
  30. init: (stateManager: RcsbFvStateInterface, args:S) => void;
  31. }
  32. export interface StructureViewerPublicInterface<R,L> extends ViewerActionManagerInterface<R,L>{}
  33. export interface ViewerManagerFactoryInterface<R,L,S extends {}> {
  34. getViewerManagerFactory(stateManager: RcsbFvStateInterface, args: S): {callbackManager:ViewerCallbackManagerInterface;actionManager:ViewerActionManagerInterface<R,L>};
  35. }
  36. export interface ViewerCallbackManagerInterface {
  37. subscribeRepresentationChange(): Subscription;
  38. subscribeHover(): Subscription;
  39. subscribeSelection(): Subscription;
  40. subscribeModelChange(): Subscription;
  41. modelChange(): void;
  42. unsubscribe(): void;
  43. pluginCall(f: (plugin: PluginContext) => void): void;
  44. }
  45. export interface ViewerActionManagerInterface<R,L> {
  46. load<Z extends R|R[]>(loadConfig: Z): Z extends R ? Promise<L|undefined> : Promise<(L|undefined)[]>;
  47. removeStructure(removeConfig: R|Array<R>): Promise<void>;
  48. select(modelId:string, labelAsymId: string, begin: number, end: number, mode: 'select'|'hover', operation:'add'|'set', operatorName?:string): void;
  49. select(selection: Array<SaguaroPosition>, mode: 'select'|'hover', operation:'add'|'set'): void;
  50. select(selection: Array<SaguaroRange>, mode: 'select'|'hover', operation:'add'|'set'): void;
  51. clear(): Promise<void>;
  52. clearSelection(mode:'select'|'hover', option?:SaguaroChain): void;
  53. setFocus(modelId: string, labelAsymId: string, begin: number, end: number, operatorName?:string): void;
  54. clearFocus(): void;
  55. cameraFocus(modelId: string, labelAsymId: string, positions:Array<number>, operatorName?:string): void;
  56. cameraFocus(modelId: string, labelAsymId: string, begin: number, end: number, operatorName?:string): void;
  57. createComponent(componentLabel: string, modelId:string, labelAsymId: string, begin: number, end : number, representationType: StructureRepresentationRegistry.BuiltIn, operatorName?:string): Promise<void>;
  58. createComponent(componentLabel: string, modelId:string, labelAsymId: string, representationType: StructureRepresentationRegistry.BuiltIn, operatorName?:string): Promise<void>;
  59. createComponent(componentLabel: string, residues: Array<SaguaroPosition>, representationType: StructureRepresentationRegistry.BuiltIn): Promise<void>;
  60. createComponent(componentLabel: string, residues: Array<SaguaroRange>, representationType: StructureRepresentationRegistry.BuiltIn): Promise<void>;
  61. isComponent(componentLabel: string): boolean;
  62. colorComponent(componentLabel: string, color: ColorTheme.BuiltIn): Promise<void>;
  63. getComponentSet(): Set<string>;
  64. removeComponent(componentLabel?: string): Promise<void>;
  65. displayComponent(componentLabel: string): boolean;
  66. displayComponent(componentLabel: string, visibilityFlag: boolean): void;
  67. resetCamera(): void;
  68. exportLoadedStructures(): Promise<void>;
  69. }
  70. export interface ViewerModelMapManagerInterface<R,L> {
  71. add(lC: R, trajectory: L): void;
  72. getModelIdFromTrajectory(trajectory: L): string|undefined;
  73. delete(lC: R): void;
  74. getChains(): SaguaroPluginModelMapType;
  75. getModelId(id: string): string;
  76. }