Create an experiment data object
Create an experiment data object.
labkey.experiment.createData(config, dataClassId = NULL, dataClassName = NULL, dataFileUrl = NULL)
config |
a list of base experiment object properties |
dataClassId |
(optional) a integer specifying the data class row ID |
dataClassName |
(optional) a string specifying the name of the data class |
dataFileUrl |
(optional) a string specifying the local file url of the uploaded file |
Create an experiment data object which can be used as either input or output datas for an experiment run.
Returns the object representation of the experiment data object.
Karl Lum
library(Rlabkey) ## create a non-assay backed run with data classes as data inputs and outputs d1 <- labkey.experiment.createData( list(name = "dc-01"), dataClassId = 400) d2 <- labkey.experiment.createData( list(name = "dc-02"), dataClassId = 402) run <- labkey.experiment.createRun( list(name="new run"), dataInputs = d1, dataOutputs = d2) labkey.experiment.saveBatch(baseUrl="http://labkey/", folderPath="home", protocolName=labkey.experiment.SAMPLE_DERIVATION_PROTOCOL, runList=run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.