"vscode:/vscode.git/clone" did not exist on "8c011974834dcb2f5b4d72bc6e22843e647bc3b5"
Unverified Commit b3d4fcca authored by oahzxl's avatar oahzxl Committed by GitHub
Browse files

Fix workflow path format (#76)

* update workflow store dir

* use global and usr name

* restore change

* update workflow document

* update monomer workflow store dir

* fix path format

* fix typo

* fix typo

* fix typo

* Update fastfold_data_workflow.py

* Update fastfold_data_workflow.py

* Update fastfold_data_workflow.py

* fix typo
parent 1a33718b
......@@ -122,7 +122,7 @@ class FastFoldDataWorkFlow:
storage_dir = "file:///tmp/ray/" + os.getlogin() + "/workflow_data"
if storage_dir is not None:
if not os.path.exists(storage_dir):
os.makedirs(storage_dir, exist_ok=True)
os.makedirs(storage_dir[7:], exist_ok=True)
if not ray.is_initialized():
ray.init(storage=storage_dir)
......
......@@ -140,7 +140,7 @@ class FastFoldMultimerDataWorkFlow:
storage_dir = "file:///tmp/ray/" + os.getlogin() + "/workflow_data"
if storage_dir is not None:
if not os.path.exists(storage_dir):
os.makedirs(storage_dir)
os.makedirs(storage_dir[7:], exist_ok=True)
if not ray.is_initialized():
ray.init(storage=storage_dir)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment