Closed
Description
When we tried to install the ifnb dataset, we got the following error:
> InstallData('ifnb')
trying URL 'http://seurat.nygenome.org/src/contrib/ifnb.SeuratData_3.1.0.tar.gz'
Error in download.file(url, destfile, method, mode = "wb", ...) :
cannot open URL 'http://seurat.nygenome.org/src/contrib/ifnb.SeuratData_3.1.0.tar.gz'
In addition: Warning message:
In download.file(url, destfile, method, mode = "wb", ...) :
cannot open URL 'https://seurat.nygenome.org/src/contrib/ifnb.SeuratData_3.1.0.tar.gz': HTTP status was '404 Not Found'
Warning in download.packages(pkgs, destdir = tmpd, available = available, :
download of package ‘ifnb.SeuratData’ failed
Error in loadNamespace(name) :
there is no package called ‘ifnb.SeuratData’
I tried wget https://seurat.nygenome.org/src/contrib/ifnb.SeuratData_3.1.0.tar.gz
and found that it did not exist. However, the older version does: (i.e. wget https://seurat.nygenome.org/src/contrib/ifnb.SeuratData_3.0.0.tar.gz
works).
UPDATE:
InstallData('infb')
did not work on Linux nor Windows, so it is not system dependent.
Activity
Seojoonho001 commentedon Dec 12, 2019
I can confirm this...can you tell me how I can install data from https://seurat.nygenome.org/src/contrib/ifnb.SeuratData_3.0.0.tar.gz?
bbarthold commentedon Dec 12, 2019
This is a source package. You can install it as any other source package from the file path where you downloaded it:
install.packages("download.dir/ifnb.SeuratData_3.0.0.tar.gz", repos = NULL, type = "source")
Then load it
library(ifnb.SeuratData)
,load the data
data("ifnb")
and follow the vignette from there on.
Seojoonho001 commentedon Dec 12, 2019
install.packages("https://seurat.nygenome.org/src/contrib/ifnb.SeuratData_3.0.0.tar.gz", repos = NULL, type = "source") worked. Thanks!
lengfei5 commentedon Apr 3, 2020
Dear Seurat team,
I failed to open https://seurat.nygenome.org/src/contrib/panc8.SeuratData_3.0.0.tar.gz
But other datasets can be well downloaded.
Any idea ?
Thanks.
Dragonmasterx87 commentedon Apr 22, 2020
Hi @lengfei5 I am not a Seurat Dev but here is your solution (works for Seurat versions > v3.1):
Enjoy!
🐲
yanwei-li commentedon May 16, 2020
Hi! you can find the panc8data at https://seurat.nygenome.org/src/contrib/panc8.SeuratData_3.0.2.tar.gz
Added closing ) to paragraph satijalab#15
Merge pull request #25 from kant/patch-1
thkuo commentedon Jan 16, 2022
Below is the method that worked fine with me. To install the 'ifnb' dataset:
and to use it:
molecules commentedon Apr 11, 2022
I think that this issue has been resolved (for example,
wget https://seurat.nygenome.org/src/contrib/ifnb.SeuratData_3.1.0.tar.gz
works).