|
6 | 6 | # "The query() method uses a slightly modified Python syntax by default. |
7 | 7 | # For example, the & and | (bitwise) operators have the precedence of their boolean cousins, and and or. |
8 | 8 | # This is syntactically valid Python, however the semantics are different." |
9 | | - query: '(Kd_Ki == "Kd") and (value < 0.001)' |
10 | | - max_row: 1 #25 # Use 1 for CI |
11 | | - convert_Kd_dG: True |
| 9 | + query: !ii '(Kd_Ki == "Kd") and (value < 0.001)' |
| 10 | + max_row: !ii 1 #25 # Use 1 for CI |
| 11 | + convert_Kd_dG: !ii True |
12 | 12 | out: |
13 | 13 | - output_pdb_paths: !& pdbbind_pdbs |
14 | 14 | - output_sdf_paths: !& pdbbind_sdfs |
@@ -56,17 +56,17 @@ steps: |
56 | 56 | in: |
57 | 57 | protein_path: !* final_pdbbind_pdbs.pdb |
58 | 58 | ligand_path: !* final_sanitized_sdfs |
59 | | - samples_per_complex: 20 # figure 3 left in DiffDock paper |
60 | | - inference_steps: 20 # figure S11 in DiffDock paper |
| 59 | + samples_per_complex: !ii 20 # figure 3 left in DiffDock paper |
| 60 | + inference_steps: !ii 20 # figure S11 in DiffDock paper |
61 | 61 | out: |
62 | 62 | - output_files: !& diffdock_poses |
63 | 63 |
|
64 | 64 | - rank_diffdock_poses: |
65 | 65 | scatter: [diffdock_poses] |
66 | 66 | in: |
67 | | - top_n_confident: 1000 # if only using top_percent_confidence, then set top_n_confident to trivially high number |
| 67 | + top_n_confident: !ii 1000 # if only using top_percent_confidence, then set top_n_confident to trivially high number |
68 | 68 | # if only want to use top_n_confident, then set top_percent_confidence to 100 |
69 | | - top_percent_confidence: 33 # take top third of most confident poses, see figure 3 right in DiffDock paper |
| 69 | + top_percent_confidence: !ii 33 # take top third of most confident poses, see figure 3 right in DiffDock paper |
70 | 70 | diffdock_poses: !* diffdock_poses |
71 | 71 | out: |
72 | 72 | - output_poses: !& output_poses |
|
75 | 75 | scatter: [predicted_poses] |
76 | 76 | in: |
77 | 77 | predicted_poses: !* output_poses |
78 | | - centroid_cutoff: 5 # if centroid of all poses are within cutoff then only keep most confident pose, requires visual inspection |
| 78 | + centroid_cutoff: !ii 5 # if centroid of all poses are within cutoff then only keep most confident pose, requires visual inspection |
79 | 79 |
|
80 | 80 | wic: |
81 | 81 | graphviz: |
|
0 commit comments