setWellContents: setWellContents - Puts a sample lot in a container well.

Description Usage Arguments Details Value Author(s) Examples

Description

setWellContents - Puts a cell lot in a container well.

Usage

1
2
3
setWellContents(coreApi, containerType, containerBarcode, containerWellNum,
  sampleLotType, sampleLotBarcode, amount, amountUnit, concentration,
  concentrationUnit, useVerbose = FALSE)

Arguments

coreApi

coreApi object with valid jsessionid

containerType

container type

containerBarcode

barcode of a container that IS NOT assigned to an experiment.

containerWellNum

container well number. (In PFS 5.3.8 (semVer 2.7.1) if multi-wells are used, well A1 has to be filled or filled first in order to setWellContents in other cells.)

sampleLotType

sample lot type

sampleLotBarcode

barcode of lot to add to well

amount

amount to add (numeric)

amountUnit

units

concentration

(numeric)

concentrationUnit

concentration units

useVerbose

use verbose communications for debugging

Details

setWellContents Puts a sample lot in a container well.

Value

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

Author(s)

Craig Parman info@ngsanalytics.com

Natasha Mora natasha.mora@thermofisher.com

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## Not run: 
api <- coreAPI("PATH TO JSON FILE")
login <- authBasic(api)
well <- setWellContents(login$coreAPI,
  containerType = "CONTAINER", containerBarcode = "96W101", containerWellNum = "1",
  sampleLotType = "BEER_SAMPLE_LOT", sampleLotBarcode = "BS1000-1", amount = 1, amountUnit = "ml", concentration = 1,
  concentrationUnit = "nM", useVerbose = FALSE
)
logOut(login$coreApi)

## End(Not run)

ajwtech/pfsrsdk documentation built on June 14, 2019, 10:34 a.m.