Skip to content
Prev 4291 / 21307 Next

[Bioc-devel] biocValid() and suggested solution

Actually, biocValid was following the convention in R of using the function 
sQuote(<...>) to 'quote' package names, e.g.,

   install.packages("sfdsdfs")

which eventually tells us

   Warning message:
   package 'sfdsdfs' is not available (for R version 3.0.0 Patched)

with fancy quotes. The right thing to do is to

   options(useFancyQuotes = FALSE)

which I have in my ~/.Rprofile.

Martin
On 04/26/2013 10:21 AM, Dan Tenenbaum wrote: