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
Hello,
In the description of the script, it seems that I need to have multiple parameters files to put into the argument
argparser.add_argument("--params_files", type=str, default=None, help="Path to alternative params file. Can also be multiple paths separated by ';'.")
However, I only have one parameter file from ligand and I put the following line as argument :
--params_files /home/RiffDiff/motif_library_assembly/ligand/LG1.params
I have then that following error of split for params argument. I supposed that because I don't have multiple parameters files.
File "/home/riff_diff_protflow/structure_generation.py", line 1905, in
main(arguments)
File "/home/riff_diff_protflow/structure_generation.py", line 567, in main
params = args.params.split(",")
^^^^^^^^^^^
AttributeError: 'Namespace' object has no attribute 'params'
How could I adjust this error ?
Thanks !
Hang
The text was updated successfully, but these errors were encountered:
Hello,
In the description of the script, it seems that I need to have multiple parameters files to put into the argument
argparser.add_argument("--params_files", type=str, default=None, help="Path to alternative params file. Can also be multiple paths separated by ';'.")
However, I only have one parameter file from ligand and I put the following line as argument :
--params_files /home/RiffDiff/motif_library_assembly/ligand/LG1.params
I have then that following error of split for params argument. I supposed that because I don't have multiple parameters files.
File "/home/riff_diff_protflow/structure_generation.py", line 1905, in
main(arguments)
File "/home/riff_diff_protflow/structure_generation.py", line 567, in main
params = args.params.split(",")
^^^^^^^^^^^
AttributeError: 'Namespace' object has no attribute 'params'
How could I adjust this error ?
Thanks !
Hang
The text was updated successfully, but these errors were encountered: