Name Mode Size
..
.Rapp.history 100644
AllGenerics.R 100644 4 kb
DrugData-class.R 100644 1 kb
DrugData-methods.R 100644 3 kb
Drug_MOA_Key.R 100644 0 kb
MolData-class.R 100644 1 kb
MolData-methods.R 100644 4 kb
crossCors.R 100755 4 kb
dataDocumentation.R 100644 5 kb
getActivityRangeStats.R 100755 3 kb
getBinaryMutationData.R 100644 6 kb
getColumnQuantiles.R 100755 1 kb
getDrugActivityData.R 100755 1 kb
getDrugActivityRange.R 100755 1 kb
getDrugActivityRepeatData.R 100755 2 kb
getDrugMoaList.R 100755 1 kb
getDrugName.R 100644 1 kb
getFeatureDataFromMatList.R 100755 2 kb
getMedSenLineActivity.R 100755 2 kb
getMinDrugActivityRepeatCor.R 100755 2 kb
getMoaStr.R 100755 1 kb
getMoaToCompounds.R 100644 1 kb
getMolDataMatrices.R 100644 1 kb
getMolDataType.R 100755 1 kb
getNumDrugActivityRepeats.R 100755 1 kb
getNumMissingLines.R 100755 1 kb
getRsd.R 100755 1 kb
getSmiles.R 100644 1 kb
hasMoa.R 100755 0 kb
isPublic.R 100755 0 kb
loadCellminerPlotInfo.R 100644 2 kb
loadNciColorSet.R 100755 5 kb
parCorPatternComparison.R 100644 5 kb
patternComparison.R 100755 3 kb
plotCellMiner.R 100755 10 kb
plotCellMiner2D.R 100644 6 kb
plotDrugActivityRepeats.R 100755 2 kb
plotDrugSets.R 100755 3 kb
rcellminer.R 100644 1 kb
removeMolDataType.R 100755 1 kb
restrictFeatureMat.R 100755 1 kb
rowCors.R 100644 1 kb
searchForNscs.R 100644 1 kb
selectCorrelatedRows.R 100755 1 kb
selectCorrelatedRowsFromMatrices.R 100755 3 kb
README.md
[![Travis-CI Build Status](https://travis-ci.org/cannin/rcellminer.svg?branch=master)](https://travis-ci.org/cannin/rcellminer) [![codecov.io](https://codecov.io/github/cannin/rcellminer/coverage.svg?branch=master)](https://codecov.io/github/cannin/rcellminer?branch=master) # RCellminer This R package provide access to the data and functions to analyze data from [CellMiner](http://discover.nci.nih.gov/cellminer). # Installation ## Install from GitHub setRepositories(ind=1:6) options(repos="http://cran.rstudio.com/") if (!require("devtools")) install.packages("devtools") if (!requireNamespace("BiocManager", quietly=TRUE)) install.packages("BiocManager") if (!require("Biobase")) { BiocManager::install() } BiocManager::install("BiocStyle") library(devtools) # Optional for interactive plots install_github('rCharts', 'ramnathv') install_github("cannin/rcellminer", build_vignette=FALSE, dependencies=TRUE, args="--no-multiarch", ref="master") install_github("github/rcellminerData", build_vignette=FALSE, dependencies=TRUE, args="--no-multiarch", ref="master") ## Install from local ### Open Project Open .Rproj file in RStudio ### Install Dependencies if (require("devtools")) install.packages("devtools") setRepositories(ind=1:6) library(devtools) install_deps(".") # Run Vignette Open vignette (Rmd files) from vignettes/ folder and use "Knit HTML" button to generate the HTML file.