changed reading hint
[gromacs/adressmacs.git] / share / html / online / tpr.html
blob2921f4c78c23e434c237fd86e1c5a46e8bf3174d
1 <title>tpr file format</title>
2 <body>
3 <h1>tpr file format</h1>
4 <h2>Description</h2>
5 The tpr file extension stands for portable binary run input file. This file
6 contains the starting structure of your simulation, the molecular topology
7 and all the simulation parameters. Because this file is in binary format it
8 cannot be read with a normal editor. To read a portable binary run input
9 file type:
10 <PRE>
11 % <a href="gmxdump.html">gmxdump</a> -s topol.tpr
12 </PRE>
13 or if you're not such a fast reader:
14 <PRE>
15 % gmxdump -s topol.tpr | more
16 </PRE>
18 <p>
19 You can also compare two tpr files using:
20 <pre>
21 <a href="gmxcheck.html">gmxcheck</a> -s1 top1 -s2 top2 | more
22 </pre>
23 </body>