Skip to content

Commit

Permalink
Update gget_setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lauraluebbert authored Jan 10, 2024
1 parent b095ed3 commit dfa42ca
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions gget/gget_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@
PARAMS_DIR = os.path.join(PACKAGE_PATH, "bins/alphafold/")
PARAMS_PATH = os.path.join(PARAMS_DIR, "params_temp.tar")

## Variables for elm module
ELM_INSTANCES_FASTA = f"{ELM_FILES}/elm_instances.fasta"
ELM_CLASSES_TSV = f"{ELM_FILES}/elms_classes.tsv"
ELM_INSTANCES_TSV = f"{ELM_FILES}/elm_instances.tsv"


def setup(module, verbose=True, out=None):
"""
Expand Down Expand Up @@ -135,6 +130,10 @@ def setup(module, verbose=True, out=None):
if not os.path.exists(ELM_FILES):
os.makedirs(ELM_FILES)

ELM_INSTANCES_FASTA = f"{ELM_FILES}/elm_instances.fasta"
ELM_CLASSES_TSV = f"{ELM_FILES}/elms_classes.tsv"
ELM_INSTANCES_TSV = f"{ELM_FILES}/elm_instances.tsv"

if platform.system() == "Windows":
# The double-quotation marks allow white spaces in the path, but this does not work for Windows
command = f"""
Expand Down

0 comments on commit dfa42ca

Please sign in to comment.