Visualise the structure

First of all it would be nice to see the structure of the molecule that we have simulated. Using the Python code below, it is possible to load and present the simulation trajectory (this visualisation will only work if you use the Interact button above, or run this locally). This can also be achieved offline by using software such as VMD.

import MDAnalysis as mda
import nglview as nv
u = mda.Universe('../assets/lysozyme.pdb')
view = nv.show_mdanalysis(u)
view

From this it is clear that there are no water molecules in the visualisation. While there were some in the simulation we have removed them for ease of visualisation, and in our rough comparison with experimental data we will assume complete background substraction.