Learn R Programming

BiSEp (version 1.0)

BEEP: BEEP: Bimodal Expression Exclusive with Pharmacology

Description

Detects bimodality and non-normality in all genes across the dataset. Integrates second matrix with discreet resistance/ sensitivity calls for any given compound for samples present in the gene expression matrix. Indicates if there is an enrichment of resistance in either the high or low expression modes of any of the genes

Usage

BEEP(
	data = data, 
	sensData = sensData, 
	confC = confC
	)

Arguments

data
This should be a log2 gene expression matrix with genes as rownames and samples as column names. Suitable for gene expression data from any platform - NGS datasets should be RPKM or RSEM values.
sensData
This should be a 2 column matrix where column 1 contains the sample names from the gene expression matrix and column 2 gives a set of discreet values describing the sensitivity of the sample to compound. A number of these values need to be called 'Resist
confC
The confidence with which you would like to call bimodality in the gene expression dataset. Either 'high' 'med' or 'low' can be input.

Value

  • A list of 2 matrices.

Details

The lower confidence calls will dramatically affect the number of gene pairs that the tool produces and increase the false positive rate. The tool will take approximately 10 minutes to run a 5,000 row and 200 column input gene expression matrix using a 'medium,' confidence interval.

Examples

Run this code
data(BEEP_input_data)
data(BEEP_sens_data)
outputBEEP <- BEEP(data=BEEP_input_data, sensData=BEEP_sens_data, confC='high')

Run the code above in your browser using DataLab