@@ -161,13 +161,21 @@ fn simulate(simulation_path: &str, setup: &SetupFile, swarm_filename: &str, step
161
161
println ! ( "Writing to swarm dir {:?}" , swarm_directory) ;
162
162
let positions = parse_input_coordinates ( swarm_filename) ;
163
163
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
+ } ;
164
169
// Parse receptor input PDB structure
165
- let receptor_filename: String = format ! ( "{}/{}{}" , simulation_path, DEFAULT_LIGHTDOCK_PREFIX , setup. receptor_pdb) ;
166
170
println ! ( "Reading receptor input structure: {}" , receptor_filename) ;
167
171
let ( receptor, _errors) = pdbtbx:: open ( & receptor_filename, pdbtbx:: StrictnessLevel :: Medium ) . unwrap ( ) ;
168
172
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
+ } ;
169
178
// Parse ligand input PDB structure
170
- let ligand_filename: String = format ! ( "{}/{}{}" , simulation_path, DEFAULT_LIGHTDOCK_PREFIX , setup. ligand_pdb) ;
171
179
println ! ( "Reading ligand input structure: {}" , ligand_filename) ;
172
180
let ( ligand, _errors) = pdbtbx:: open ( & ligand_filename, pdbtbx:: StrictnessLevel :: Medium ) . unwrap ( ) ;
173
181
0 commit comments