Hi friends
I opened rstudio I typed
> library("DESeq", lib.loc="/usr/people/home/izadi/R/x86_64-redhat-linux-gnu-library/3.2")
Loading required package: Biobase
Welcome to Bioconductor
Vignettes contain introductory material; view with
'browseVignettes()'. To cite Bioconductor, see
'citation("Biobase")', and for packages
'citation("pkgname")'.
Loading required package: locfit
locfit 1.5-9.1 2013-03-22
Loading required package: lattice
Welcome to 'DESeq'. For improved performance, usability and
functionality, please consider migrating to 'DESeq2'.
Attaching package: 'DESeq'
The following objects are masked from 'package:DESeq2':
estimateSizeFactorsForMatrix, getVarianceStabilizedData,
varianceStabilizingTransformation
> library("DESeq")
Is this packaged installed and ready to use?
Thank u
The answer to your question is here http://stackoverflow.com/questions/4090169/elegant-way-to-check-for-missing-packages-and-install-them
And btw, you can install DESeq2, which contains all the functionality of the first version with extra features
I did like so but told
Probably the error in case-sensitivity of package name. You installed DESeq but searching for DEseq
The another approach to check is it installed - is just to call any function from this package. The function you can find in vignette. The solution I first showed is for automatic checking mostly