Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • dishasharma35
    replied
    yeaa i have been trying to upgrade but I am not able to. After all the commands it remains R 2.13.0.

    Leave a comment:


  • cnyh
    replied
    My solution to this problem was to upgrade R to version 2.15.2. Also, are you installing using the following commands?

    source("http://bioconductor.org/biocLite.R")
    biocLite("cummeRbund")

    Leave a comment:


  • dishasharma35
    replied
    hey.. you solution helpd me too.. but i am stuck in this step after R installtion for CummeRbund.. the error is :
    nstalling package(s) into ‘/home/osdd/R/x86_64-pc-linux-gnu-library/2.13’
    (as ‘lib’ is unspecified)
    Warning message:
    In getDependencies(pkgs, dependencies, available, lib) :
    package ‘cummeRbund’ is not available (for R version 2.13.1)


    I followed above solution but still geting the problem

    Leave a comment:


  • GenoMax
    replied
    Excellent.

    Leave a comment:


  • cnyh
    replied
    It worked! Tested it with "cuff <- readCufflinks()", and it went through without any error messages!

    You're brilliant, thank you ever so much!

    Leave a comment:


  • GenoMax
    replied
    That is good. Try the R install now and post any new errors (hopefully none now).

    Leave a comment:


  • cnyh
    replied
    Ok, done. I get this output:

    $ which xml2-config
    /usr/bin/xml2-config

    Is it relevant information that I am using screen, and switching between different windows in the screen?

    Leave a comment:


  • GenoMax
    replied
    It appears that you will also need to install the development version of the libxml.

    Code:
    sudo apt-get install libxml2-dev
    Then check
    Code:
    which xml2-config
    in a terminal window to make sure it is in your path.

    Leave a comment:


  • cnyh
    replied
    After the download, this is what comes up:

    * installing *source* package ‘XML’ ...
    ** package ‘XML’ successfully unpacked and MD5 sums checked
    checking for gcc... gcc
    checking for C compiler default output file name... a.out
    checking whether the C compiler works... yes
    checking whether we are cross compiling... no
    checking for suffix of executables...
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking how to run the C preprocessor... gcc -E
    No ability to remove finalizers on externalptr objects in this verison of R
    checking for sed... /bin/sed
    checking for pkg-config... /usr/bin/pkg-config
    checking for xml2-config... no
    Cannot find xml2-config
    ERROR: configuration failed for package ‘XML’
    * removing ‘/usr/local/lib/R/site-library/XML’
    ERROR: dependency ‘XML’ is not available for package ‘biomaRt’
    * removing ‘/usr/local/lib/R/site-library/biomaRt’
    ERROR: dependency ‘XML’ is not available for package ‘rtracklayer’
    * removing ‘/usr/local/lib/R/site-library/rtracklayer’
    ERROR: dependencies ‘rtracklayer’, ‘biomaRt’ are not available for package ‘GenomicFeatures’
    * removing ‘/usr/local/lib/R/site-library/GenomicFeatures’
    ERROR: dependency ‘GenomicFeatures’ is not available for package ‘biovizBase’
    * removing ‘/usr/local/lib/R/site-library/biovizBase’
    ERROR: dependencies ‘rtracklayer’, ‘biomaRt’, ‘GenomicFeatures’, ‘biovizBase’ are not available fo
    r package ‘Gviz’
    * removing ‘/usr/local/lib/R/site-library/Gviz’
    ERROR: dependencies ‘rtracklayer’, ‘Gviz’ are not available for package ‘cummeRbund’
    * removing ‘/usr/local/lib/R/site-library/cummeRbund’

    The downloaded source packages are in
    ‘/tmp/RtmpFKAUMp/downloaded_packages’
    Warning messages:
    1: In install.packages(pkgs = pkgs, lib = lib, repos = repos, ...) :
    installation of package ‘XML’ had non-zero exit status
    2: In install.packages(pkgs = pkgs, lib = lib, repos = repos, ...) :
    installation of package ‘biomaRt’ had non-zero exit status
    3: In install.packages(pkgs = pkgs, lib = lib, repos = repos, ...) :
    installation of package ‘rtracklayer’ had non-zero exit status
    4: In install.packages(pkgs = pkgs, lib = lib, repos = repos, ...) :
    installation of package ‘GenomicFeatures’ had non-zero exit status
    5: In install.packages(pkgs = pkgs, lib = lib, repos = repos, ...) :
    installation of package ‘biovizBase’ had non-zero exit status
    6: In install.packages(pkgs = pkgs, lib = lib, repos = repos, ...) :
    installation of package ‘Gviz’ had non-zero exit status
    7: In install.packages(pkgs = pkgs, lib = lib, repos = repos, ...) :
    installation of package ‘cummeRbund’ had non-zero exit status

    From first glance it looks much the same, but I'm not sure.

    Leave a comment:


  • GenoMax
    replied
    Can you post the errors (or are they *exactly* the same as before)?

    Leave a comment:


  • cnyh
    replied
    Update: to install libcurl I tried using the tips on this page: http://ubuntuforums.org/showthread.php?t=1774516

    I then tried to install cummeRbund, but I seem to be getting the same errors as before

    Leave a comment:


  • cnyh
    replied
    I do have admin rights, yes. I copied your command, and it seems libxml2 got installed, but libcurl was not found. Do I need to download it first?

    sudo apt-get install libxml2 libcurl
    [sudo] password for cnyh:
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    E: Unable to locate package libcurl

    Leave a comment:


  • GenoMax
    replied
    Your server is missing the libraries on system side (unrelated to R install).

    Do you have administrator rights on this machine? If not you may need to ask your sysadmins to install the libraries.

    If you do have access to administrator rights then you should able to install the libraries using the "apt-get" method below.

    Code:
    sudo apt-get install libxml2 libcurl
    Once these libraries are installed go back into R and try your original cummerBund install.

    Leave a comment:


  • cnyh
    replied
    Thank you for your quick response! I'm using an Ubuntu 12.04 LTS system.

    I don't know how to install these, unfortunately. I tried install.packages("...",dependencies=TRUE) where "..." was replaced with "XML", "libxml2", "libcurl" and "Rcurl", but I kept getting the same kind of "non-zero exit status" error message for some of them, and "package ... is not available (for R version 2.15.2) for others"...
    Last edited by cnyh; 02-20-2013, 09:32 AM.

    Leave a comment:


  • GenoMax
    replied
    See the system requirements for XML package (http://cran.r-project.org/web/packages/XML/index.html). Your system is likely missing the "libxml2" library.

    Same is probably true for "libcurl" library. Needed for Rcurl package: http://cran.r-project.org/web/packages/RCurl/index.html

    What kind of unix system is this?
    Last edited by GenoMax; 02-20-2013, 08:59 AM.

    Leave a comment:

Latest Articles

Collapse

  • seqadmin
    Understanding Genetic Influence on Infectious Disease
    by seqadmin




    During the COVID-19 pandemic, scientists observed that while some individuals experienced severe illness when infected with SARS-CoV-2, others were barely affected. These disparities left researchers and clinicians wondering what causes the wide variations in response to viral infections and what role genetics plays.

    Jean-Laurent Casanova, M.D., Ph.D., Professor at Rockefeller University, is a leading expert in this crossover between genetics and infectious...
    09-09-2024, 10:59 AM
  • seqadmin
    Addressing Off-Target Effects in CRISPR Technologies
    by seqadmin






    The first FDA-approved CRISPR-based therapy marked the transition of therapeutic gene editing from a dream to reality1. CRISPR technologies have streamlined gene editing, and CRISPR screens have become an important approach for identifying genes involved in disease processes2. This technique introduces targeted mutations across numerous genes, enabling large-scale identification of gene functions, interactions, and pathways3. Identifying the full range...
    08-27-2024, 04:44 AM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, Today, 06:25 AM
0 responses
13 views
0 likes
Last Post seqadmin  
Started by seqadmin, Yesterday, 01:02 PM
0 responses
12 views
0 likes
Last Post seqadmin  
Started by seqadmin, 09-18-2024, 06:39 AM
0 responses
14 views
0 likes
Last Post seqadmin  
Started by seqadmin, 09-11-2024, 02:44 PM
0 responses
14 views
0 likes
Last Post seqadmin  
Working...
X