[BioC] no direct or inherited method for function phenoData
Seth Falcon
sfalcon at fhcrc.org
Tue Jul 18 16:48:07 CEST 2006
"James W. MacDonald" <jmacdon at med.umich.edu> writes:
> source("http://www.bioconductor.org/biocLite.R")
> biocLite("Biobase")
>
> It's a pain to always type the url, so I just put the source() call in a
> file called .Rprofile in my home directory, so it is always
> available.
If you use a laptop that is not always be connected to the net,
you may find this useful. Here's what I have in my .Rprofile:
tryCatch({
source("http://bioconductor.org/biocLite.R")
}, error=function(e) invisible(NULL),
warning=function(w) cat("Not connected to the net\n"))
More information about the Bioconductor
mailing list