Project website
License
LGPL-3.0, GPL-3.0 licenses found
Licenses found
LGPL-3.0
COPYING.LESSER
GPL-3.0
COPYING
chuang95/KEA_DrugResponse
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
master
Could not load branches
Nothing to show
Could not load tags
Nothing to show
{{ refName }}
default
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code
-
Clone
Use Git or checkout with SVN using the web URL.
Work fast with our official CLI. Learn more about the CLI.
- Open with GitHub Desktop
- Download ZIP
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
Drug response prediction
R package use for predicting drug response of cell lines/patients.
This R package analyzes cancer cell lines /patients gene expression file (Affymetrix U133 plus2.0),
and predicts response to 7 FDA proved cancer drugs (Gemcitabine, Gefitinib, Cisplatin, Doxorubicin,
Docetaxel, Paclitaxel, Carboplatin).
Requirement
This R package requires user to pre-install affy package from bioconductor
Install instruction
R install affy package
source("http://bioconductor.org/biocLite.R")
biocLite("affy")
R install KEADrugResponse package
Download zip file from build folder and use install.package function in R to install
R CMD INSTALL --merge-multiarch KEADrugResponse_*.tar.gz
Unzip file
Usage
library(KEADrugResponse); library(affy);
DrugResponse.predict(patient_inputfile, inputfile_format, sample_name, path_to_model)
Arguments
input_directory directory of gene expression data for patient.
inputfile_format input file format, can be cel (cel file) or exp (gene expression file)
sample_name sample name
path_to_model where the model stored, default to 'KEA_DrugResponse/data'.
return a matrix of positive or negative score for each drug
output pdf files of prediction score for each patient
Example
input .cel file
DrugResponse.predict(input_directory,'cel',patient name,'KEA_DrugResponse/data')
Pipeline
we provide a bash script to run test for cancer samples in pipeline folder.
Each pipeline test uses the model file in KEA_DrugResponse/data (default $DATAPATH) folder.
Change the $DATAPATH variable in pipeline script for different work path
cd into pipeline folder
# cd pipeline
run test for GSE sets
# ./DrugResponse_sample_test_GSE.sh GSE38069
run test for GSM samples
# ./DrugResponse_sample_test_GSM.sh GSM516801
run test for user samples
put all samples in a folder
# ./DrugResponse_sample_test_multi.sh path.to.samples.folderAbout
Project website
Resources
License
LGPL-3.0, GPL-3.0 licenses found
Licenses found
LGPL-3.0
COPYING.LESSER
GPL-3.0
COPYING
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published