Description Usage Arguments Examples
GO and KEGG analyse for the DEG
1 2 3 4 5 6 7 8 9 10 11 |
species |
species of genes |
up_gene |
character of up genes |
down_gene |
character of down genes |
png.width |
width of the figure in png |
png.height |
height of the figure in png |
pdf.width |
width of the figure in pdf |
pdf.height |
height of the figure in pdf |
show |
number of the pathway to show |
filename |
the name of the generated file |
1 2 3 4 5 6 7 8 | ## Not run:
input.file <- system.file('extdata','DEG.csv',package = 'LIANLAB')
DEG_matrix <- read.csv(input.file, header = TRUE, row.names = 1)
up_gene <- rownames(subset(DEG_matrix,avg_logFC > 0))
down_gene <- rownames(subset(DEG_matrix,avg_logFC < 0))
DEG <- myGO_KEGG(species="h",up_gene,down_gene)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.