summarizeData | R Documentation |
This function serves to get molecular profiles from a XevaSet
object.
summarizeData( object, drug, mDataType, tissue = NULL, sensitivity.measure = "all", sen.type = c("batch", "model"), unique.model = TRUE, batch = NULL, summarizedExp = FALSE ) summarizeMolecularProfiles(...)
object |
The |
drug |
Name of the drug. |
mDataType |
|
tissue |
Default |
sensitivity.measure |
Default |
sen.type |
Type of sensitivity measure. Options are 'batch' (default) or 'model' |
unique.model |
Default |
batch |
Name of the batch. Default |
summarizedExp |
If |
If a sequencing sample belongs to multiple models, this function will create a separate column for each model.
All models without molecular data will be removed from the output object.
An ExpressionSet
where sample names are model.id
and sensitivity measures will be presented in pData
.
data(brca) pacRNA <- summarizeData(brca, drug="paclitaxel", mDataType="RNASeq", tissue= "BRCA", sensitivity.measure="mRECIST") print(pacRNA) #to get all batch level response pacRNA <- summarizeData(brca, drug="paclitaxel", mDataType="RNASeq", tissue= "BRCA", sensitivity.measure="all") print(pacRNA) #to get all model level response pacRNA <- summarizeData(brca, drug="paclitaxel", mDataType="RNASeq", tissue= "BRCA", sensitivity.measure="all", sen.type="model") print(pacRNA)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.