Skip to content

Cannot install ifnb dataset #15

Closed
Closed
@molecules

Description

@molecules

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

Seojoonho001 commented on Dec 12, 2019

@Seojoonho001

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

bbarthold commented on Dec 12, 2019

@bbarthold

...can you tell me how I can install data from https://seurat.nygenome.org/src/contrib/ifnb.SeuratData_3.0.0.tar.gz?

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

Seojoonho001 commented on Dec 12, 2019

@Seojoonho001

install.packages("https://seurat.nygenome.org/src/contrib/ifnb.SeuratData_3.0.0.tar.gz", repos = NULL, type = "source") worked. Thanks!

lengfei5

lengfei5 commented on Apr 3, 2020

@lengfei5

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

Dragonmasterx87 commented on Apr 22, 2020

@Dragonmasterx87

Hi @lengfei5 I am not a Seurat Dev but here is your solution (works for Seurat versions > v3.1):

# Devtools
install.packages('devtools')
library(devtools)

# Seuratdata
devtools::install_github('satijalab/seurat-data')

# Seurat wrappers
devtools::install_github('satijalab/seurat-wrappers')

# Load packages
library(Seurat)
library(ggplot2)
library(patchwork)
library(SeuratData)
library(SeuratWrappers)

# Load Panc8 data
InstallData('panc8')
data("panc8")

Enjoy!

🐲

yanwei-li

yanwei-li commented on May 16, 2020

@yanwei-li

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.

Hi! you can find the panc8data at https://seurat.nygenome.org/src/contrib/panc8.SeuratData_3.0.2.tar.gz

added a commit that references this issue on Jul 28, 2020
added a commit that references this issue on Sep 18, 2020

Merge pull request #25 from kant/patch-1

c633765
thkuo

thkuo commented on Jan 16, 2022

@thkuo

Below is the method that worked fine with me. To install the 'ifnb' dataset:

install.packages("https://seurat.nygenome.org/src/contrib/ifnb.SeuratData_3.0.0.tar.gz", repos = NULL, type = "source") 

and to use it:

library(ifnb.SeuratData)
ifnb<-LoadData("ifnb")
molecules

molecules commented on Apr 11, 2022

@molecules
Author

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).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @molecules@thkuo@yanwei-li@lengfei5@Dragonmasterx87

        Issue actions

          Cannot install ifnb dataset · Issue #15 · satijalab/seurat-data