Error parsing my data to html using htmlpage
0
0
Entering edit mode
3.4 years ago

Hello there,

I´m trying to parse my data to an html having direct access to EntreGene information. Here is my code

     require(annotate)
     require(hgu133a.db)

     #I select the ids of the genes with p-value less tha 0.05*
     topTab <- topTab_WvsK
     whichGenes<-topTab["P.Value"]<0.05
     selectedIDs <- rownames(topTab)[whichGenes]

     #I convert them to entrez gene and gene symbols*
     genes<- getEG(selectedIDs, "hgu133a.db")
     simbols <-getSYMBOL(selectedIDs, "hgu133a.db")

     #I make entrez gene column so it can be hyperlinkde*
     paraEnlace <- list (misgenes=genes)

     #I create the dataframe where the file will go*

     otherNames = data.frame(selectedIDs, simbols, topTab[whichGenes,-1])
     names(otherNames) = c("Affy ID", "Gene Symbol", colnames(topTab)[-1])

     comparison <- names(topTab)

      #I invoke htmlpage function
     htmlpage(paraEnlace, 
              filename =file.path(resultsDir, paste("Selected Genes in comparison ",comparison,".html", sep="")) , 
              title = paste("Diff. expressed genes in comparison ", comparison, sep=""), 
              othernames = otherNames, 
              table.head = c("Entrez IDs", names(otherNames)),
              table.center = TRUE, 
              repository=list("en"))

It executes everything until the htmlpagefunction then this error pops up:

    Error in .repositories[[repository]](ids, ...) : object 'blanks' not found

Any insight woulld be really appreciated. Thx!

R • 575 views
ADD COMMENT

Login before adding your answer.

Traffic: 2888 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6