View source: R/selectexpressionsample.R
select the tumor and normal tissues in expression
1 | selectexpressionsample(gene_id,expressionLUAD)
|
1 2 3 4 5 6 7 8 9 | library("data.table")
#read expression data
data_normalized<-fread("LUAD__gene.normalized_RNAseq__tissueTypeAll__20181022065043.txt",data.table=F,head=T)
data_normalized <- as.data.frame(data_normalized)
gene_id <- data_normalized[, 1]
# select sample 01A,11A
selectexpressionsample(gene_id,data_normalized)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.