Skip to content

bhklab/PredictioR

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PredictioR: An R Package for Biomarker Discovery in Immuno-Oncology Therapy Response

Introduction

The PredictioR is an R package to perform comprehensive analyses for biomarker discovery in Immuno-Oncology (IO) response. It supports pan-cancer, cancer-specific, and treatment-specific settings. Additionally, it allows assessment of the importance of key clinical variables such as age and sex. The package includes multiple algorithms for predicting IO response and provides implementations for computing IO signature scores.

The curated IO data and signature resources can be accessed and downloaded from the following locations:

Setup

The latest version of PredictioR repository can be found on the PredictioR GitHub repository. The package is not yet on CRAN or Bioconductor.

It is essential that you have R 4.4.1 or above already installed on your computer or server. PredictioR utilizes many other R packages that are currently available from CRAN, Bioconductor and GitHub. Before installing PredictioR, please install all dependencies by executing the following command in R console:

The dependencies includes MultiAssayExperiment, survival, survcomp, GSVA, meta, ggplot2 and ggrepel.

if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager")

depens<-c( 'MultiAssayExperiment', 'survival', 'survcomp', 'GSVA', 'meta', 'ggplot2', 'ggrepel')
for(i in 1:length(depens)){
  depen<-depens[i]
  if (!requireNamespace(depen, quietly = TRUE))  BiocManager::install(depen,update = FALSE)
}

You can install it from GitHub:

devtools::install_github("bhklab/PredictioR")
library(PredictioR) 

To set up the repository, please download this folder locally:

git clone https://github.com/bhklab/PredictioR
cd PredictioR

More details about the functions' computations and their applications are included in the package documentation. Refer to the vignettes or access them via the web application predictio.ca.

Citation

If the data or computational functions from the PredictioR package are used in your publication, please cite the following paper(s):

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published