From 730c903f886387839ddf4387316ac405a42e362d Mon Sep 17 00:00:00 2001 From: Rhylan Cai <75231089+Rhylan2333@users.noreply.github.com> Date: Sun, 7 Jan 2024 02:24:58 +0800 Subject: [PATCH] Update main_SingleRun.cu In the "DSDP_blind_docking/" path, the main_SingleRun.cu file on line 138 has the code "This is the re-docking program.\n" which may confuse users. Consider changing it to "This is the blind-docking program.\n". --- DSDP_blind_docking/main_SingleRun.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DSDP_blind_docking/main_SingleRun.cu b/DSDP_blind_docking/main_SingleRun.cu index 735c763..f4c4b12 100644 --- a/DSDP_blind_docking/main_SingleRun.cu +++ b/DSDP_blind_docking/main_SingleRun.cu @@ -135,7 +135,7 @@ int main(int argn, char* argv[]) std::vector vbox_min, vbox_max; app.description("DSDP: Deep Site and Docking Pose\n" - " This is the re-docking program.\n" + " This is the blind-docking program.\n" " More details at https://github.com/PKUGaoGroup/DSDP"); app.add_option("--ligand", ligand_string, "ligand input PDBQT file [REQUIRED]")