From d73dfe93f4b359bfbb684f09fa2703820d0ccff3 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 24 Jan 2024 17:14:37 +0800 Subject: [PATCH] change config --- mainfix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainfix.py b/mainfix.py index 032007c..d43d32d 100644 --- a/mainfix.py +++ b/mainfix.py @@ -26,7 +26,7 @@ def process_pdb_file(pdb_file: Path, script_path: Path, working_dir: Path): shutil.copy(pdb_file, copied_pdb_file) # 构建并运行modelbuilder.py脚本的命令 - command = ["/home/era/.conda/envs/modeller/bin/python", script_path.absolute().as_posix(), copied_pdb_file.absolute().as_posix()] + command = ["/home/era/.conda/envs/pyfastx/bin/python", script_path.absolute().as_posix(), copied_pdb_file.absolute().as_posix()] subprocess.run(command, cwd=runner_dir)