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