This is a test version of Biostars. For the public version, visit https://www.biostars.org.
TCGAbiolinks

I can't install TCGAbiolinks, Despite having R4.2 and Biocmanager 1.30.20, and using Bioconductor codes, I still get this error

library(TCGAbiolinks)

**Error in library(TCGAbiolinks) : 
  there is no package called ‘TCGAbiolinks**

r

Code for install?

I am also facing the same problem. Have you found any solution to solve it?

Provide code you are using to install TCGAbiolinks as requested by ATPoint.

2 answers

Try to install it from the GitHub instead from the BioConductor. The link for Installation from GitHub is : https://github.com/BioinformaticsFMRP/TCGAbiolinks

As mentioned on bioconductor website : https://bioconductor.org/packages/release/bioc/html/TCGAbiolinks.html

if (!require("BiocManager", quietly = TRUE))
    install.packages("BiocManager")

BiocManager::install("TCGAbiolinks")

Log in to answer this question.