Skip to content

Commit c12b3fd

Browse files
committed
improved tutorial
1 parent 80311ed commit c12b3fd

File tree

2 files changed

+54
-2
lines changed

2 files changed

+54
-2
lines changed

docs/sphinx/source/journal-article.bib

+11
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ @book{barrat2003basic
55
publisher={Cambridge University Press}
66
}
77

8+
@article{shaw1992determination,
9+
title={Determination of the solution structure of a synthetic two-site calcium-binding homodimeric protein domain by NMR spectroscopy},
10+
author={Shaw, Gary S and Hodges, Robert S and Sykes, Brian D},
11+
journal={Biochemistry},
12+
volume={31},
13+
number={40},
14+
pages={9572--9580},
15+
year={1992},
16+
publisher={ACS Publications}
17+
}
18+
819
@article{bank1971protein,
920
title={Protein data bank},
1021
author={Bank, Protein Data},

docs/sphinx/source/tutorials/level1/protein-in-electrolyte.rst

+43-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ Convert the pdb file
2222

2323
.. container:: justify
2424

25-
Download the *.pdb* file from the |ProteinDataBank|, or simply
26-
click |1cta.pdb|.
25+
Download the *.pdb* file from the |ProteinDataBank|,
26+
or simply click |1cta.pdb|. The protein is a calcium-binding peptide from site III
27+
of chicken troponin-C that has been determined using 1H-NMR
28+
spectroscopy :cite:`shaw1992determination`.
2729

2830
.. |ProteinDataBank| raw:: html
2931

@@ -33,4 +35,43 @@ Convert the pdb file
3335

3436
<a href="https://raw.githubusercontent.com/gromacstutorials/gromacstutorials-inputs/main/level1/protein-in-electrolyte/1cta.pdb" target="_blank">here</a>
3537

38+
.. container:: justify
39+
40+
We first need to create the *.gro* file, i.e. a GROMACS structure file,
41+
from the *.pdb* file. This can be done using *gmx trjconv*:
42+
43+
.. container:: bash
44+
45+
gmx trjconv -f 1cta.pdb -s 1cta.pdb -o 1cta.gro -center -box 5 5 5
46+
47+
.. container:: justify
48+
49+
Choose the group *System* for the centering, and the group *System* as well
50+
for the output. A file named *1cta.gro* is created. The generated *.gro*
51+
file contains 666 atoms, each atom corresponding to one line:
52+
53+
.. container:: bash
54+
55+
TROPONIN C SITE III - SITE III HOMODIMER
56+
666
57+
0ACE C 1 2.662 4.131 2.701
58+
0ACE O 2 2.714 4.036 2.646
59+
0ACE CH3 3 2.651 4.147 2.853
60+
(...)
61+
35NH2 HN2 664 2.417 3.671 3.192
62+
69CA CA 665 3.016 2.279 1.785
63+
70CA CA 666 1.859 2.046 1.838
64+
5.00000 5.00000 5.00000
65+
66+
.. container:: justify
67+
68+
The last line is the box dimensions in nanometer, which was requested
69+
in the *gmx trjconv* command by the *-box 5 5 5* option. All the options
70+
of *trjconv* can be found in the corresponding page of the GROMACS
71+
|trjconv-documentation|.
72+
73+
.. |trjconv-documentation| raw:: html
74+
75+
<a href="https://manual.gromacs.org/current/onlinehelp/gmx-trjconv.html" target="_blank">documentation</a>
76+
3677
.. include:: ../../non-tutorials/accessfile.rst

0 commit comments

Comments
 (0)