Skip to content

Commit

Permalink
Fixing a few URLs missed in first pass
Browse files Browse the repository at this point in the history
  • Loading branch information
Bharath Ramsundar authored and Bharath Ramsundar committed Jul 27, 2020
1 parent 9bed42f commit cf76cf4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions deepchem/molnet/load_function/load_dataset_template.py
Expand Up @@ -14,8 +14,8 @@
logger = logging.getLogger(__name__)

DEFAULT_DIR = deepchem.utils.get_data_dir()
MYDATASET_URL = 'http://deepchem.io.s3-website-us-west-1.amazonaws.com/datasets/mydataset.tar.gz'
MYDATASET_CSV_URL = 'http://deepchem.io.s3-website-us-west-1.amazonaws.com/datasets/mydataset.csv'
MYDATASET_URL = "https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/mydataset.tar.gz"
MYDATASET_CSV_URL = "https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/mydataset.csv"

# dict of accepted featurizers for this dataset
# modify the returned dicts for your dataset
Expand Down
2 changes: 1 addition & 1 deletion deepchem/molnet/load_function/pcba_datasets.py
Expand Up @@ -107,7 +107,7 @@ def load_pcba_dataset(featurizer='ECFP',

if not os.path.exists(dataset_file):
deepchem.utils.download_url(
url="http://deepchem.io.s3-website-us-west-1.amazonaws.com/datasets/{0}".
url="https://deepchemdata.s3-us-west-1.amazonaws.com/datasets/{0}".
format(assay_file_name),
dest_dir=data_dir)

Expand Down

0 comments on commit cf76cf4

Please sign in to comment.