Skip to content

[Bioc-devel] biocValid() and suggested solution

2 messages · Dan Tenenbaum, Martin Morgan

#
On Fri, Apr 26, 2013 at 9:58 AM, Diego Diez <diez at kuicr.kyoto-u.ac.jp> wrote:

            
This is fixed in BiocInstaller 1.10.1 and 1.11.1, which will be
available via biocLite() late tomorrow morning Seattle time.

Thanks for pointing out this issue.
Dan
#
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: