coreofscience / tosr

This repository contains all the code used to created tosr package
Other
6 stars 3 forks source link

Tosr removed from CRAN repository #34

Open CamiloContrerasPhD opened 1 year ago

CamiloContrerasPhD commented 1 year ago

Hi! recently it seems that the pacakge was removed from CRAN.

Archived on 2023-05-08 as requires archived package 'qdapTools'.

iamdank commented 1 year ago

I encountered the same error. I did a quick workaround. Not a proper fix, but it worked for me.

Install the qdapTools package

install.packages("qdapTools")

Download and install CINNA package (archived)

url <- "https://cran.r-project.org/src/contrib/Archive/CINNA/CINNA_1.2.0.tar.gz"
pkgFile <- "CINNA_1.2.0.tar.gz"
download.file(url = url, destfile = pkgFile)
install.packages(c('network', 'sna', 'centiserve', 'factoextra', 'GGally', 'pheatmap', 'corrplot', 'dendextend', 'viridis', 'Rtsne', 'circlize', 'intergraph'))
install.packages(pkgs=pkgFile, type="source", repos=NULL)

Download and install tosr package (archived)

url <- "https://cran.r-project.org/src/contrib/Archive/tosr/tosr_0.1.2.tar.gz"
pkgFile <- "tosr_0.1.2.tar.gz"
download.file(url = url, destfile = pkgFile)
install.packages(c("rebus"))
srobledog commented 10 months ago

Hi all!

tosr is now updated and in CRAN

https://cran.r-project.org/web/packages/tosr/index.html

Please, let me know if it is working correctly.