Interface IStartAnalysisParams

interface IStartAnalysisParams {
    allowNonExistentFiles?: boolean;
    configureJson?: any;
    configureXml?: string;
    file?: string[];
    fileIds?: number[];
    path?: string;
    pipelineDescription?: string;
    protocolDescription?: string;
    protocolName?: string;
    saveProtocol?: string | boolean;
    taskId?: string;
}

Properties

allowNonExistentFiles?: boolean
configureJson?: 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.

configureXml?: 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.

file?: string[]

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

fileIds?: number[]

Data IDs of files be to 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.

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 | boolean

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

taskId?: string

Identifier for the pipeline.

Generated using TypeDoc