updateExperimentContainers - Adds a container to an experiment.

updateExperimentContainers(coreApi, containerBarcode, experimentType,
  experimentBarcode, useVerbose = FALSE)

Arguments

coreApi

coreApi object with valid jsessionid

containerBarcode

barcode of container that has a cell lot in it

experimentType

experiment entity type

experimentBarcode

barcode of the experiment

useVerbose

Use verbose communication for debugging

Value

RETURN returns a list $entity contains updated experiment information, $response contains the entire http response

Details

updateExperimentContainers Adds a container to an experiment.

Examples

# NOT RUN {
api<-CoreAPI("PATH TO JSON FILE")
login<- CoreAPI::authBasic(api)
update<- CoreAPI::updateExperimentContainers(login$coreApi,containerBarcode,
                                            experimentType, newExptbarcode,useVerbose = TRUE)
                                            logOut(login$coreApi )
# }