On Feb 12, 2024, at 11:34 AM, Eric Pettersen via ChimeraX-users <chimerax-users@cgl.ucsf.edu> wrote:
run(f“open {file1} {file2}”)
match_info = run(“mmaker #1 to #2”)
Oops, run() takes a session object as its first argument, and the current ChimeraX session object is automatically provided as the variable ’session’ in the local scope when a script is run, so the above two lines should instead be:
run(session, f“open {file1} {file2}”)
match_info = run(session, “mmaker #1 to #2”)
—Eric