Marker Gene Profile installation

Hi,
I can't figure it out. Tried many ways to install markerGeneProfile from github.

The code I use is:

system("defaults write org.R-project.R force.LANG en_US.UTF-8")
install.packages('rlang')
# Install devtools and use it to install markerGeneProfile
install.packages('devtools')
install.packages('usethis')
library('usethis')
library('devtools')
devtools::install_github('PavlidisLab/markerGeneProfile')
#or
devtools::install_github('oganm/markerGeneProfile')
#or
install.packages("remotes")
library('remotes')
remotes::install_github('oganm/markerGeneProfile')

But either way gives:

Error: Failed to install 'unknown package' from GitHub:
  HTTP error 403.
  API rate limit exceeded for 213.127.120.38. 

The first few replies in this github r-liv issue discussion might shed some light.

Firstly, it suggests a traceback() might have additional information that could help.
Jim Hester there also suggests creating a GitHub PAT, so your requests are authenticated, which has a higher rate limit.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.