@@ -22,8 +22,10 @@ Convert the pdb file
22
22
23
23
.. container :: justify
24
24
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 `.
27
29
28
30
.. |ProteinDataBank | raw :: html
29
31
@@ -33,4 +35,43 @@ Convert the pdb file
33
35
34
36
<a href="https://raw.githubusercontent.com/gromacstutorials/gromacstutorials-inputs/main/level1/protein-in-electrolyte/1cta.pdb" target="_blank">here</a>
35
37
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
+
36
77
.. include :: ../../non-tutorials/accessfile.rst
0 commit comments