# Or with logfile
relax_disp relax_1_ini.py -l logfile.txt
</source>
== Rerun from a "pre_run.bz2" file ==
If something goes wrong, you can open the '''pre_run.bz2'''.
Just start relax, and open the '''pre_run.bz2''' from File->"Open relax state".
In script it will be [http://www.nmr-relax.com/manual/state_load.html See manual]:
<source lang="python">
state.load(state='pre_run.bz2')
from auto_analyses.relax_disp import Relax_disp
import pipe_control
print pipe.display()
pipe_name = 'base pipe'; pipe_bundle = 'relax_disp'
MODELS = ['R2eff', 'No Rex', 'LM63', 'CR72', 'IT99', 'NS 2-site expanded']
GRID_INC = 21; MC_NUM = 10; MODSEL = 'AIC'
print pipe_control.spectrum.get_ids()
Relax_disp(pipe_name=pipe_name, pipe_bundle=pipe_bundle, models=MODELS, grid_inc=GRID_INC, mc_sim_num=MC_NUM, modsel=MODSEL)
</source>