You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument('--bioemu_run_on_iter', type=int, default=None, help='Optional, only works when iterative_peptide_gen > 0. Runs bioemu on the structure taken'
100
101
'from the iteration number given by user. If not set, runs on the 0 iteration by default.')
101
102
103
+
# Mutation screen Arguments
104
+
parser.add_argument('--mutation_screen', action='store_true', help='samples <n_mutations> point mutations over each structure.'
105
+
'e.g, if n_mutations==1, and peptide length is 9, samples 9 mutations '
106
+
'one over each position using structure aware peptide selection pipeline.')
107
+
parser.add_argument('--n_mutations', type=int, default=1, help='number of mutations in a single run on a single peptide in mutation_screen.')
108
+
102
109
103
110
# Setting to Run only a part:
104
111
parser.add_argument('--no_alphafold', action='store_false', help='does not run alphafold.')
@@ -110,6 +117,7 @@ def main():
110
117
parser.add_argument('--only_collect_generated_binders', action='store_true', help='Use it only if you have a previous run with generated binders and you do not want'
111
118
'to run proteinmpnn again, and instead you want to predict and collect binders using BA predictions.'
parser.add_argument('--iterative_peptide_gen', type=int, default=0, help='If used, the iterative peptide generation is performed, defines the number of iterations.')
0 commit comments