Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ScriptingApi

Facade class exporting some of Catana's functionality in a more abstract/unified way in order to provide more convenient interface, e.g., for scripting functionality. In many cases, this class abstracts from the underlying all-atom and coarse-grained models and enables to return both types of data with the same function call.

Hierarchy

  • ScriptingApi

Index

Properties

Methods

Properties

Static Private _lastPickProxyHover

_lastPickProxyHover: PickingProxy | undefined

Static Private _lastPickProxyLftClick

_lastPickProxyLftClick: PickingProxy | undefined

Static Private _stage

_stage: Stage

Methods

Static addArrow

  • addArrow(start: number[], end: number[], color: string, radius: number): Component | null
  • Adds colored arrow object pointing to particular location in the scene.

    Parameters

    • start: number[]

      start of the arrow (tail)

    • end: number[]

      end of the arrow (head)

    • color: string

      hexadecimal color of the arrow

    • radius: number

      radius/width of the arrow

    Returns Component | null

    reference to component storing the arrow

Static addBox

  • addBox(center: number[], color: string, heightAxis: number[], depthAxis: number[], size: number): Component | null
  • Adds colored box to the particular location in the scene.

    Parameters

    • center: number[]

      center of the box

    • color: string

      hexadecimal color of the box

    • heightAxis: number[]

      height axis of the box

    • depthAxis: number[]

      depth axis of the box

    • size: number

      size of the box

    Returns Component | null

    reference to component storing the box

