installation of Rsamtools
2
0
Entering edit mode
Guest User ★ 13k
@guest-user-4897
Last seen 9.6 years ago
I got a new PC running on ubuntu and tried to install the Rsamtools package. got the following error: > source("http://www.bioconductor.org/biocLite.R") > biocLite("Rsamtools") Warning message: In getDependencies(pkgs, dependencies, available, lib) : package ???Rsamtools??? is not available does that mean that this package is not available for my linux distribution?? thank you conny -- output of sessionInfo(): > source("http://www.bioconductor.org/biocLite.R") > biocLite("Rsamtools") Warning message: In getDependencies(pkgs, dependencies, available, lib) : package ???Rsamtools??? is not available -- Sent via the guest posting facility at bioconductor.org.
• 2.4k views
ADD COMMENT
0
Entering edit mode
@james-w-macdonald-5106
Last seen 13 hours ago
United States
Hi Cornelia, On 12/29/2011 8:16 AM, Cornelia Vesely [guest] wrote: > I got a new PC running on ubuntu and tried to install the Rsamtools package. > got the following error: >> source("http://www.bioconductor.org/biocLite.R") >> biocLite("Rsamtools") > Warning message: > In getDependencies(pkgs, dependencies, available, lib) : > package ??~Rsamtools??T is not available > does that mean that this package is not available for my linux distribution?? > thank you > conny > > > -- output of sessionInfo(): Here you should have the output of running sessionInfo() at an R prompt, which will let us know what versions of things you are running. Please repost with this info. Best, Jim > >> source("http://www.bioconductor.org/biocLite.R") >> biocLite("Rsamtools") > Warning message: > In getDependencies(pkgs, dependencies, available, lib) : > package ??~Rsamtools??T is not available > > -- > Sent via the guest posting facility at bioconductor.org. > > _______________________________________________ > Bioconductor mailing list > Bioconductor at r-project.org > https://stat.ethz.ch/mailman/listinfo/bioconductor > Search the archives: http://news.gmane.org/gmane.science.biology.informatics.conductor -- James W. MacDonald, M.S. Biostatistician Douglas Lab University of Michigan Department of Human Genetics 5912 Buhl 1241 E. Catherine St. Ann Arbor MI 48109-5618 734-615-7826 ********************************************************** Electronic Mail is not secure, may not be read every day, and should not be used for urgent or sensitive issues
ADD COMMENT
0
Entering edit mode
Guest User ★ 13k
@guest-user-4897
Last seen 9.6 years ago
I still have problems installing Rsamtools. The first idea was that my R version was too old - so I updated it to the latest version. still the installation does not work - any ideas? this is just the end of the list after: > biocLite("Rsamtools") Warning: S3 methods ???[<-.CURLOptions???, ???[[<-.CURLOptions??? were declared in NAMESPACE but not found Error in library.dynam(lib, package, package.lib) : shared object ???RCurl.so??? not found ERROR: lazy loading failed for package ???Rsamtools??? * removing ???/home/lab/R/x86_64-pc-linux-gnu- library/2.14/Rsamtools??? * restoring previous ???/home/lab/R/x86_64-pc-linux-gnu- library/2.14/Rsamtools??? The downloaded packages are in ???/tmp/RtmpRyJ4Zm/downloaded_packages??? Warning messages: 1: In install.packages(pkgs = pkgs, repos = repos, ...) : installation of package ???RCurl??? had non-zero exit status 2: In install.packages(pkgs = pkgs, repos = repos, ...) : installation of package ???XML??? had non-zero exit status 3: In install.packages(pkgs = pkgs, repos = repos, ...) : installation of package ???rtracklayer??? had non-zero exit status 4: In install.packages(pkgs = pkgs, repos = repos, ...) : installation of package ???Rsamtools??? had non-zero exit status farther above there was also the error: Error : package ???RCurl??? required by ???rtracklayer??? could not be found ERROR: lazy loading failed for package ???rtracklayer??? -- output of sessionInfo(): R version 2.14.1 (2011-12-22) Platform: x86_64-pc-linux-gnu (64-bit) locale: [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C [3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8 [5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 [7] LC_PAPER=C LC_NAME=C [9] LC_ADDRESS=C LC_TELEPHONE=C [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C attached base packages: [1] stats graphics grDevices utils datasets methods base other attached packages: [1] BiocInstaller_1.2.1 loaded via a namespace (and not attached): [1] tcltk_2.14.1 tools_2.14.1 -- Sent via the guest posting facility at bioconductor.org.
ADD COMMENT
0
Entering edit mode
Hi again, On Fri, Dec 30, 2011 at 5:39 AM, Conny [guest] <guest at="" bioconductor.org=""> wrote: > > I still have problems installing Rsamtools. The first idea was that my R version was too old - so I updated it to the latest version. Ok, getting close ... > still the installation does not work - any ideas? > this is just the end of the list after: > >> biocLite("Rsamtools") > Warning: S3 methods ???[<-.CURLOptions???, ???[[<-.CURLOptions??? were declared in NAMESPACE but not found > Error in library.dynam(lib, package, package.lib) : > ?shared object ???RCurl.so??? not found > ERROR: lazy loading failed for package ???Rsamtools??? > * removing ???/home/lab/R/x86_64-pc-linux-gnu- library/2.14/Rsamtools??? > * restoring previous ???/home/lab/R/x86_64-pc-linux-gnu- library/2.14/Rsamtools??? [snip] It seems that your RCurl installation is somehow hosed. Did you notice any errors when you tried to install it into your new R-2.14.1 install? Or maybe ... did you copy your old packages from your previous R install's library folder to your new version of R? That can open a whole can of worms. I think there are a few ways to go from here. If that's what happened, maybe you can try this maneuver to update your installed packages first. This will try to update all of your installed packages w/o any further intervention from you: R> library(BiocInstaller) R> biocLite(character(), ask=FALSE) If you didn't copy your old R packages to your new install, I'm not sure what happened. You can try to install RCurl again, seeing as how this is the first problem you are running into: R> library(BiocInstaller) R> biocLite('RCurl') Then try Rsamtools again ... keep your eyes open for other packages that are broken and reinstall until the dust settles. If you're still having problems, feel free to reply back with any new surprises you're running into. HTH, -steve -- Steve Lianoglou Graduate Student: Computational Systems Biology ?| Memorial Sloan-Kettering Cancer Center ?| Weill Medical College of Cornell University Contact Info: http://cbio.mskcc.org/~lianos/contact
ADD REPLY

Login before adding your answer.

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