8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, This is a chunk of code from scripts/scrub.py:
scrub = Scrub( ph_low, ph_high, pka_fname=None, tauto_fname=None, skip_acidbase=args.skip_acidbase, skip_tautomers=args.skip_tautomers, skip_ringfix=args.skip_ringfix, skip_gen3d=args.skip_gen3d, template=template_mol, template_smarts=template_smarts, do_gen2d=do_gen2d, max_ff_iter=args.max_ff_iter, numconfs = nconfs, etkdg_rng_seed=args.etkdg_rng_seed, ff=args.ff, use_energy=args.ring_minimize, energy_threshold=args.energy_threshold, debug=args.debug )
But there are not use_energy, energy_threshold and debug in Scrub's __init__, so an error occurred:
use_energy
energy_threshold
debug
__init__
Traceback (most recent call last): File "D:\works\projects\mulitple_ligands_docking\scrub.py", line 353, in <module> scrub = Scrub( ^^^^^^ TypeError: Scrub.__init__() got an unexpected keyword argument 'use_energy'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
This is a chunk of code from scripts/scrub.py:
But there are not
use_energy
,energy_threshold
anddebug
in Scrub's__init__
, so an error occurred:The text was updated successfully, but these errors were encountered: