-
Notifications
You must be signed in to change notification settings - Fork 1
Description
I had few issues trying to run the FabMD plugin with FabSim3 on my local laptot (I had the same errors on remote). I think most of them exists because the documentation is probably out of date with the recent FabSim3.
-
I tried to follow indication in
doc/RunEnsemble-examples.mdto run the example1
As indicated I usedfab localhost lammps_ensemble:lammps_ensemble_example1and get the following error :
RuntimeError: Must declare input_name_in_config: the generic name which sweep directory files will be changed to
Indeed, in FabMD.py l.75 teh variableinput_name_in_configmust be define -
Then I tried to run
fab localhost lammps_ensemble:lammps_ensemble_example1,input_name_in_config=data.peptideand had the following error :
ERROR: no files were found in the sweep_dir of this run_ensemble command
After investigated, i found out that therun_ensemble()function infab.pyis looking for directories in the SWEEP dir. But in the lammps_ensemble_example1/SWEEP/ dir, there is only files. (in.indent*)
So I just created a specific directory for each of in.indent file and it worked.
- Last one was with the same command and the directories in the SWEEP dir.
The lammps runs failed. The log.lammps showed this :
ERROR: unknow atom style
Investigations reveal that I probably didn't install lammps correctly to do run with this kind of input. (My lammps worked with some examples in the lammps github project).
So It's just minor bugs but probably usefull to be highlithed .