Skip to content

Commit

Permalink
Merge pull request #171 from RobokopU24/string-db-patch
Browse files Browse the repository at this point in the history
fixing string db download url that changed
  • Loading branch information
beasleyjonm authored Aug 4, 2023
2 parents 75d021c + 7d80ce4 commit aaa5b53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parsers/STRING/src/loadSTRINGDB.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ def __init__(self, test_mode: bool = False, source_data_dir: str = None):

self.stringdb_version = None
self.stringdb_version = self.get_latest_source_version()
self.string_db_full_file_url = f"https://stringdb-static.org/download/protein.links.full.{self.stringdb_version}/"
self.string_db_physical_subnetwork_file_url = f"https://stringdb-static.org/download/protein.physical.links.full.{self.stringdb_version}/"
self.string_db_full_file_url = f"https://stringdb-downloads.org/download/protein.links.full.{self.stringdb_version}/"
self.string_db_physical_subnetwork_file_url = f"https://stringdb-downloads.org/download/protein.physical.links.full.{self.stringdb_version}/"

self.ppi_full_file_name = self.taxon_id+f".protein.links.full.{self.stringdb_version}.txt.gz"
self.ppi_physical_subnetwork_file_name = self.taxon_id+f".protein.physical.links.full.{self.stringdb_version}.txt.gz"
Expand Down

0 comments on commit aaa5b53

Please sign in to comment.