We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b38a513 commit aac1fb4Copy full SHA for aac1fb4
bin/post/lgd_rank_swarm.py
@@ -33,6 +33,9 @@ def parse_command_line():
33
os.chdir(os.path.join(DEFAULT_SWARM_FOLDER + str(swarm_id)))
34
result_file_name = os.path.join(GSO_OUTPUT_FILE % args.steps)
35
lightdock_output = read_lightdock_output(result_file_name)
36
+ for g in lightdock_output:
37
+ g.id_cluster = swarm_id
38
+ g.pdb_file = "lightdock_" + str(g.id_glowworm) + ".pdb"
39
write_ranking_to_file(lightdock_output, order_by="scoring")
40
os.chdir(CURRENT_FOLDER)
41
except IOError:
0 commit comments