Static addComponentAnnotation

  • addComponentAnnotation(comp: string | Component, pos: number[], content: string): Annotation | null
  • Attaches annotation label to the given component

    Parameters

    • comp: string | Component

      target component's UUID, name, or object reference

    • pos: number[]

      position of the label (in component's coordinate space)

    • content: string

      textual contents of the label

    Returns Annotation | null

    reference to newly added annotation object, or null if none added

Static addLabel

  • addLabel(pos: number[], color: string, size: number, text: string): Component | null
  • Places textual label to the given location.

    Parameters

    • pos: number[]

      position of the label

    • color: string

      hexadecimal text color

    • size: number

      text size

    • text: string

      contents of the label

    Returns Component | null

    reference to component storing the label

Static addLine

  • addLine(start: number[], end: number[], color: string, radius: number): Component | null
  • Adds line object spanning two provided points.

    Parameters

    • start: number[]

      start of the line

    • end: number[]

      end of the line

    • color: string

      color of the line

    • radius: number

      width of the line

    Returns Component | null

    reference to component storing the line

Static addModalWindow

  • Creates a new Modal window with the given content and appends it under the "Plugins" menu in the Top bar.

    comment

    The (intentionally more general) description of this function relies on the fact that frontend part of Catana handles the actual creation of the window, and so on. In fact, this function just makes a request to create a window but does not actually create one.

    Parameters

    Returns void

Static addRepresentationToComponent

  • addRepresentationToComponent(comp: string | Component, reprName: string): any
  • Adds given type of representation to the component

    example

    ScriptingApi.addRepresentationToComponent("1bna.cif", "ball+stick")

    Parameters

    • comp: string | Component

      target component's UUID, name, or object reference

    • reprName: string

      name of the representation

    Returns any

    reference to the representation element/object

Static Private addShape

Static addSphere

  • addSphere(center: number[], color: string, radius: number): Component | null
  • Adds colored sphere object to the scene. For addition of multiple spheres, it is recommended to prefer the addSpheres function.

    Parameters

    • center: number[]

      center of the sphere

    • color: string

      hexadecimal string defining the sphere's color

    • radius: number

      radius of the sphere

    Returns Component | null

    reference to component with the sphere

Static addSpheres

  • addSpheres(centers: number[], colors: string[], radii: number[], opacity: number): Component | null
  • Adds one or more colored spheres to the scene. Spheres are represented using a single component and data buffer, thus this method is significantly better, performance-wise, than making multiple addSphere calls.

    example

    // Adds two spheres with centers at [0, 0, 0] and [10, 5, 15] coordinates. // The first sphere is red and has a radius of 5 Ang., // the second one is green with 10 Ang. radius. // Both are semi-transparent. ScriptingApi.addSpheres([0, 0, 0, 10, 5, 15], ["#FF0000","#00FF00"], [5, 10], 0.75)

    Parameters

    • centers: number[]

      array of centers of the spheres

    • colors: string[]

      array of hexadecimal colors of the spheres

    • radii: number[]

      array of radii of the spheres

    • opacity: number

      opacity of the spheres (<1.0 makes spheres semi-transparent)

    Returns Component | null

    component storing the newly added spheres

Static addVectors

  • addVectors(v1: number[], v2: number[]): number[]
  • Returns vector (three-element array) equal to the sum of two provided vectors.

    example

    const v = ScriptingApi.addVectors([10, 5, 8], [0, 5, 2]) // "v" equals to [10, 10, 10]

    Parameters

    • v1: number[]

      first vector

    • v2: number[]

      second vector

    Returns number[]

    sum of vectors {@link v1} and v2

Static Private arrToMat4

  • arrToMat4(m: number[]): Matrix4

Static Private arrToVec3

  • arrToVec3(v: number[]): Vector3

Static attachToUpdate

  • attachToUpdate(scriptName: string): void

Static convertAaComponentToCg

Static convertCgComponentToAa

Static copyComponent

Static Private createDnaPep

  • createDnaPep(seq: string, params: Partial<{ compType: "dna" | "protein" | "unknown"; dnaDoubleStranded: boolean }>): Component | null

Static createDsDna

Static createDsDnaBetweenPoints

  • Creates coarse-grained straight double-helical DNA segment starting at point {@link start} and ending at point {@link end}. The sequence of DNA is defined by currently used sequence provider.

    Parameters

    • start: number[]

      vector (three-element array) defining the start of the double helix

    • end: number[]

      vector (three-element array) defining the end of the double helix

    • Optional parentComp: CgStructureComponent

      if provided, defines component to which the DNA should be appended

    Returns CgStructureComponent | null

    reference to the component (either {@link parentComp} or a newly created one) containing the created DNA

Static createPeptide

  • createPeptide(seq: string): Component | null
  • Creates coarse-grained peptide with the given sequence. The structure of the peptide is only a crude approximation.

    Parameters

    • seq: string

      peptide sequence

    Returns Component | null

    refeence to the component encapsulating the peptide

Static createSsDna

  • Creates coarse-grained single-stranded DNA object having the desired sequence.

    Parameters

    • seq: string

      sequence of the newly created DNA strand

    Returns Component | null

    reference to newly created component, or null in case of an error

Static crossProduct

  • crossProduct(v1: number[], v2: number[]): number[]
  • Returns vector corresponding to the cross product of two provided vectors.

    Parameters

    • v1: number[]

      first vector

    • v2: number[]

      second vector

    Returns number[]

    vector equal to the cross product of {@link v1} and v2

Static detachFromUpdate

  • detachFromUpdate(scriptName: string): void

Static dotProduct

  • dotProduct(v1: number[], v2: number[]): number

Static downloadPdb

Static downloadScreenshot

  • downloadScreenshot(name: string, transparent: boolean): void
  • Downloads screenshot from the current point of view.

    Parameters

    • name: string

      name of the file to download (without extension)

    • transparent: boolean

      boolean determining if the screenshot should be transparent or not

    Returns void

Static downloadTxt

  • downloadTxt(name: string, content: string): void
  • Downloads given string as *.txt file with the provided name.

    Parameters

    • name: string

      name of the file to download (without extension)

    • content: string

      contents of the text file

    Returns void

Static downloadUnf

Static eachAtom

Static eachAtomOfResidue

Static eachChain

Static eachResidue

Static eachResidueOfChain

Static fetchPubchem

Static fetchRcsb

Static Private fetchStructureCommon

Static fetchUrl

Static Private findComponentByString

  • findComponentByString(input: string): Component | null

Static findComponentWithName

  • findComponentWithName(name: string): Component | null
  • Finds component with the given name. If more components with the same name exist, the first found is returned.

    Parameters

    • name: string

      name of the component to search for

    Returns Component | null

    reference to found component or null if not found

Static findComponentWithUuid

  • findComponentWithUuid(uuid: string): Component | null

Static focusOnAll

  • focusOnAll(): void

Static focusOnComponent

  • focusOnComponent(comp: string | Component): void

Static getAtomCount

Static getAtomGenLimit

  • getAtomGenLimit(): number

Static getAtomIndex

Static getAtomName

Static getAtomPosition

Static getChainAtIndex

Static getChainCount

  • Returns the number of chains of the provided structure. In case of all-atom structures, this number may also include non-polymer chains (e.g., water chains or "chains" formed by small molecules).

    Parameters

    Returns number

    number of chains

Static getChainLength

Static getChainName

Static getComponentCenter

  • getComponentCenter(comp: string | Component): number[]
  • Returns position of the component's centroid.

    Parameters

    • comp: string | Component

      target component's UUID, name, or object reference

    Returns number[]

    vector (three-element array) corresponding to component's centroid position, or empty array if component is not found

Static getComponentMatrix

  • getComponentMatrix(comp: string | Component): number[]
  • Returns matrix describing the component's transformations.

    Parameters

    • comp: string | Component

      target component's UUID, name, or object reference

    Returns number[]

    array storing the matrix storing the component's transformation data.

Static getComponentName

  • getComponentName(comp: string | Component): string

Static getComponentPosition

  • getComponentPosition(comp: string | Component, targetArray?: number[]): number[]
  • Returns position of the component's origin.

    Parameters

    • comp: string | Component

      target component's UUID, name, or object reference

    • Optional targetArray: number[]

      if provided, the position will be stored into this array

    Returns number[]

    reference to {@link targetArray} filled with the position data or a reference to new vector/array with positional data

Static Private getComponentReference

Static getComponentRotation

  • getComponentRotation(comp: string | Component, targetArray?: number[]): number[]
  • Returns rotation of the provided component.

    Parameters

    • comp: string | Component

      target component's UUID, name, or object reference

    • Optional targetArray: number[]

      if provided, the rotation will be stored into this array

    Returns number[]

    reference to {@link targetArray} filled with the rotation data or a reference to new vector/array with rotation data

Static getComponentSequence

  • getComponentSequence(comp: string | Component): string
  • Returns FASTA-formatted sequence of this component's structure.

    example

    const seq = ScriptingApi.getComponentSequence("1bna.cif") console.log(seq); // Console output: // >1bna.cif|Chain A|Len 12 // CGCGAATTCGCG // >1bna.cif|Chain B|Len 12 // CGCGAATTCGCG

    Parameters

    • comp: string | Component

      target component's UUID, name, or object reference

    Returns string

    structure sequence FASTA string

Static getComponentUuid

Static getComponents

Static getDeltaTime

  • getDeltaTime(): number

Static getElementName

Static getFunctionsList

  • getFunctionsList(): [string, string, (...args: any) => any][]
  • Returns an array of three-element tuples:

    • function name for JSPython (e.g., "add")
    • function description (e.g., "Returns sum of two provided numbers")
    • reference to function itself

    Returns [string, string, (...args: any) => any][]

Static getLastClickedAtom

Static getLastClickedChain

Static getLastClickedObject

  • Returns reference to the last object (instance of PickingProxy) that was clicked with the left mouse button. If some of Catana's integrated modelling tools are active (e.g., amino acid mutation), the newly left-clicked objects are not reported during this period and old value remains.

    Returns PickingProxy | null

    reference to the last clicked object

Static getLastClickedResidue

Static getLastClickedStructure

Static getLastHoveredAtom

Static getLastHoveredChain

Static getLastHoveredObject

  • Returns reference to the last object (instance of PickingProxy) that was hovered-over with a mouse (i.e., the cursor was pointing to the given object). If some of Catana's integrated modelling tools are active (e.g., amino acid mutation), the newly hovered-over objects are not reported during this period and old value remains.

    Returns PickingProxy | null

    reference to the last hovered-over object

Static getLastHoveredResidue

Static getLastHoveredStructure

Static getMatrixInverse

  • getMatrixInverse(mat: number[]): number[]

Static getResidueAtIndex

Static getResidueCount

Static getResidueIndex

Static getResidueName

Static getResiduePosition

  • Returns vector corresponding to the position of the residue. For all-atom model structures, this position equals to the centroid of all residue atoms. For coarse-grained model structures, this position equals to the position of the residue's backbone.

    Parameters

    Returns number[]

    vector (three-element array) storing the position

Static getSharedVar

  • getSharedVar(name: string): any

Static getStructuralComponents

Static getStructureFromComponent

Static hasSharedVar

  • hasSharedVar(name: string): boolean

Static Private httpGetCommon

  • httpGetCommon(type: "json" | "text", url: string): Promise<any>

Static httpGetObject

  • httpGetObject(url: string): Promise<object>
  • Creates a GET request targeted at the given resource. Expects that the response is a JSON, that is converted to an object.

    Parameters

    • url: string

      resource URL

    Returns Promise<object>

    promise resolving with response object

Static httpGetText

  • httpGetText(url: string): Promise<string>
  • Creates a GET request targeted at the given resource. Expects that the response is a text/string.

    Parameters

    • url: string

      resource URL

    Returns Promise<string>

    promise resolving with response text

Static Private httpPostCommon

  • httpPostCommon(url: string, responseType: "json" | "text", body: any, contentType: string): Promise<any>

Static httpPostObject

  • httpPostObject(url: string, responseType: "json" | "text", object: {}): Promise<any>
  • Creates a POST request targeted at the given resource. Body of the request is a JSON created from the provided object.

    Parameters

    • url: string

      resource URL

    • responseType: "json" | "text"

      type of expected response from the server (if set to "json", response data are an object)

    • object: {}

      object to provide as request body

      • [name: string]: any

    Returns Promise<any>

    promise resolving with response data

Static httpPostText

  • httpPostText(url: string, responseType: "json" | "text", text: string): Promise<any>
  • Creates a POST request targeted at the given resource. Body of the request is a given text.

    Parameters

    • url: string

      resource URL

    • responseType: "json" | "text"

      type of expected response from the server (if set to "json", response data are an object)

    • text: string

      text to provide as request body

    Returns Promise<any>

    promise resolving with response data

Static httpPostUrlQuery

  • httpPostUrlQuery(url: string, responseType: "json" | "text", object: {}): Promise<any>
  • Creates a POST request targeted at the given resource. The request is encoded as an URL query string.

    Parameters

    • url: string

      resource URL

    • responseType: "json" | "text"

      type of expected response from the server (if set to "json", response data are an object)

    • object: {}

      object defining query parameters (object properties) and their values (property values)

      • [query: string]: string

    Returns Promise<any>

    promise resolving with response data

Static init

  • init(stage: Stage): void

Static installPlugin

  • installPlugin(path: string): void
  • Installs (i.e., loads into Catana) plugin stored at the provided URL, or stored at official Catana plugin repository with the provided name.

    Parameters

    • path: string

      URL or name referencing the plugin file

    Returns void

Static installScript

  • installScript(path: string): void

Static isAllAtom

  • isAllAtom(obj: any): boolean
  • Returns true if the given component or structure represents all-atom data.

    Parameters

    • obj: any

      structure or component to check for

    Returns boolean

    true if the provided object represents all-atom data

Static isCoarseGrained

  • isCoarseGrained(obj: any): boolean
  • Returns true if the given component or structure represents coarse-grained data.

    Parameters

    • obj: any

      structure or component to check for

    Returns boolean

    true if the provided object represents coarse-grained data

Static isNucleicChain

Static isNucleicResidue

Static isProteinChain

Static isProteinResidue

Static log

  • log(message: any): void

Static makeRotationMatrix

  • makeRotationMatrix(euler: number[]): number[]

Static makeTranslationMatrix

  • makeTranslationMatrix(transl: number[]): number[]

Static markDisposable

  • markDisposable(comp: string | Component): void
  • Marks the component as disposable. The motivation to do this is to internally label selected components as disposable ones, i.e., only temporary, to be able to remove all of them at once making a single removeDisposables call.

    Parameters

    • comp: string | Component

      target component's UUID, name, or object reference

    Returns void

Static Private mat4ToArr

  • mat4ToArr(m: Matrix4): number[]

Static multiplyMatrixMatrix

  • multiplyMatrixMatrix(m1: number[], m2: number[]): number[]

Static multiplyMatrixVector

  • multiplyMatrixVector(matrix: number[], v: number[]): number[]

Static multiplyVectorByScalar

  • multiplyVectorByScalar(v1: number[], a: number): number[]

Static normalizeVector

  • normalizeVector(v1: number[]): number[]

Static removeAllComponents

  • removeAllComponents(): void

Static removeComponent

  • removeComponent(comp: string | Component): void

Static removeComponentAnnotation

Static removeComponentAnnotations

  • removeComponentAnnotations(comp: string | Component): void

Static removeComponentRepresentations

  • removeComponentRepresentations(comp: string | Component): void

Static removeDisposables

  • removeDisposables(): void

Static removeSharedVar

  • removeSharedVar(name: string): boolean
  • Removes given shared variable, i.e., it will not exist anymore.

    Parameters

    • name: string

      name of the variable to remove

    Returns boolean

    true if the variable was removed successfully, false otherwise

Static rotateComponent

  • Rotates component around X, Y, and Z axes by the given amount in degrees.

    Parameters

    • comp: string | Component

      target component's UUID, name, or object reference

    • rotDeg: number[]

      rotation (three-element array in degrees)

    Returns Component | null

    reference to rotated component

Static runScript

  • runScript(name: string, ...args: any[]): void

Static setAtomGenLimit

  • setAtomGenLimit(max: number): void

Static setBackgroundColor

  • setBackgroundColor(hexColor: string): void

Static setComponentName

Static setComponentPosition

Static setComponentRotation

Static setRepresentationColor

  • Sets new color scheme for the selected component's representation

    example

    ScriptingApi.setRepresentationColor("1bna.cif", "cartoon", "resname")

    Parameters

    • comp: string | Component

      target component's UUID, name, or object reference

    • repr: string | RepresentationElement

      name (or reference to) of the representation to modify

    • color: number | string | Color

      new color, resp. color scheme, to use

    Returns void

Static Private setRepresentationCommon

Static setRepresentationFilter

  • Sets new filter string for the selected component's representation

    example

    ScriptingApi.setRepresentationFilter("1bna.cif", "cartoon", "5-10 or :B")

    Parameters

    • comp: string | Component

      target component's UUID, name, or object reference

    • repr: string | RepresentationElement

      name (or reference to) of the representation to modify

    • filter: string

      new filter string

    Returns void

Static setSharedVar

  • setSharedVar(name: string, value: any): void

Static setVisibility

Static showAlert

  • showAlert(message: string): void

Static showConfirm

  • showConfirm(message: string): boolean

Static showPrompt

  • showPrompt(message?: string, defaultValue?: string): string
  • Shows a prompt enabling to gather user's textual input.

    Parameters

    • Default value message: string = "Please provide input:"

      message to show to the user

    • Default value defaultValue: string = ""

      value pre-filled in the input field

    Returns string

    text inputted by the user

Static subtractVectors

  • subtractVectors(v1: number[], v2: number[]): number[]
  • Returns vector (three-element array) equal to the subtraction of one vector from another.

    Parameters

    • v1: number[]

      first vector

    • v2: number[]

      second vector

    Returns number[]

    vector equal to {@link v1}-v2

Static translateComponent

  • Translates provided component by the given amount of Angstroms.

    Parameters

    • comp: string | Component

      target component's UUID, name, or object reference

    • transl: number[]

      amount of translation (along x, y, and z axes)

    Returns Component | null

    reference to translated component

Static Private vec3ToArr

  • vec3ToArr(v: Vector3): number[]

Static vectorLength

  • vectorLength(v1: number[]): number

Generated using TypeDoc