StructureViewerInterface.ts 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. load(loadConfig: R): Promise<L|undefined>;
  48. load(loadConfig: R[]): Promise<(L|undefined)[]>;
  49. removeStructure(removeConfig: R|Array<R>): Promise<void>;
  50. select(modelId:string, labelAsymId: string, begin: number, end: number, mode: 'select'|'hover', operation:'add'|'set', operatorName?:string): void;
  51. select(selection: Array<SaguaroPosition>, mode: 'select'|'hover', operation:'add'|'set'): void;
  52. select(selection: Array<SaguaroRange>, mode: 'select'|'hover', operation:'add'|'set'): void;
  53. clear(): Promise<void>;
  54. clearSelection(mode:'select'|'hover', option?:SaguaroChain): void;
  55. setFocus(modelId: string, labelAsymId: string, begin: number, end: number, operatorName?:string): void;
  56. clearFocus(): void;
  57. cameraFocus(modelId: string, labelAsymId: string, positions:Array<number>, operatorName?:string): void;
  58. cameraFocus(modelId: string, labelAsymId: string, begin: number, end: number, operatorName?:string): void;
  59. createComponent(componentLabel: string, modelId:string, labelAsymId: string, begin: number, end : number, representationType: StructureRepresentationRegistry.BuiltIn, operatorName?:string): Promise<void>;
  60. createComponent(componentLabel: string, modelId:string, labelAsymId: string, representationType: StructureRepresentationRegistry.BuiltIn, operatorName?:string): Promise<void>;
  61. createComponent(componentLabel: string, residues: Array<SaguaroPosition>, representationType: StructureRepresentationRegistry.BuiltIn): Promise<void>;
  62. createComponent(componentLabel: string, residues: Array<SaguaroRange>, representationType: StructureRepresentationRegistry.BuiltIn): Promise<void>;
  63. isComponent(componentLabel: string): boolean;
  64. colorComponent(componentLabel: string, color: ColorTheme.BuiltIn): Promise<void>;
  65. getComponentSet(): Set<string>;
  66. removeComponent(componentLabel?: string): Promise<void>;
  67. displayComponent(componentLabel: string): boolean;
  68. displayComponent(componentLabel: string, visibilityFlag: boolean): void;
  69. resetCamera(): void;
  70. exportLoadedStructures(): Promise<void>;
  71. }
  72. export interface ViewerModelMapManagerInterface<R,L> {
  73. add(lC: R, trajectory: L): void;
  74. getModelIdFromTrajectory(trajectory: L): string|undefined;
  75. delete(lC: R): void;
  76. getChains(): SaguaroPluginModelMapType;
  77. getModelId(id: string): string;
  78. }