Helper class for interfacing with python scripts in the ./python directory. Primarily deals with globus.

Constructors

Methods

Constructors

Methods

  • Runs the specified python file.

    Parameters

    • file: string

      Path of the file to run

    • args: string[] = []

      Arguments to be passed when running the file.

    • returnTags: string[] = []

      Items to be returned

    Returns Promise<Record<string, null | string>>

    • Values returned by the function that correspond the the ones passed in returnTags

    Static

    Async

  • Runs the specified python file. The person running this file can provide user input.

    Parameters

    • file: string

      Path of the file to run

    • args: string[] = []

      Arguments to be passed when running the file.

    • returnTags: string[] = []

      Items to be returned

    Returns Promise<Record<string, unknown>>

    • Values returned by the function that correspond the the ones passed in returnTags

    Static

    Async

Generated using TypeDoc