Skip to content

Commit 07c2def

Browse files
authored
Merge pull request #14 from wjs20/fixed-failing-tests
Fixed failing tests
2 parents 319b4c0 + fdec6c4 commit 07c2def

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/bin/lightdock-rust.rs

+10-2
Original file line numberDiff line numberDiff line change
@@ -161,13 +161,21 @@ fn simulate(simulation_path: &str, setup: &SetupFile, swarm_filename: &str, step
161161
println!("Writing to swarm dir {:?}", swarm_directory);
162162
let positions = parse_input_coordinates(swarm_filename);
163163

164+
let receptor_filename = if simulation_path == "" {
165+
format!("{}{}", DEFAULT_LIGHTDOCK_PREFIX, setup.receptor_pdb)
166+
} else {
167+
format!("{}/{}{}", simulation_path, DEFAULT_LIGHTDOCK_PREFIX, setup.receptor_pdb)
168+
};
164169
// Parse receptor input PDB structure
165-
let receptor_filename: String = format!("{}/{}{}", simulation_path, DEFAULT_LIGHTDOCK_PREFIX, setup.receptor_pdb);
166170
println!("Reading receptor input structure: {}", receptor_filename);
167171
let (receptor, _errors) = pdbtbx::open(&receptor_filename, pdbtbx::StrictnessLevel::Medium).unwrap();
168172

173+
let ligand_filename = if simulation_path == "" {
174+
format!("{}{}", DEFAULT_LIGHTDOCK_PREFIX, setup.ligand_pdb)
175+
} else {
176+
format!("{}/{}{}", simulation_path, DEFAULT_LIGHTDOCK_PREFIX, setup.ligand_pdb)
177+
};
169178
// Parse ligand input PDB structure
170-
let ligand_filename: String = format!("{}/{}{}", simulation_path, DEFAULT_LIGHTDOCK_PREFIX, setup.ligand_pdb);
171179
println!("Reading ligand input structure: {}", ligand_filename);
172180
let (ligand, _errors) = pdbtbx::open(&ligand_filename, pdbtbx::StrictnessLevel::Medium).unwrap();
173181

0 commit comments

Comments
 (0)