Has anyone faced issues installing the OlinkAnalyze package in R?

I am attempting to download the OlinkAnalyze package in order to test it, but I am encountering errors related to dependencies and the package is not installing. Has anyone else experienced this issue?

Comments

4 comments

  • Comment author
    Ondrej Klempir DNAnexus Team

    Do you use JupyterLab or RStudio?

    0
  • I tried installing in JupyterLab R

    0
  • Comment author
    Ondrej Klempir DNAnexus Team

    The following worked on my side:

     

    First, go to JupyterLab Terminal and run:

     

    apt-get update

    apt-get install cmake

     

    Then, in R notebook:

     

    install.packages("OlinkAnalyze")

    remove.packages("vctrs")

    install.packages("vctrs")

    library("vctrs")

    library("OlinkAnalyze")

    1
  • Comment author
    Nicholas Boehler

    Hi Ondrej,

    I just wanted to leave my gratitude here. This post helped me with a related issue and I wanted to mention it in case others have similar issues in the future:

    If anyone else is having trouble installing certain Bioconductor packages on JupyterLab, Ondrej's helpful tip may resolve your issue. For example, I was unable to install the ‘SeqVarTools’ package. I knew that it was because of an issue with ‘nplotr’ as a dependency, but I was struggling to figure out why I was unable to install it.

    Opening a terminal and running:

    apt-get update

    apt-get install cmake

    was necessary and sufficient to install all the packages I required for my analysis. Thank you again!

    1

Please sign in to leave a comment.