View source: R/casecontrolfunction.R
structure 1:1 case-control gene expression data
1 | casecontrolfunction(data_count,data_tumor)
|
1 2 3 4 5 6 7 8 9 | library("data.table")
#read expression data
data_normalized<-fread("LUSC__gene.normalized_RNAseq__tissueTypeAll__20181022104424.txt",data.table=F,head=T)
data_count<-fread("LUSC__gene_RNAseq__tissueTypeAll__20181022105257.txt",data.table=F,head=T)
data_normalized <- as.data.frame(data_normalized)
data_count <-as.data.frame(data_count)
case_control_data <- casecontrolfunction(data_count,data_tumor)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.