Interface LoadBatchesOptions

interface LoadBatchesOptions {
    assayId: number;
    assayName: string;
    batchIds: number[];
    containerPath?: string;
    failure?: RequestFailure<any>;
    protocolName?: string;
    providerName: string;
    scope?: any;
    success?: RequestSuccess<RunGroup[]>;
}

Hierarchy (view full)

Properties

assayId: number

The assay protocol id.

assayName: string

The name of the assay.

batchIds: number[]

An Array of batch ids.

containerPath?: string

Load batches from a specific container. If not specified, the batches will be loaded from the current container.

failure?: RequestFailure<any>

This will be called upon failure to complete a request.

protocolName?: string

Optional protocol name to be used for non-assay backed runs. Currently only SAMPLE_DERIVATION_PROTOCOL is supported.

providerName: string

The assay provider name.

scope?: any

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

This will be called upon successfully completing a request.

Generated using TypeDoc