Description Usage Arguments Details Value Author(s) Examples
View source: R/setWellContents.R
setWellContents
- Puts a cell lot in a container well.
1 2 3 | setWellContents(coreApi, containerType, containerBarcode, containerWellNum,
sampleLotType, sampleLotBarcode, amount, amountUnit, concentration,
concentrationUnit, ...)
|
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 |
... |
additional arguments passed to |
setWellContents
Puts a sample lot in a container well.
List of length 2, containing content
and response
objects:
content
is the HTTP response content of updated well information.
response
is the entire HTTP response.
Craig Parman info@ngsanalytics.com
Natasha Mora natasha.mora@thermofisher.com
Scott Russell scott.russell@thermofisher.com
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.