View source: R/labkey.transform.R
labkey.transform.getRunPropertyValue | R Documentation |
A function that takes in data.frame of the run properties info for a given assay transform script execution and returns the value for a given property name.
labkey.transform.getRunPropertyValue(runProps, propName)
runProps |
the data.frame of the run property key/value pairs |
propName |
the name of the property to get the value of within the runProps data.frame |
This helper function will most likely be used within an assay transform script after the
labkey.transform.readRunPropertiesFile function has been called to load the full set of run properties.
## Not run:
# library(Rlabkey)
run.props = labkey.transform.readRunPropertiesFile("${runInfo}");
run.data.file = labkey.transform.getRunPropertyValue(run.props, "runDataFile");
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.