Description Usage Arguments Value Methods (by generic) Slots
The CoreSet (CSet) class was developed as a superclass for objects in the PharmacoGx and RadioGx packages to contain the data generated in screens of cancer cell lines for their genetic profile and sensitivities to therapy (Pharmacological or Radiation). This class is meant to be a superclass which is contained within the PharmacoSet (PSet) and RadioSet (RSet) objects exported by PharmacoGx and RadioGx. The format of the data is similar for both data PSets and RSets, allowing much of the code to be abstracted into the CoreSet super-class. However, the models involved with quantifying cellular response to Pharmacological and Radiation therapy are widely different, and two seperate implementations of the CSet class allows the packages to apply the correct model for the given data.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | ## S4 method for signature 'CoreSet'
cellInfo(cSet)
## S4 replacement method for signature 'CoreSet,data.frame'
cellInfo(object) <- value
## S4 method for signature 'CoreSet'
phenoInfo(cSet, mDataType)
## S4 replacement method for signature 'CoreSet,character,data.frame'
phenoInfo(object,
mDataType) <- value
## S4 method for signature 'CoreSet,character'
molecularProfiles(cSet, mDataType)
## S4 replacement method for signature 'CoreSet,character,matrix'
molecularProfiles(object,
mDataType) <- value
## S4 method for signature 'CoreSet'
featureInfo(cSet, mDataType)
## S4 replacement method for signature 'CoreSet,character,data.frame'
featureInfo(object,
mDataType) <- value
## S4 method for signature 'CoreSet'
sensitivityInfo(cSet)
## S4 replacement method for signature 'CoreSet,data.frame'
sensitivityInfo(object) <- value
## S4 method for signature 'CoreSet'
sensitivityProfiles(cSet)
## S4 replacement method for signature 'CoreSet,data.frame'
sensitivityProfiles(object) <- value
## S4 replacement method for signature 'CoreSet,matrix'
sensitivityProfiles(object) <- value
## S4 method for signature 'CoreSet'
sensitivityMeasures(cSet)
## S4 method for signature 'CoreSet'
cellNames(cSet)
## S4 replacement method for signature 'CoreSet,character'
cellNames(object) <- value
## S4 method for signature 'CoreSet'
fNames(cSet, mDataType)
## S4 method for signature 'CoreSet'
dateCreated(cSet)
## S4 method for signature 'CoreSet'
cSetName(cSet)
## S4 method for signature 'CoreSet'
pertNumber(cSet)
## S4 method for signature 'CoreSet'
sensNumber(cSet)
## S4 replacement method for signature 'CoreSet,array'
pertNumber(object) <- value
## S4 replacement method for signature 'CoreSet,matrix'
sensNumber(object) <- value
|
cSet |
A |
object |
A |
value |
A replacement value |
mDataType |
A |
An object of the CoreSet class
cellInfo
: Returns the annotations for all the cell lines tested on in the CoreSet
cellInfo<-
: Update the cell line annotations
phenoInfo
: Return the experiment info from the given type of molecular data in CoreSet
phenoInfo<-
: Update the the given type of molecular data experiment info in the CoreSet
molecularProfiles
: Return the given type of molecular data from the CoreSet
molecularProfiles<-
: Update the given type of molecular data from the CoreSet
featureInfo
: Return the feature info for the given molecular data
featureInfo<-
: Replace the gene info for the molecular data
sensitivityInfo
: Return the drug dose sensitivity experiment info
sensitivityInfo<-
: Update the sensitivity experiment info
sensitivityProfiles
: Return the phenotypic data for the drug dose sensitivity
sensitivityProfiles<-
: Update the phenotypic data for the drug dose
sensitivity
sensitivityProfiles<-
: Update the phenotypic data for the drug dose
sensitivity
sensitivityMeasures
: Returns the available sensitivity profile
summaries, for example, whether there are IC50 values available
cellNames
: Return the cell names used in the dataset
cellNames<-
: Update the cell names used in the dataset
fNames
: Return the feature names used in the dataset
dateCreated
: Return the date the CoreSet was created
cSetName
: Return the name of the CoreSet
pertNumber
: Return the summary of available perturbation
experiments
sensNumber
: Return the summary of available sensitivity
experiments
pertNumber<-
: Update the summary of available perturbation
experiments
sensNumber<-
: Update the summary of available sensitivity
experiments
annotation
A list
of annotation data about the CoreSet,
including the $name
and the session information for how the object
was creating, detailing the exact versions of R and all the packages used
molecularProfiles
A list
containing 4 Biobase::ExpressionSet
type object for holding data for RNA, DNA, SNP and Copy Number Variation
measurements respectively, with associated fData
and pData
containing the row and column metadata
cell
A data.frame
containg the annotations for all the cell
lines profiled in the data set, across all data types
sensitivity
A list
containing all the data for the sensitivity
experiments, including $info
, a data.frame
containing the
experimental info,$raw
a 3D array
containing raw data,
$profiles
, a data.frame
containing sensitivity profiles
statistics, and $n
, a data.frame
detailing the number of
experiments for each cell-drug/radiationInfo pair
perturbation
A list
containting $n
, a data.frame
summarizing the available perturbation data,
curation
A list
containing mappings for
cell
, tissue
names used in the data set to universal
identifiers used between different CoreSet objects
datasetType
A character
string of 'sensitivity',
'perturbation', or both detailing what type of data can be found in the
CoreSet, for proper processing of the data
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.