File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ def fold(inputs: str):
1717 cfg = compose (config_name = "inference" , overrides = overrides )
1818 run_inference (cfg )
1919
20+
2021@app .command ()
2122def predict (inputs : str ):
2223 """Alias for fold command."""
Original file line number Diff line number Diff line change @@ -284,10 +284,10 @@ def build_af3_transform_pipeline(
284284 ),
285285 },
286286 ),
287- #NOTE: this is used in training to pad DNA sequences, but we don't use it in inference
288- #TrainingRoute(
289- # PadDNA(p_skip=pad_dna_p_skip),
290- #),
287+ # NOTE: this is used in training to pad DNA sequences, but we don't use it in inference
288+ # TrainingRoute(
289+ # PadDNA(p_skip=pad_dna_p_skip),
290+ # ),
291291 FlagAndReassignCovalentModifications (),
292292 FlagNonPolymersForAtomization (),
293293 ]
Original file line number Diff line number Diff line change @@ -44,4 +44,4 @@ def run_inference(cfg: DictConfig) -> None:
4444
4545
4646if __name__ == " __main__" :
47- run_inference ()
47+ run_inference ()
You can’t perform that action at this time.
0 commit comments