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('-n', '--num', default=0, type=int, help='number of conformers to generate, if None then input structures are assumed to already be 3D')
69
73
parser.add_argument('-a', '--attempts', default=0, type=int, help='number of attempts to generate conformers')
70
74
parser.add_argument('-r', '--rmsd', type=float, default=1.0, help='prune RMSD threshold for excluding conformers')
71
-
parser.add_argument('-e', '--emin', type=int, default=0, help='energy minimisation iterations for generated confomers (default of 0 means none)')
75
+
parser.add_argument('-e', '--emin', type=int, default=0, help='energy minimisation iterations for generated conformers (default of 0 means none)')
72
76
parameter_utils.add_default_io_args(parser)
73
77
74
78
args=parser.parse_args()
75
79
utils.log("o3dAlign Args: ", args)
76
80
81
+
# TODO - handle molecules with multiple fragments
82
+
# TODO - allow to specify threshold as fraction of perfect score?
0 commit comments