Hello,
Suppose I want to feed to files to trjcat. I tried this but didn't work:
import gmxapi as gmx
a = gmx.commandline_operation(
"gmx",
arguments=["trjcat", "-nooverwrite"],
input_files={"-f": ["s0/traj_comp.xtc", "s1/traj_comp.xtc"]},
output_files={"-o": "cat.xtc"},
)
a.run()
print(a.output.erroroutput.result())
Is there a good solution?
Thank you very much!
Best,
Sergio
Hello,
Suppose I want to feed to files to
trjcat. I tried this but didn't work:Is there a good solution?
Thank you very much!
Best,
Sergio