@@ -67,7 +67,7 @@ machine learning models without downloading and storing trajectory data.
6767The computing power in HPC environments has increased to the point where
6868running simulation algorithms is often no longer the constraint in
6969obtaining scientific insights from molecular dynamics trajectory data.
70- Instead, the ability to process, analyze and share large volumes of data provide
70+ Instead, the ability to process, analyze and share large volumes of data provides
7171new constraints on research in this field [ @SharingMD :2019] .
7272
7373Other groups in the field recognize this same need for adherence to
@@ -82,7 +82,7 @@ for publicly-available GROMACS simulation data [@MDverse:2024].
8282
8383While these efforts currently offer solutions for indexing,
8484searching, and visualizing MD trajectory data, the problem of distributing trajectories
85- in way that enables * NumPy* -like slicing and parallel reading for use in arbitrary analysis
85+ in a way that enables * NumPy* -like slicing and parallel reading for use in arbitrary analysis
8686tasks remains.
8787
8888Although exposing download links on the open internet offers a simple solution to this problem,
@@ -191,13 +191,13 @@ frame `timestep` although in principle, any kind of analysis code can run here a
191191process the coordinates available in ` u.atoms.positions ` .
192192
193193The ` Universe ` object can be used as if the underlying trajectory file were a
194- local file. For example, we can use ` u ` from the preceeding example with one of
194+ local file. For example, we can use ` u ` from the preceding example with one of
195195the standard analysis tools in MDAnalysis, the calculation of the root mean
196196square distance (RMSD) after optimal structural superposition [ @Liu :2010] in
197197the ` MDAnalysis.analysis.rms.RMSD ` class. In the example below we select only the
198- C$_ \alpha$ atoms of the protein with a MDAnalysis selection. We run the
198+ C$_ \alpha$ atoms of the protein with an MDAnalysis selection. We run the
199199analysis with the ` .run() ` method while stepping through the trajectory at
200- increments of 100 frames. We then print the first and last data point from the
200+ increments of 100 frames. We then print the first and last data points from the
201201results array:
202202
203203``` python
0 commit comments