Description Usage Arguments Value Examples
parseEntry
1 | parseEntry(entry)
|
entry |
this entry |
a list of node value
1 2 3 4 5 6 7 8 9 10 11 | path<-system.file(package = "Key2Enrich")
xmlPath<-paste(path,"/extdata",sep="")
xmlFile<-paste(xmlPath,sep="","/hsa04012.xml")
r<-parseKGMLFile(xmlFile)
kegg.nodes <- lapply(r[childIsEntry(r)], parseEntry)
nodeDF<-data.frame(KEGG_GeneID="NA",type=NA,link=NA,graphicName=NA,
graphicType=NA,graphicX=NA,graphicY=NA,
graphicWidth=NA,graphicHeight=NA)
nodeDF<-parseList2Dataframe(kegg.nodes,nodeDF)
head(nodeDF)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.