You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for making all the code so readily accessible!!
I tried the basic example from galaxy, and ran into the error message:
Invalid URL '1pDLQesPhbH5fSZW1m4aWC-wnJWnp1rGV': No schema supplied
I wonder whether when you call gdown, you should not add the --id argument first? With my version of gdown at least (4.3.1 on Ubuntu), gdown 1pDLQesPhbH5fSZW1m4aWC-wnJWnp1rGV won't work, while gdown --id 1pDLQesPhbH5fSZW1m4aWC-wnJWnp1rGV will!?
Reproducible code:
import os, sys
sys.path.append(os.path.abspath(os.path.join(os.getcwd(), os.pardir)))
import numpy as np
import pandas as pd
from ppi_py.datasets import load_dataset
dataset_folder = "./data/"
data = load_dataset(dataset_folder, "galaxies")
Thanks!
The text was updated successfully, but these errors were encountered:
Hey Matthieu! Unfortunately, this depends on your version of gdown... with a more recent version, you won't get this bad behavior.
If you'd like, maybe you can edit README.md to point out that this is a known bug, and can be fixed by pip install -U gdown or generally updating gdown?
Hi
Thank you for making all the code so readily accessible!!
I tried the basic example from galaxy, and ran into the error message:
I wonder whether when you call
gdown
, you should not add the--id
argument first? With my version of gdown at least (4.3.1 on Ubuntu),gdown 1pDLQesPhbH5fSZW1m4aWC-wnJWnp1rGV
won't work, whilegdown --id 1pDLQesPhbH5fSZW1m4aWC-wnJWnp1rGV
will!?Reproducible code:
Thanks!
The text was updated successfully, but these errors were encountered: