Interface IStartAnalysisOptions

interface IStartAnalysisOptions {
    allowNonExistentFiles?: boolean;
    containerPath?: string;
    failure?: RequestFailure<any>;
    fileIds: number[];
    files: string[];
    jsonParameters?: any;
    path: string;
    pipelineDescription?: string;
    protocolDescription?: string;
    protocolName: string;
    saveProtocol?: string;
    scope?: any;
    success?: RequestSuccess<any>;
    taskId: string;
    xmlParameters?: string;
}

Hierarchy (view full)

Properties

allowNonExistentFiles?: boolean
containerPath?: string

The container in which to make the request (defaults to current container)

failure?: RequestFailure<any>

This will be called upon failure to complete a request.

fileIds: number[]

Data IDs of files to be used as inputs for this pipeline. These correspond to the rowIds from the table ext.data. They do not need to be located within the file path provided. The user does need read access to the container associated with each file.

files: string[]

names of the file within the subdirectory described by the path property

jsonParameters?: any

JSON representation of the protocol description. Not allowed if a protocol with the same name has already been saved. If no protocol with the same name exists, either this property or xmlParameters must be specified.

path: string

relative path from the folder's pipeline root

pipelineDescription?: string

description displayed in the pipeline

protocolDescription?: string

description of the analysis protocol

protocolName: string

name of the analysis protocol

saveProtocol?: string

if no protocol with this name already exists, whether or not to save this protocol definition for future use. Defaults to true.

scope?: any

A scoping object for the success and failure callback functions (default to this).

success?: RequestSuccess<any>

This will be called upon successfully completing a request.

taskId: string

taskId Identifier for the pipeline.

xmlParameters?: string

XML representation of the protocol description. Not allowed if a protocol with the same name has already been saved. If no protocol with the same name exists, either this property or jsonParameters must be specified.

Generated using TypeDoc