Description Usage Arguments Value Author(s) Examples
View source: R/gdcDEGVisulization.R
A bar plot showing the number of down-regulated and up-regulated DE genes/miRNAs of different biotypes
1 | gdcBarPlot(deg, angle = 0, data.type)
|
deg |
a dataframe generated from |
angle |
a numeric value specifying the angle of text on x-axis.
Default is |
data.type |
one of |
A bar plot
Ruidong Li and Han Qu
1 2 3 4 5 6 7 8 9 10 11 12 | genes <- c('ENSG00000231806','ENSG00000261211','ENSG00000260920',
'ENSG00000228594','ENSG00000125170','ENSG00000179909',
'ENSG00000280012','ENSG00000134612','ENSG00000213071')
symbol <- c('PCAT7','AL031123.2','AL031985.3',
'FNDC10','DOK4','ZNF154',
'RPL23AP61','FOLH1B','LPAL2')
group <- rep(c('long_non_coding','protein_coding','pseudogene'), each=3)
logFC <- c(2.8,2.3,-1.1,1.9,-1.2,-1.6,1.5,2.1,-1.1)
FDR <- rep(c(0.1,0.00001,0.0002), each=3)
deg <- data.frame(symbol, group, logFC, FDR)
rownames(deg) <- genes
gdcBarPlot(deg, angle=45, data.type='RNAseq')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.