Thank you, Tsjerk. I will check them out.<br><br>But I am still confursed with what has gone wrong. As I said in my previous eamil, in fact, 2 Ca atoms are a part of the protein. They are in the PDB file
passed to pdb2gmx. Water molecules are added after the protein atoms
and the Ca atoms, as in the PDB file after genbox. So I suppose, in the
.tpr file, atoms should be ordered as protein-Ca-water-Cl? If so, I don&#39;t know why when writing out Ca or Cl atoms, I got segmentation fault and index out of bound errors. <br><br>Peggy<br><br><div class="gmail_quote">
On Fri, Apr 11, 2008 at 12:25 AM, Tsjerk Wassenaar &lt;<a href="mailto:tsjerkw@gmail.com">tsjerkw@gmail.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi Peggy,<br>
<br>
This is very much basic stuff for which you should refer to the<br>
manual/wiki. E.g. on the index file, look at<br>
<br>
<a href="http://wiki.gromacs.org/index.php/Index_File" target="_blank">http://wiki.gromacs.org/index.php/Index_File</a><br>
<br>
For the other questions, check the manpages of editconf, trjconv and tpbconv.<br>
<br>
Cheers,<br>
<font color="#888888"><br>
Tsjerk<br>
</font><div><div></div><div class="Wj3C7c"><br>
On Thu, Apr 10, 2008 at 11:03 PM, Peggy Yao &lt;<a href="mailto:peggy.yao@gmail.com">peggy.yao@gmail.com</a>&gt; wrote:<br>
&gt; Thank you for the explanation!<br>
&gt;<br>
&gt; In fact, 2 Ca atoms are a part of the protein. They are in the PDB file<br>
&gt; passed to pdb2gmx. Water molecules are added after the protein atoms and the<br>
&gt; Ca atoms, as in the PDB file after genbox. So I suppose, in the .tpr file,<br>
&gt; atoms should be ordered as protein-Ca-water-Cl?<br>
&gt;<br>
&gt; If I still have to do what you suggested, could you kindly tell me:<br>
&gt; 1. what is an index file?<br>
&gt; 2. how to make an index file to extract the matching set of atoms from .tpr<br>
&gt; file?<br>
&gt; 3. how to write a matching reference structure?<br>
&gt;<br>
&gt; Thanks a lot!<br>
&gt;<br>
&gt; Peggy<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Thu, Apr 10, 2008 at 11:52 AM, Tsjerk Wassenaar &lt;<a href="mailto:tsjerkw@gmail.com">tsjerkw@gmail.com</a>&gt;<br>
&gt; wrote:<br>
&gt; &gt; Hi Peggy,<br>
&gt; &gt;<br>
&gt; &gt; The key thing is that there&#39;s a mismatch between your .tpr file and<br>
&gt; &gt; your .xtc file. The first is used for the indexing and it may very<br>
&gt; &gt; well be that there&#39;s stuff in between the protein and the calcium.<br>
&gt; &gt; That way, the index number for Ca, which should be N(protein) + 1, is<br>
&gt; &gt; actually N(protein) + N(solvent) + 1. Now the list of atoms in the<br>
&gt; &gt; .xtc file is only N(protein) + N(Ca) + N(Cl) and the atom you&#39;re<br>
&gt; &gt; trying to fetch brings you to a part of memory you&#39;re not allowed to<br>
&gt; &gt; touch (index &gt; N(protein) + N(Ca) + N(Cl)): a segmentation fault<br>
&gt; &gt;<br>
&gt; &gt; But since you did write out correctly, the solution is simple. First<br>
&gt; &gt; make an index file to extract the matching set of atoms from the .tpr<br>
&gt; &gt; file. Then write a matching reference structure. If you really need a<br>
&gt; &gt; matching .tpr file, you can do it with tpbconv. Now with a matching<br>
&gt; &gt; reference structure, you can do just what you want...<br>
&gt; &gt;<br>
&gt; &gt; Cheers,<br>
&gt; &gt;<br>
&gt; &gt; Tsjerk<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; On Thu, Apr 10, 2008 at 6:42 PM, Peggy Yao &lt;<a href="mailto:peggy.yao@gmail.com">peggy.yao@gmail.com</a>&gt; wrote:<br>
&gt; &gt; &gt; Thank you for your reply, Tsjerk!<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; I used gmxcheck, and got exactly the same number of atoms in xtc file as<br>
&gt; &gt; &gt; #proteinAtoms+#calciumAtoms+#chlorideAtom.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; I also checked my mdp file. It does have &quot;xtc_grps = protein Ca Cl&quot;.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; In previous similar runs, I successfully wrote these atoms out. The only<br>
&gt; &gt; &gt; difference is that, in previous runs, I added some Na+ ions too. At the<br>
&gt; end<br>
&gt; &gt; &gt; of the .top file, I had:<br>
&gt; &gt; &gt; Protein_A &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1<br>
&gt; &gt; &gt; Na &nbsp;15<br>
&gt; &gt; &gt; Cl 12<br>
&gt; &gt; &gt; &nbsp;SOL 7254<br>
&gt; &gt; &gt; And, in mdp file, I had: xtc_grps = protein Ca Na Cl<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; But this time, I didn&#39;t add any Na+ ion. After genion step, the end of<br>
&gt; the<br>
&gt; &gt; &gt; .top file became:<br>
&gt; &gt; &gt; Protein_A &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1<br>
&gt; &gt; &gt; SOL &nbsp; &nbsp; &nbsp; &nbsp; 7280<br>
&gt; &gt; &gt; Na &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0<br>
&gt; &gt; &gt; &nbsp;Cl &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1<br>
&gt; &gt; &gt; In mdp file, I had: xtc_grps = protein Ca Cl<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; Will this difference cause the problem? How should I solve it? Thanks a<br>
&gt; lot!<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; Peggy<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; On Thu, Apr 10, 2008 at 12:22 AM, Tsjerk Wassenaar &lt;<a href="mailto:tsjerkw@gmail.com">tsjerkw@gmail.com</a>&gt;<br>
&gt; &gt; &gt; wrote:<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Hi Peggy,<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; I suspect that in your .mdp file you have a line<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; xtc-grps = Protein<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; This means that the xtc file will only contain those atoms which<br>
&gt; &gt; &gt; &gt; gromacs reckognizes as amino acids, based on the list in the file<br>
&gt; &gt; &gt; &gt; aminoacids.dat. Your .tpr file which is used to base the index on,<br>
&gt; &gt; &gt; &gt; contains all atoms, including the Ca/Cl. You can easily check how many<br>
&gt; &gt; &gt; &gt; atoms there are in your xtc file using gmxcheck and compare this to<br>
&gt; &gt; &gt; &gt; the groups you see based on the .tpr as you&#39;ve given. If you need the<br>
&gt; &gt; &gt; &gt; calcium and chloride in the trajectory while you&#39;ve only written<br>
&gt; &gt; &gt; &gt; Protein, you&#39;ll have to redo the simulation, changing the xtc-grps<br>
&gt; &gt; &gt; &gt; line in the .mdp, copy the file aminoacids.dat and add the ions to it<br>
&gt; &gt; &gt; &gt; or use an index file when running grompp. Of course you can first have<br>
&gt; &gt; &gt; &gt; a look at teh .trr file which contains all atoms by definition, but<br>
&gt; &gt; &gt; &gt; that is usually written much less frequent.<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Cheers,<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Tsjerk<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; On Thu, Apr 10, 2008 at 8:27 AM, Peggy Yao &lt;<a href="mailto:peggy.yao@gmail.com">peggy.yao@gmail.com</a>&gt;<br>
&gt; wrote:<br>
&gt; &gt; &gt; &gt; &gt; Hi all,<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; In my system, I have 1 protein, 2 calcium atoms, and 1 chloride<br>
&gt; atom.<br>
&gt; &gt; &gt; When I<br>
&gt; &gt; &gt; &gt; &gt; used trjconv to write the protein out as PDB file, it worked fine.<br>
&gt; &gt; &gt; However,<br>
&gt; &gt; &gt; &gt; &gt; when I tried to write the calciums and chloride out using the same<br>
&gt; &gt; &gt; command<br>
&gt; &gt; &gt; &gt; &gt; (but selecting different group to write out), I got the following<br>
&gt; fatal<br>
&gt; &gt; &gt; &gt; &gt; error:<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; for calcium:<br>
&gt; &gt; &gt; &gt; &gt; Select group for output<br>
&gt; &gt; &gt; &gt; &gt; Opening library file /usr/share/gromacs/top/aminoacids.dat<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp; 0 ( &nbsp; &nbsp; &nbsp;System) has 22737 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp; 1 ( &nbsp; &nbsp; Protein) has &nbsp; 894 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp; 2 ( &nbsp; Protein-H) has &nbsp; 707 elements<br>
&gt; &gt; &gt; &gt; &gt; &nbsp;Group &nbsp; &nbsp; 3 ( &nbsp; &nbsp; C-alpha) has &nbsp; &nbsp;89 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp; 4 ( &nbsp; &nbsp;Backbone) has &nbsp; 267 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp; 5 ( &nbsp; MainChain) has &nbsp; 357 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp; 6 (MainChain+Cb) has &nbsp; 440 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp; 7 ( MainChain+H) has &nbsp; 447 elements<br>
&gt; &gt; &gt; &gt; &gt; &nbsp;Group &nbsp; &nbsp; 8 ( &nbsp; SideChain) has &nbsp; 447 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp; 9 ( SideChain-H) has &nbsp; 350 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp;10 ( Prot-Masses) has &nbsp; 894 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp;11 ( Non-Protein) has 21843 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp;12 ( &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Ca) has &nbsp; &nbsp; 2 elements<br>
&gt; &gt; &gt; &gt; &gt; &nbsp;Group &nbsp; &nbsp;13 ( &nbsp; &nbsp; &nbsp; &nbsp; SOL) has 21840 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp;14 ( &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Cl) has &nbsp; &nbsp; 1 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp;15 ( &nbsp; &nbsp; &nbsp; Other) has 21843 elements<br>
&gt; &gt; &gt; &gt; &gt; Select a group: 12<br>
&gt; &gt; &gt; &gt; &gt; Selected 12: &#39;Ca&#39;<br>
&gt; &gt; &gt; &gt; &gt; Reading frame &nbsp; &nbsp; &nbsp; 0 time &nbsp; &nbsp;0.000<br>
&gt; &gt; &gt; &gt; &gt; &nbsp;Precision of traj.xtc is 0.001 (nm)<br>
&gt; &gt; &gt; &gt; &gt; Segmentation fault &nbsp;3 time &nbsp;150.000 &nbsp; &nbsp;-&gt; &nbsp;frame &nbsp; &nbsp; &nbsp;3 time<br>
&gt; 150.000<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; for chloride:<br>
&gt; &gt; &gt; &gt; &gt; Select group for output<br>
&gt; &gt; &gt; &gt; &gt; Opening library file /usr/share/gromacs/top/aminoacids.dat<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp; 0 ( &nbsp; &nbsp; &nbsp;System) has 22737 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp; 1 ( &nbsp; &nbsp; Protein) has &nbsp; 894 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp; 2 ( &nbsp; Protein-H) has &nbsp; 707 elements<br>
&gt; &gt; &gt; &gt; &gt; &nbsp;Group &nbsp; &nbsp; 3 ( &nbsp; &nbsp; C-alpha) has &nbsp; &nbsp;89 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp; 4 ( &nbsp; &nbsp;Backbone) has &nbsp; 267 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp; 5 ( &nbsp; MainChain) has &nbsp; 357 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp; 6 (MainChain+Cb) has &nbsp; 440 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp; 7 ( MainChain+H) has &nbsp; 447 elements<br>
&gt; &gt; &gt; &gt; &gt; &nbsp;Group &nbsp; &nbsp; 8 ( &nbsp; SideChain) has &nbsp; 447 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp; 9 ( SideChain-H) has &nbsp; 350 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp;10 ( Prot-Masses) has &nbsp; 894 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp;11 ( Non-Protein) has 21843 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp;12 ( &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Ca) has &nbsp; &nbsp; 2 elements<br>
&gt; &gt; &gt; &gt; &gt; &nbsp;Group &nbsp; &nbsp;13 ( &nbsp; &nbsp; &nbsp; &nbsp; SOL) has 21840 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp;14 ( &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Cl) has &nbsp; &nbsp; 1 elements<br>
&gt; &gt; &gt; &gt; &gt; Group &nbsp; &nbsp;15 ( &nbsp; &nbsp; &nbsp; Other) has 21843 elements<br>
&gt; &gt; &gt; &gt; &gt; Select a group: 14<br>
&gt; &gt; &gt; &gt; &gt; Selected 14: &#39;Cl&#39;<br>
&gt; &gt; &gt; &gt; &gt; Reading frame &nbsp; &nbsp; &nbsp; 0 time &nbsp; &nbsp;0.000<br>
&gt; &gt; &gt; &gt; &gt; &nbsp;Precision of traj.xtc is 0.001 (nm)<br>
&gt; &gt; &gt; &gt; &gt; -------------------------------------------------------<br>
&gt; &gt; &gt; &gt; &gt; Program trjconv, VERSION 3.3.2<br>
&gt; &gt; &gt; &gt; &gt; Source code file: gmx_trjconv.c, line: 994<br>
&gt; &gt; &gt; &gt; &gt; Fatal error:<br>
&gt; &gt; &gt; &gt; &gt; Index[0] 22737 is larger than the number of atoms in the trajectory<br>
&gt; file<br>
&gt; &gt; &gt; &gt; &gt; (897)<br>
&gt; &gt; &gt; &gt; &gt; -------------------------------------------------------<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; Does anybody know what might be wrong? Maybe the .tpr or .xtc files<br>
&gt; are<br>
&gt; &gt; &gt; not<br>
&gt; &gt; &gt; &gt; &gt; complete? Is there any way to check? Thanks!<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; Peggy<br>
&gt; &gt; &gt; &gt; &gt; _______________________________________________<br>
&gt; &gt; &gt; &gt; &gt; &nbsp;gmx-users mailing list &nbsp; &nbsp;<a href="mailto:gmx-users@gromacs.org">gmx-users@gromacs.org</a><br>
&gt; &gt; &gt; &gt; &gt; &nbsp;<a href="http://www.gromacs.org/mailman/listinfo/gmx-users" target="_blank">http://www.gromacs.org/mailman/listinfo/gmx-users</a><br>
&gt; &gt; &gt; &gt; &gt; &nbsp;Please search the archive at <a href="http://www.gromacs.org/search" target="_blank">http://www.gromacs.org/search</a> before<br>
&gt; &gt; &gt; posting!<br>
&gt; &gt; &gt; &gt; &gt; &nbsp;Please don&#39;t post (un)subscribe requests to the list. Use the<br>
&gt; &gt; &gt; &gt; &gt; &nbsp;www interface or send it to <a href="mailto:gmx-users-request@gromacs.org">gmx-users-request@gromacs.org</a>.<br>
&gt; &gt; &gt; &gt; &gt; &nbsp;Can&#39;t post? Read <a href="http://www.gromacs.org/mailing_lists/users.php" target="_blank">http://www.gromacs.org/mailing_lists/users.php</a><br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; --<br>
&gt; &gt; &gt; &gt; Tsjerk A. Wassenaar, Ph.D.<br>
&gt; &gt; &gt; &gt; Junior UD (post-doc)<br>
&gt; &gt; &gt; &gt; Biomolecular NMR, Bijvoet Center<br>
&gt; &gt; &gt; &gt; Utrecht University<br>
&gt; &gt; &gt; &gt; Padualaan 8<br>
&gt; &gt; &gt; &gt; 3584 CH Utrecht<br>
&gt; &gt; &gt; &gt; The Netherlands<br>
&gt; &gt; &gt; &gt; P: +31-30-2539931<br>
&gt; &gt; &gt; &gt; F: +31-30-2537623<br>
&gt; &gt; &gt; &gt; _______________________________________________<br>
&gt; &gt; &gt; &gt; gmx-users mailing list &nbsp; &nbsp;<a href="mailto:gmx-users@gromacs.org">gmx-users@gromacs.org</a><br>
&gt; &gt; &gt; &gt; <a href="http://www.gromacs.org/mailman/listinfo/gmx-users" target="_blank">http://www.gromacs.org/mailman/listinfo/gmx-users</a><br>
&gt; &gt; &gt; &gt; Please search the archive at <a href="http://www.gromacs.org/search" target="_blank">http://www.gromacs.org/search</a> before<br>
&gt; posting!<br>
&gt; &gt; &gt; &gt; Please don&#39;t post (un)subscribe requests to the list. Use the<br>
&gt; &gt; &gt; &gt; www interface or send it to <a href="mailto:gmx-users-request@gromacs.org">gmx-users-request@gromacs.org</a>.<br>
&gt; &gt; &gt; &gt; Can&#39;t post? Read <a href="http://www.gromacs.org/mailing_lists/users.php" target="_blank">http://www.gromacs.org/mailing_lists/users.php</a><br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; _______________________________________________<br>
&gt; &gt; &gt; &nbsp;gmx-users mailing list &nbsp; &nbsp;<a href="mailto:gmx-users@gromacs.org">gmx-users@gromacs.org</a><br>
&gt; &gt; &gt; &nbsp;<a href="http://www.gromacs.org/mailman/listinfo/gmx-users" target="_blank">http://www.gromacs.org/mailman/listinfo/gmx-users</a><br>
&gt; &gt; &gt; &nbsp;Please search the archive at <a href="http://www.gromacs.org/search" target="_blank">http://www.gromacs.org/search</a> before<br>
&gt; posting!<br>
&gt; &gt; &gt; &nbsp;Please don&#39;t post (un)subscribe requests to the list. Use the<br>
&gt; &gt; &gt; &nbsp;www interface or send it to <a href="mailto:gmx-users-request@gromacs.org">gmx-users-request@gromacs.org</a>.<br>
&gt; &gt; &gt; &nbsp;Can&#39;t post? Read <a href="http://www.gromacs.org/mailing_lists/users.php" target="_blank">http://www.gromacs.org/mailing_lists/users.php</a><br>
&gt; &gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; --<br>
&gt; &gt; Tsjerk A. Wassenaar, Ph.D.<br>
&gt; &gt; Junior UD (post-doc)<br>
&gt; &gt; Biomolecular NMR, Bijvoet Center<br>
&gt; &gt; Utrecht University<br>
&gt; &gt; Padualaan 8<br>
&gt; &gt; 3584 CH Utrecht<br>
&gt; &gt; The Netherlands<br>
&gt; &gt; P: +31-30-2539931<br>
&gt; &gt; F: +31-30-2537623<br>
&gt; &gt; _______________________________________________<br>
&gt; &gt; gmx-users mailing list &nbsp; &nbsp;<a href="mailto:gmx-users@gromacs.org">gmx-users@gromacs.org</a><br>
&gt; &gt; <a href="http://www.gromacs.org/mailman/listinfo/gmx-users" target="_blank">http://www.gromacs.org/mailman/listinfo/gmx-users</a><br>
&gt; &gt; Please search the archive at <a href="http://www.gromacs.org/search" target="_blank">http://www.gromacs.org/search</a> before posting!<br>
&gt; &gt; Please don&#39;t post (un)subscribe requests to the list. Use the<br>
&gt; &gt; www interface or send it to <a href="mailto:gmx-users-request@gromacs.org">gmx-users-request@gromacs.org</a>.<br>
&gt; &gt; Can&#39;t post? Read <a href="http://www.gromacs.org/mailing_lists/users.php" target="_blank">http://www.gromacs.org/mailing_lists/users.php</a><br>
&gt; &gt;<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; &nbsp;gmx-users mailing list &nbsp; &nbsp;<a href="mailto:gmx-users@gromacs.org">gmx-users@gromacs.org</a><br>
&gt; &nbsp;<a href="http://www.gromacs.org/mailman/listinfo/gmx-users" target="_blank">http://www.gromacs.org/mailman/listinfo/gmx-users</a><br>
&gt; &nbsp;Please search the archive at <a href="http://www.gromacs.org/search" target="_blank">http://www.gromacs.org/search</a> before posting!<br>
&gt; &nbsp;Please don&#39;t post (un)subscribe requests to the list. Use the<br>
&gt; &nbsp;www interface or send it to <a href="mailto:gmx-users-request@gromacs.org">gmx-users-request@gromacs.org</a>.<br>
&gt; &nbsp;Can&#39;t post? Read <a href="http://www.gromacs.org/mailing_lists/users.php" target="_blank">http://www.gromacs.org/mailing_lists/users.php</a><br>
&gt;<br>
<br>
<br>
<br>
--<br>
Tsjerk A. Wassenaar, Ph.D.<br>
Junior UD (post-doc)<br>
Biomolecular NMR, Bijvoet Center<br>
Utrecht University<br>
Padualaan 8<br>
3584 CH Utrecht<br>
The Netherlands<br>
P: +31-30-2539931<br>
F: +31-30-2537623<br>
_______________________________________________<br>
gmx-users mailing list &nbsp; &nbsp;<a href="mailto:gmx-users@gromacs.org">gmx-users@gromacs.org</a><br>
<a href="http://www.gromacs.org/mailman/listinfo/gmx-users" target="_blank">http://www.gromacs.org/mailman/listinfo/gmx-users</a><br>
Please search the archive at <a href="http://www.gromacs.org/search" target="_blank">http://www.gromacs.org/search</a> before posting!<br>
Please don&#39;t post (un)subscribe requests to the list. Use the<br>
www interface or send it to <a href="mailto:gmx-users-request@gromacs.org">gmx-users-request@gromacs.org</a>.<br>
Can&#39;t post? Read <a href="http://www.gromacs.org/mailing_lists/users.php" target="_blank">http://www.gromacs.org/mailing_lists/users.php</a><br>
</div></div></blockquote></div><br>