Problem with mgu74av2LOCUSID environment
1
0
Entering edit mode
@fatima-nunez-300
Last seen 10.1 years ago
Dear all, I have recently changed my version of R form 1.8.1 to 1.9.0. I have been trying to produce a few html pages with some of my results and up to now I have had no problems. See below: Locus ID Gene Symbol Affy ID Pvalue FC 17865 Mybl2 100023_at 0 1.68 12035 Bcat1 100026_at 0 1.58 22271 Upp1 100030_at 0 1.54 . . . Where the first column is a hyperlink to LocusLink obtained with the following piece of code: library(annotate) library(mgu74av2) vav2onlyNames <- RES.lm[RES.lm[,"eff"]=="vav2","gene"] vav2onlyLI <- multiget(vav2onlyNames, env = mgu74av2LOCUSID) vav2onlySYM <- multiget(vav2onlyNames, env = mgu74av2SYMBOL) vav2onlyRes <- data.frame (unlist(vav2onlySYM)) ll.htmlpage(vav2onlyLI, filename = "Vav2 genes.html", title = "Vav2 genes", othernames = data.frame(vav2onlyRes, vav2onlyNames,RES.lm[RES.lm[,"gene"]%in%vav2onlyNames, c("FC","Pval")]), table.head = c("Locus ID", "Gene Symbol", "Affy ID", "FC","Pval",), table.center = TRUE) The problem has begun when I have started using the R version 1.9.0. Instead of the html table format I have detailed before - and using the exact same code, I obtain the following: Locus ID Gene Symbol Affy ID Pval FC as.integer(17865) Mybl2 100023_at 0 1.68 as.integer(12035) Bcat1 100026_at 0 1.58 as.integer(22271) Upp1 100030_at 0 1.54 . . where the first column stops being a useful LocusLink hyperlink. I am not totally sure this is the correct list to share my concerns, if not, I apologize in advance and I hope someone can give me an idea of what is going on or direct me to the appropriate place where I could receive help. Thanx a lot, Fatima --- F?tima N??ez Centro de Investigaci?n del C?ncer, CIC Universidad de Salamanca-CSIC Campus Unamuno 37007 Salamanca Phone: + 34 923 294802 Fax: + 34 923 294795 E-mail: fnunez@usal.es
affy affy • 788 views
ADD COMMENT
0
Entering edit mode
John Zhang ★ 2.9k
@john-zhang-6
Last seen 10.1 years ago
It appears that your first argument (vav2onlyLI) to ll.htmlpage is a list while ll.htmlpage is expecting a vector. I was able to create a table with correct ids by unlisting vav2onlyLI (after replacing the unknow RES.lm[RES.lm[,"eff"]=="vav2","gene"] with a set of probe ids. It would be nice if you could provide example code that can be run directly next time). >From: F?tima N??ez Mangado <fnunez@usal.es> >To: <bioconductor@stat.math.ethz.ch> >Date: Wed, 5 May 2004 17:34:47 +0200 >MIME-Version: 1.0 >X-Priority: 3 (Normal) >X-MSMail-Priority: Normal >Importance: Normal >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 >Received-SPF: none (hypatia: domain of bioconductor- bounces@stat.math.ethz.ch does not designate permitted sender hosts) >Received-SPF: none (hypatia: domain of fnunez@usal.es does not designate permitted sender hosts) >X-Virus-Scanned: by amavisd-new >Content-Transfer-Encoding: 8bit >X-MIME-Autoconverted: from quoted-printable to 8bit by hypatia.math.ethz.ch id i45FZmDF026091 >X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on hypatia.math.ethz.ch >X-Spam-Level: >X-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL autolearn=no version=2.63 >Subject: [BioC] Problem with mgu74av2LOCUSID environment >X-BeenThere: bioconductor@stat.math.ethz.ch >X-Mailman-Version: 2.1.4 >List-Id: The Bioconductor Project Mailing List <bioconductor.stat.math.ethz.ch> >List-Unsubscribe: <https: www.stat.math.ethz.ch="" mailman="" listinfo="" bioconductor="">, <mailto:bioconductor-request@stat.math.ethz.ch?subject=unsubscribe> >List-Archive: <https: www.stat.math.ethz.ch="" pipermail="" bioconductor=""> >List-Post: <mailto:bioconductor@stat.math.ethz.ch> >List-Help: <mailto:bioconductor- request@stat.math.ethz.ch?subject="help"> >List-Subscribe: <https: www.stat.math.ethz.ch="" mailman="" listinfo="" bioconductor="">, <mailto:bioconductor-request@stat.math.ethz.ch?subject=subscribe> > >Dear all, > >I have recently changed my version of R form 1.8.1 to 1.9.0. > >I have been trying to produce a few html pages with some of my results >and up to now I have had no problems. See below: > >Locus ID Gene Symbol Affy ID Pvalue FC >17865 Mybl2 100023_at 0 1.68 >12035 Bcat1 100026_at 0 1.58 >22271 Upp1 100030_at 0 1.54 >. >. >. > >Where the first column is a hyperlink to LocusLink obtained with the >following piece of code: > >library(annotate) >library(mgu74av2) > > vav2onlyNames <- RES.lm[RES.lm[,"eff"]=="vav2","gene"] > > > vav2onlyLI <- multiget(vav2onlyNames, env = mgu74av2LOCUSID) > > > vav2onlySYM <- multiget(vav2onlyNames, env = mgu74av2SYMBOL) > > > vav2onlyRes <- data.frame (unlist(vav2onlySYM)) > > > >ll.htmlpage(vav2onlyLI, filename = "Vav2 genes.html", > title = "Vav2 genes", othernames = >data.frame(vav2onlyRes, >vav2onlyNames,RES.lm[RES.lm[,"gene"]%in%vav2onlyNames, > c("FC","Pval")]), > table.head = c("Locus ID", "Gene Symbol", "Affy ID", >"FC","Pval",), table.center = TRUE) > > >The problem has begun when I have started using the R version 1.9.0. >Instead of the html table format I have detailed before - and using the >exact same code, I obtain the following: > >Locus ID Gene Symbol Affy ID Pval FC >as.integer(17865) Mybl2 100023_at 0 1.68 >as.integer(12035) Bcat1 100026_at 0 1.58 >as.integer(22271) Upp1 100030_at 0 1.54 >. >. > >where the first column stops being a useful LocusLink hyperlink. > >I am not totally sure this is the correct list to share my concerns, if >not, I apologize in advance and I hope someone can give me an idea of >what is going on or direct me to the appropriate place where I could >receive help. > >Thanx a lot, > >Fatima > >--- >F?tima N??ez >Centro de Investigaci?n del C?ncer, CIC >Universidad de Salamanca-CSIC >Campus Unamuno >37007 Salamanca > >Phone: + 34 923 294802 >Fax: + 34 923 294795 >E-mail: fnunez@usal.es > >_______________________________________________ >Bioconductor mailing list >Bioconductor@stat.math.ethz.ch >https://www.stat.math.ethz.ch/mailman/listinfo/bioconductor Jianhua Zhang Department of Biostatistics Dana-Farber Cancer Institute 44 Binney Street Boston, MA 02115-6084
ADD COMMENT

Login before adding your answer.

Traffic: 993 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