2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2004, The GROMACS development team.
6 * Copyright (c) 2013,2014,2015,2016,2017,2018, by the GROMACS development team, led by
7 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8 * and including many others, as listed in the AUTHORS file in the
9 * top-level source directory and at http://www.gromacs.org.
11 * GROMACS is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public License
13 * as published by the Free Software Foundation; either version 2.1
14 * of the License, or (at your option) any later version.
16 * GROMACS is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with GROMACS; if not, see
23 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 * If you want to redistribute modifications to GROMACS, please
27 * consider that scientific software is very special. Version
28 * control is crucial - bugs must be traceable. We will be happy to
29 * consider code for inclusion in the official distribution, but
30 * derived work must not be called official GROMACS. Details are found
31 * in the README & COPYING files - if they are missing, get the
32 * official version at http://www.gromacs.org.
34 * To help us fund GROMACS development, we humbly ask that you cite
35 * the research papers on the package. Check out http://www.gromacs.org.
46 #include "gromacs/commandline/pargs.h"
47 #include "gromacs/fileio/confio.h"
48 #include "gromacs/fileio/gmxfio.h"
49 #include "gromacs/fileio/pdbio.h"
50 #include "gromacs/gmxlib/conformation-utilities.h"
51 #include "gromacs/gmxpreprocess/fflibutil.h"
52 #include "gromacs/gmxpreprocess/genhydro.h"
53 #include "gromacs/gmxpreprocess/h_db.h"
54 #include "gromacs/gmxpreprocess/hizzie.h"
55 #include "gromacs/gmxpreprocess/pdb2top.h"
56 #include "gromacs/gmxpreprocess/pgutil.h"
57 #include "gromacs/gmxpreprocess/resall.h"
58 #include "gromacs/gmxpreprocess/specbond.h"
59 #include "gromacs/gmxpreprocess/ter_db.h"
60 #include "gromacs/gmxpreprocess/toputil.h"
61 #include "gromacs/gmxpreprocess/xlate.h"
62 #include "gromacs/math/vec.h"
63 #include "gromacs/topology/atomprop.h"
64 #include "gromacs/topology/block.h"
65 #include "gromacs/topology/index.h"
66 #include "gromacs/topology/residuetypes.h"
67 #include "gromacs/topology/symtab.h"
68 #include "gromacs/topology/topology.h"
69 #include "gromacs/utility/arraysize.h"
70 #include "gromacs/utility/cstringutil.h"
71 #include "gromacs/utility/dir_separator.h"
72 #include "gromacs/utility/fatalerror.h"
73 #include "gromacs/utility/gmxassert.h"
74 #include "gromacs/utility/smalloc.h"
75 #include "gromacs/utility/strdb.h"
79 char gmx
[RTP_MAXCHAR
+2];
80 char main
[RTP_MAXCHAR
+2];
81 char nter
[RTP_MAXCHAR
+2];
82 char cter
[RTP_MAXCHAR
+2];
83 char bter
[RTP_MAXCHAR
+2];
87 static const char *res2bb_notermini(const char *name
,
88 int nrr
, const rtprename_t
*rr
)
90 /* NOTE: This function returns the main building block name,
91 * it does not take terminal renaming into account.
96 while (i
< nrr
&& gmx_strcasecmp(name
, rr
[i
].gmx
) != 0)
101 return (i
< nrr
? rr
[i
].main
: name
);
104 static const char *select_res(int nr
, int resnr
,
105 const char *name
[], const char *expl
[],
107 int nrr
, const rtprename_t
*rr
)
111 printf("Which %s type do you want for residue %d\n", title
, resnr
+1);
112 for (sel
= 0; (sel
< nr
); sel
++)
114 printf("%d. %s (%s)\n",
115 sel
, expl
[sel
], res2bb_notermini(name
[sel
], nrr
, rr
));
117 printf("\nType a number:"); fflush(stdout
);
119 if (scanf("%d", &sel
) != 1)
121 gmx_fatal(FARGS
, "Answer me for res %s %d!", title
, resnr
+1);
127 static const char *get_asptp(int resnr
, int nrr
, const rtprename_t
*rr
)
132 const char *lh
[easpNR
] = { "ASP", "ASPH" };
133 const char *expl
[easpNR
] = {
134 "Not protonated (charge -1)",
135 "Protonated (charge 0)"
138 return select_res(easpNR
, resnr
, lh
, expl
, "ASPARTIC ACID", nrr
, rr
);
141 static const char *get_glutp(int resnr
, int nrr
, const rtprename_t
*rr
)
146 const char *lh
[egluNR
] = { "GLU", "GLUH" };
147 const char *expl
[egluNR
] = {
148 "Not protonated (charge -1)",
149 "Protonated (charge 0)"
152 return select_res(egluNR
, resnr
, lh
, expl
, "GLUTAMIC ACID", nrr
, rr
);
155 static const char *get_glntp(int resnr
, int nrr
, const rtprename_t
*rr
)
160 const char *lh
[eglnNR
] = { "GLN", "QLN" };
161 const char *expl
[eglnNR
] = {
162 "Not protonated (charge 0)",
163 "Protonated (charge +1)"
166 return select_res(eglnNR
, resnr
, lh
, expl
, "GLUTAMINE", nrr
, rr
);
169 static const char *get_lystp(int resnr
, int nrr
, const rtprename_t
*rr
)
174 const char *lh
[elysNR
] = { "LYSN", "LYS" };
175 const char *expl
[elysNR
] = {
176 "Not protonated (charge 0)",
177 "Protonated (charge +1)"
180 return select_res(elysNR
, resnr
, lh
, expl
, "LYSINE", nrr
, rr
);
183 static const char *get_argtp(int resnr
, int nrr
, const rtprename_t
*rr
)
188 const char *lh
[eargNR
] = { "ARGN", "ARG" };
189 const char *expl
[eargNR
] = {
190 "Not protonated (charge 0)",
191 "Protonated (charge +1)"
194 return select_res(eargNR
, resnr
, lh
, expl
, "ARGININE", nrr
, rr
);
197 static const char *get_histp(int resnr
, int nrr
, const rtprename_t
*rr
)
199 const char *expl
[ehisNR
] = {
206 return select_res(ehisNR
, resnr
, hh
, expl
, "HISTIDINE", nrr
, rr
);
209 static void read_rtprename(const char *fname
, FILE *fp
,
210 int *nrtprename
, rtprename_t
**rtprename
)
212 char line
[STRLEN
], buf
[STRLEN
];
221 while (get_a_line(fp
, line
, STRLEN
))
224 /* line is NULL-terminated and length<STRLEN, so final arg cannot overflow.
225 * For other args, we read up to 6 chars (so we can detect if the length is > 5).
226 * Note that the buffer length has been increased to 7 to allow this,
227 * so we just need to make sure the strings have zero-length initially.
230 rr
[n
].main
[0] = '\0';
231 rr
[n
].nter
[0] = '\0';
232 rr
[n
].cter
[0] = '\0';
233 rr
[n
].bter
[0] = '\0';
234 nc
= sscanf(line
, "%6s %6s %6s %6s %6s %s",
235 rr
[n
].gmx
, rr
[n
].main
, rr
[n
].nter
, rr
[n
].cter
, rr
[n
].bter
, buf
);
236 if (strlen(rr
[n
].gmx
) > RTP_MAXCHAR
|| strlen(rr
[n
].main
) > RTP_MAXCHAR
||
237 strlen(rr
[n
].nter
) > RTP_MAXCHAR
|| strlen(rr
[n
].cter
) > RTP_MAXCHAR
|| strlen(rr
[n
].bter
) > RTP_MAXCHAR
)
239 gmx_fatal(FARGS
, "Residue renaming database '%s' has strings longer than %d chars in first 5 columns:\n%s",
240 fname
, RTP_MAXCHAR
, line
);
245 if (nc
!= 2 && nc
!= 5)
247 gmx_fatal(FARGS
, "Residue renaming database '%s' has %d columns instead of %d, %d or %d", fname
, ncol
, 2, 5);
253 gmx_fatal(FARGS
, "A line in residue renaming database '%s' has %d columns, while previous lines have %d columns", fname
, nc
, ncol
);
258 /* This file does not have special termini names, copy them from main */
259 strcpy(rr
[n
].nter
, rr
[n
].main
);
260 strcpy(rr
[n
].cter
, rr
[n
].main
);
261 strcpy(rr
[n
].bter
, rr
[n
].main
);
271 static char *search_resrename(int nrr
, rtprename_t
*rr
,
273 gmx_bool bStart
, gmx_bool bEnd
,
274 gmx_bool bCompareFFRTPname
)
282 while (i
< nrr
&& ((!bCompareFFRTPname
&& strcmp(name
, rr
[i
].gmx
) != 0) ||
283 ( bCompareFFRTPname
&& strcmp(name
, rr
[i
].main
) != 0)))
288 /* If found in the database, rename this residue's rtp building block,
289 * otherwise keep the old name.
312 gmx_fatal(FARGS
, "In the chosen force field there is no residue type for '%s'%s", name
, bStart
? ( bEnd
? " as a standalone (starting & ending) residue" : " as a starting terminus") : (bEnd
? " as an ending terminus" : ""));
320 static void rename_resrtp(t_atoms
*pdba
, int nterpairs
, int *r_start
, int *r_end
,
321 int nrr
, rtprename_t
*rr
, t_symtab
*symtab
,
325 gmx_bool bStart
, bEnd
;
327 gmx_bool bFFRTPTERRNM
;
329 bFFRTPTERRNM
= (getenv("GMX_NO_FFRTP_TER_RENAME") == nullptr);
331 for (r
= 0; r
< pdba
->nres
; r
++)
335 for (j
= 0; j
< nterpairs
; j
++)
342 for (j
= 0; j
< nterpairs
; j
++)
350 nn
= search_resrename(nrr
, rr
, *pdba
->resinfo
[r
].rtp
, bStart
, bEnd
, FALSE
);
352 if (bFFRTPTERRNM
&& nn
== nullptr && (bStart
|| bEnd
))
354 /* This is a terminal residue, but the residue name,
355 * currently stored in .rtp, is not a standard residue name,
356 * but probably a force field specific rtp name.
357 * Check if we need to rename it because it is terminal.
359 nn
= search_resrename(nrr
, rr
,
360 *pdba
->resinfo
[r
].rtp
, bStart
, bEnd
, TRUE
);
363 if (nn
!= nullptr && strcmp(*pdba
->resinfo
[r
].rtp
, nn
) != 0)
367 printf("Changing rtp entry of residue %d %s to '%s'\n",
368 pdba
->resinfo
[r
].nr
, *pdba
->resinfo
[r
].name
, nn
);
370 pdba
->resinfo
[r
].rtp
= put_symtab(symtab
, nn
);
375 static void pdbres_to_gmxrtp(t_atoms
*pdba
)
379 for (i
= 0; (i
< pdba
->nres
); i
++)
381 if (pdba
->resinfo
[i
].rtp
== nullptr)
383 pdba
->resinfo
[i
].rtp
= pdba
->resinfo
[i
].name
;
388 static void rename_pdbres(t_atoms
*pdba
, const char *oldnm
, const char *newnm
,
389 gmx_bool bFullCompare
, t_symtab
*symtab
)
394 for (i
= 0; (i
< pdba
->nres
); i
++)
396 resnm
= *pdba
->resinfo
[i
].name
;
397 if ((bFullCompare
&& (gmx_strcasecmp(resnm
, oldnm
) == 0)) ||
398 (!bFullCompare
&& strstr(resnm
, oldnm
) != nullptr))
400 /* Rename the residue name (not the rtp name) */
401 pdba
->resinfo
[i
].name
= put_symtab(symtab
, newnm
);
406 static void rename_bb(t_atoms
*pdba
, const char *oldnm
, const char *newnm
,
407 gmx_bool bFullCompare
, t_symtab
*symtab
)
412 for (i
= 0; (i
< pdba
->nres
); i
++)
414 /* We have not set the rtp name yes, use the residue name */
415 bbnm
= *pdba
->resinfo
[i
].name
;
416 if ((bFullCompare
&& (gmx_strcasecmp(bbnm
, oldnm
) == 0)) ||
417 (!bFullCompare
&& strstr(bbnm
, oldnm
) != nullptr))
419 /* Change the rtp builing block name */
420 pdba
->resinfo
[i
].rtp
= put_symtab(symtab
, newnm
);
425 static void rename_bbint(t_atoms
*pdba
, const char *oldnm
,
426 const char *gettp(int, int, const rtprename_t
*),
427 gmx_bool bFullCompare
,
429 int nrr
, const rtprename_t
*rr
)
435 for (i
= 0; i
< pdba
->nres
; i
++)
437 /* We have not set the rtp name yes, use the residue name */
438 bbnm
= *pdba
->resinfo
[i
].name
;
439 if ((bFullCompare
&& (strcmp(bbnm
, oldnm
) == 0)) ||
440 (!bFullCompare
&& strstr(bbnm
, oldnm
) != nullptr))
442 ptr
= gettp(i
, nrr
, rr
);
443 pdba
->resinfo
[i
].rtp
= put_symtab(symtab
, ptr
);
448 static void check_occupancy(t_atoms
*atoms
, const char *filename
, gmx_bool bVerbose
)
454 ftp
= fn2ftp(filename
);
455 if (!atoms
->pdbinfo
|| ((ftp
!= efPDB
) && (ftp
!= efBRK
) && (ftp
!= efENT
)))
457 fprintf(stderr
, "No occupancies in %s\n", filename
);
461 for (i
= 0; (i
< atoms
->nr
); i
++)
463 if (atoms
->pdbinfo
[i
].occup
!= 1)
467 fprintf(stderr
, "Occupancy for atom %s%d-%s is %f rather than 1\n",
468 *atoms
->resinfo
[atoms
->atom
[i
].resind
].name
,
469 atoms
->resinfo
[ atoms
->atom
[i
].resind
].nr
,
471 atoms
->pdbinfo
[i
].occup
);
473 if (atoms
->pdbinfo
[i
].occup
== 0)
483 if (nzero
== atoms
->nr
)
485 fprintf(stderr
, "All occupancy fields zero. This is probably not an X-Ray structure\n");
487 else if ((nzero
> 0) || (nnotone
> 0))
491 "WARNING: there were %d atoms with zero occupancy and %d atoms with\n"
492 " occupancy unequal to one (out of %d atoms). Check your pdb file.\n"
494 nzero
, nnotone
, atoms
->nr
);
498 fprintf(stderr
, "All occupancies are one\n");
503 static void write_posres(char *fn
, t_atoms
*pdba
, real fc
)
508 fp
= gmx_fio_fopen(fn
, "w");
510 "; In this topology include file, you will find position restraint\n"
511 "; entries for all the heavy atoms in your original pdb file.\n"
512 "; This means that all the protons which were added by pdb2gmx are\n"
513 "; not restrained.\n"
515 "[ position_restraints ]\n"
516 "; %4s%6s%8s%8s%8s\n", "atom", "type", "fx", "fy", "fz"
518 for (i
= 0; (i
< pdba
->nr
); i
++)
520 if (!is_hydrogen(*pdba
->atomname
[i
]) && !is_dummymass(*pdba
->atomname
[i
]))
522 fprintf(fp
, "%6d%6d %g %g %g\n", i
+1, 1, fc
, fc
, fc
);
528 static int read_pdball(const char *inf
, const char *outf
, char *title
,
529 t_atoms
*atoms
, rvec
**x
,
530 int *ePBC
, matrix box
, gmx_bool bRemoveH
,
531 t_symtab
*symtab
, gmx_residuetype_t
*rt
, const char *watres
,
532 gmx_atomprop_t aps
, gmx_bool bVerbose
)
533 /* Read a pdb file. (containing proteins) */
535 int natom
, new_natom
, i
;
538 printf("Reading %s...\n", inf
);
541 read_tps_conf(inf
, top
, ePBC
, x
, nullptr, box
, FALSE
);
542 strncpy(title
, *top
->name
, STRLEN
);
543 title
[STRLEN
-1] = '\0';
547 if (atoms
->pdbinfo
== nullptr)
549 snew(atoms
->pdbinfo
, atoms
->nr
);
551 if (fn2ftp(inf
) == efPDB
)
553 get_pdb_atomnumber(atoms
, aps
);
558 for (i
= 0; i
< atoms
->nr
; i
++)
560 if (!is_hydrogen(*atoms
->atomname
[i
]))
562 atoms
->atom
[new_natom
] = atoms
->atom
[i
];
563 atoms
->atomname
[new_natom
] = atoms
->atomname
[i
];
564 atoms
->pdbinfo
[new_natom
] = atoms
->pdbinfo
[i
];
565 copy_rvec((*x
)[i
], (*x
)[new_natom
]);
569 atoms
->nr
= new_natom
;
576 printf(" '%s',", title
);
578 printf(" %d atoms\n", natom
);
580 /* Rename residues */
581 rename_pdbres(atoms
, "HOH", watres
, FALSE
, symtab
);
582 rename_pdbres(atoms
, "SOL", watres
, FALSE
, symtab
);
583 rename_pdbres(atoms
, "WAT", watres
, FALSE
, symtab
);
585 rename_atoms("xlateat.dat", nullptr,
586 atoms
, symtab
, nullptr, TRUE
, rt
, TRUE
, bVerbose
);
595 write_sto_conf(outf
, title
, atoms
, *x
, nullptr, *ePBC
, box
);
601 static void process_chain(t_atoms
*pdba
, rvec
*x
,
602 gmx_bool bTrpU
, gmx_bool bPheU
, gmx_bool bTyrU
,
603 gmx_bool bLysMan
, gmx_bool bAspMan
, gmx_bool bGluMan
,
604 gmx_bool bHisMan
, gmx_bool bArgMan
, gmx_bool bGlnMan
,
605 real angle
, real distance
, t_symtab
*symtab
,
606 int nrr
, const rtprename_t
*rr
)
608 /* Rename aromatics, lys, asp and histidine */
611 rename_bb(pdba
, "TYR", "TYRU", FALSE
, symtab
);
615 rename_bb(pdba
, "TRP", "TRPU", FALSE
, symtab
);
619 rename_bb(pdba
, "PHE", "PHEU", FALSE
, symtab
);
623 rename_bbint(pdba
, "LYS", get_lystp
, FALSE
, symtab
, nrr
, rr
);
627 rename_bbint(pdba
, "ARG", get_argtp
, FALSE
, symtab
, nrr
, rr
);
631 rename_bbint(pdba
, "GLN", get_glntp
, FALSE
, symtab
, nrr
, rr
);
635 rename_bbint(pdba
, "ASP", get_asptp
, FALSE
, symtab
, nrr
, rr
);
639 rename_bb(pdba
, "ASPH", "ASP", FALSE
, symtab
);
643 rename_bbint(pdba
, "GLU", get_glutp
, FALSE
, symtab
, nrr
, rr
);
647 rename_bb(pdba
, "GLUH", "GLU", FALSE
, symtab
);
652 set_histp(pdba
, x
, angle
, distance
);
656 rename_bbint(pdba
, "HIS", get_histp
, TRUE
, symtab
, nrr
, rr
);
659 /* Initialize the rtp builing block names with the residue names
660 * for the residues that have not been processed above.
662 pdbres_to_gmxrtp(pdba
);
664 /* Now we have all rtp names set.
665 * The rtp names will conform to Gromacs naming,
666 * unless the input pdb file contained one or more force field specific
667 * rtp names as residue names.
671 /* struct for sorting the atoms from the pdb file */
673 int resnr
; /* residue number */
674 int j
; /* database order index */
675 int index
; /* original atom number */
676 char anm1
; /* second letter of atom name */
677 char altloc
; /* alternate location indicator */
680 static int pdbicomp(const void *a
, const void *b
)
685 pa
= (t_pdbindex
*)a
;
686 pb
= (t_pdbindex
*)b
;
688 d
= (pa
->resnr
- pb
->resnr
);
694 d
= (pa
->anm1
- pb
->anm1
);
697 d
= (pa
->altloc
- pb
->altloc
);
705 static void sort_pdbatoms(t_restp restp
[],
706 int natoms
, t_atoms
**pdbaptr
, rvec
**x
,
707 t_blocka
*block
, char ***gnames
)
709 t_atoms
*pdba
, *pdbnew
;
723 for (i
= 0; i
< natoms
; i
++)
725 atomnm
= *pdba
->atomname
[i
];
726 rptr
= &restp
[pdba
->atom
[i
].resind
];
727 for (j
= 0; (j
< rptr
->natom
); j
++)
729 if (gmx_strcasecmp(atomnm
, *(rptr
->atomname
[j
])) == 0)
734 if (j
== rptr
->natom
)
739 "Atom %s in residue %s %d was not found in rtp entry %s with %d atoms\n"
740 "while sorting atoms.\n%s", atomnm
,
741 *pdba
->resinfo
[pdba
->atom
[i
].resind
].name
,
742 pdba
->resinfo
[pdba
->atom
[i
].resind
].nr
,
745 is_hydrogen(atomnm
) ?
746 "\nFor a hydrogen, this can be a different protonation state, or it\n"
747 "might have had a different number in the PDB file and was rebuilt\n"
748 "(it might for instance have been H3, and we only expected H1 & H2).\n"
749 "Note that hydrogens might have been added to the entry for the N-terminus.\n"
750 "Remove this hydrogen or choose a different protonation state to solve it.\n"
751 "Option -ignh will ignore all hydrogens in the input." : ".");
752 gmx_fatal(FARGS
, buf
);
754 /* make shadow array to be sorted into indexgroup */
755 pdbi
[i
].resnr
= pdba
->atom
[i
].resind
;
758 pdbi
[i
].anm1
= atomnm
[1];
759 pdbi
[i
].altloc
= pdba
->pdbinfo
[i
].altloc
;
761 qsort(pdbi
, natoms
, (size_t)sizeof(pdbi
[0]), pdbicomp
);
763 /* pdba is sorted in pdbnew using the pdbi index */
766 init_t_atoms(pdbnew
, natoms
, TRUE
);
768 pdbnew
->nr
= pdba
->nr
;
769 pdbnew
->nres
= pdba
->nres
;
770 sfree(pdbnew
->resinfo
);
771 pdbnew
->resinfo
= pdba
->resinfo
;
772 for (i
= 0; i
< natoms
; i
++)
774 pdbnew
->atom
[i
] = pdba
->atom
[pdbi
[i
].index
];
775 pdbnew
->atomname
[i
] = pdba
->atomname
[pdbi
[i
].index
];
776 pdbnew
->pdbinfo
[i
] = pdba
->pdbinfo
[pdbi
[i
].index
];
777 copy_rvec((*x
)[pdbi
[i
].index
], (*xnew
)[i
]);
778 /* make indexgroup in block */
779 a
[i
] = pdbi
[i
].index
;
782 sfree(pdba
->atomname
);
784 sfree(pdba
->pdbinfo
);
787 /* copy the sorted pdbnew back to pdba */
790 add_grp(block
, gnames
, natoms
, a
, "prot_sort");
796 static int remove_duplicate_atoms(t_atoms
*pdba
, rvec x
[], gmx_bool bVerbose
)
798 int i
, j
, oldnatoms
, ndel
;
801 printf("Checking for duplicate atoms....\n");
802 oldnatoms
= pdba
->nr
;
804 /* NOTE: pdba->nr is modified inside the loop */
805 for (i
= 1; (i
< pdba
->nr
); i
++)
807 /* compare 'i' and 'i-1', throw away 'i' if they are identical
808 this is a 'while' because multiple alternate locations can be present */
809 while ( (i
< pdba
->nr
) &&
810 (pdba
->atom
[i
-1].resind
== pdba
->atom
[i
].resind
) &&
811 (strcmp(*pdba
->atomname
[i
-1], *pdba
->atomname
[i
]) == 0) )
816 ri
= &pdba
->resinfo
[pdba
->atom
[i
].resind
];
817 printf("deleting duplicate atom %4s %s%4d%c",
818 *pdba
->atomname
[i
], *ri
->name
, ri
->nr
, ri
->ic
);
819 if (ri
->chainid
&& (ri
->chainid
!= ' '))
821 printf(" ch %c", ri
->chainid
);
825 if (pdba
->pdbinfo
[i
].atomnr
)
827 printf(" pdb nr %4d", pdba
->pdbinfo
[i
].atomnr
);
829 if (pdba
->pdbinfo
[i
].altloc
&& (pdba
->pdbinfo
[i
].altloc
!= ' '))
831 printf(" altloc %c", pdba
->pdbinfo
[i
].altloc
);
837 /* We can not free, since it might be in the symtab */
838 /* sfree(pdba->atomname[i]); */
839 for (j
= i
; j
< pdba
->nr
; j
++)
841 pdba
->atom
[j
] = pdba
->atom
[j
+1];
842 pdba
->atomname
[j
] = pdba
->atomname
[j
+1];
845 pdba
->pdbinfo
[j
] = pdba
->pdbinfo
[j
+1];
847 copy_rvec(x
[j
+1], x
[j
]);
849 srenew(pdba
->atom
, pdba
->nr
);
850 /* srenew(pdba->atomname, pdba->nr); */
851 srenew(pdba
->pdbinfo
, pdba
->nr
);
854 if (pdba
->nr
!= oldnatoms
)
856 printf("Now there are %d atoms. Deleted %d duplicates.\n", pdba
->nr
, ndel
);
862 static void find_nc_ter(t_atoms
*pdba
, int r0
, int r1
, int *r_start
, int *r_end
,
863 gmx_residuetype_t
*rt
)
866 const char *p_startrestype
;
867 const char *p_restype
;
868 int nstartwarn
, nendwarn
;
876 /* Find the starting terminus (typially N or 5') */
877 for (i
= r0
; i
< r1
&& *r_start
== -1; i
++)
879 gmx_residuetype_get_type(rt
, *pdba
->resinfo
[i
].name
, &p_startrestype
);
880 if (!gmx_strcasecmp(p_startrestype
, "Protein") || !gmx_strcasecmp(p_startrestype
, "DNA") || !gmx_strcasecmp(p_startrestype
, "RNA") )
882 printf("Identified residue %s%d as a starting terminus.\n", *pdba
->resinfo
[i
].name
, pdba
->resinfo
[i
].nr
);
889 printf("Warning: Starting residue %s%d in chain not identified as Protein/RNA/DNA.\n", *pdba
->resinfo
[i
].name
, pdba
->resinfo
[i
].nr
);
893 printf("More than 5 unidentified residues at start of chain - disabling further warnings.\n");
901 /* Go through the rest of the residues, check that they are the same class, and identify the ending terminus. */
902 for (i
= *r_start
; i
< r1
; i
++)
904 gmx_residuetype_get_type(rt
, *pdba
->resinfo
[i
].name
, &p_restype
);
905 if (!gmx_strcasecmp(p_restype
, p_startrestype
) && nendwarn
== 0)
913 printf("Warning: Residue %s%d in chain has different type (%s) from starting residue %s%d (%s).\n",
914 *pdba
->resinfo
[i
].name
, pdba
->resinfo
[i
].nr
, p_restype
,
915 *pdba
->resinfo
[*r_start
].name
, pdba
->resinfo
[*r_start
].nr
, p_startrestype
);
919 printf("More than 5 unidentified residues at end of chain - disabling further warnings.\n");
928 printf("Identified residue %s%d as a ending terminus.\n", *pdba
->resinfo
[*r_end
].name
, pdba
->resinfo
[*r_end
].nr
);
942 static SplittingType
getSplittingType(const char *chainsep
)
944 SplittingType splitting
= SPLIT_TER_ONLY
; /* keep compiler happy */
946 /* Be a bit flexible to catch typos */
947 if (!strncmp(chainsep
, "id_o", 4))
949 /* For later interactive splitting we tentatively assign new chain numbers at either changing id or ter records */
950 splitting
= SPLIT_ID_OR_TER
;
951 printf("Splitting chemical chains based on TER records or chain id changing.\n");
953 else if (!strncmp(chainsep
, "int", 3))
955 /* For later interactive splitting we tentatively assign new chain numbers at either changing id or ter records */
956 splitting
= SPLIT_INTERACTIVE
;
957 printf("Splitting chemical chains interactively.\n");
959 else if (!strncmp(chainsep
, "id_a", 4))
961 splitting
= SPLIT_ID_AND_TER
;
962 printf("Splitting chemical chains based on TER records and chain id changing.\n");
964 else if (strlen(chainsep
) == 2 && !strncmp(chainsep
, "id", 4))
966 splitting
= SPLIT_ID_ONLY
;
967 printf("Splitting chemical chains based on changing chain id only (ignoring TER records).\n");
969 else if (chainsep
[0] == 't')
971 splitting
= SPLIT_TER_ONLY
;
972 printf("Splitting chemical chains based on TER records only (ignoring chain id).\n");
976 gmx_fatal(FARGS
, "Unidentified setting for chain separation: %s\n", chainsep
);
982 modify_chain_numbers(t_atoms
* pdba
,
983 const char * chainsep
)
986 char old_prev_chainid
;
987 char old_this_chainid
;
988 int old_prev_chainnum
;
989 int old_this_chainnum
;
995 const char * prev_atomname
;
996 const char * this_atomname
;
997 const char * prev_resname
;
998 const char * this_resname
;
1004 SplittingType splitting
= getSplittingType(chainsep
);
1006 /* The default chain enumeration is based on TER records only, which is reflected in chainnum below */
1008 old_prev_chainid
= '?';
1009 old_prev_chainnum
= -1;
1012 this_atomname
= nullptr;
1014 this_resname
= nullptr;
1018 for (i
= 0; i
< pdba
->nres
; i
++)
1020 ri
= &pdba
->resinfo
[i
];
1021 old_this_chainid
= ri
->chainid
;
1022 old_this_chainnum
= ri
->chainnum
;
1024 prev_atomname
= this_atomname
;
1025 prev_atomnum
= this_atomnum
;
1026 prev_resname
= this_resname
;
1027 prev_resnum
= this_resnum
;
1028 prev_chainid
= this_chainid
;
1030 this_atomname
= *(pdba
->atomname
[i
]);
1031 this_atomnum
= (pdba
->pdbinfo
!= nullptr) ? pdba
->pdbinfo
[i
].atomnr
: i
+1;
1032 this_resname
= *ri
->name
;
1033 this_resnum
= ri
->nr
;
1034 this_chainid
= ri
->chainid
;
1038 case SPLIT_ID_OR_TER
:
1039 if (old_this_chainid
!= old_prev_chainid
|| old_this_chainnum
!= old_prev_chainnum
)
1045 case SPLIT_ID_AND_TER
:
1046 if (old_this_chainid
!= old_prev_chainid
&& old_this_chainnum
!= old_prev_chainnum
)
1053 if (old_this_chainid
!= old_prev_chainid
)
1059 case SPLIT_TER_ONLY
:
1060 if (old_this_chainnum
!= old_prev_chainnum
)
1065 case SPLIT_INTERACTIVE
:
1066 if (old_this_chainid
!= old_prev_chainid
|| old_this_chainnum
!= old_prev_chainnum
)
1070 printf("Split the chain (and introduce termini) between residue %s%d (chain id '%c', atom %d %s)\n"
1071 "and residue %s%d (chain id '%c', atom %d %s) ? [n/y]\n",
1072 prev_resname
, prev_resnum
, prev_chainid
, prev_atomnum
, prev_atomname
,
1073 this_resname
, this_resnum
, this_chainid
, this_atomnum
, this_atomname
);
1075 if (nullptr == fgets(select
, STRLEN
-1, stdin
))
1077 gmx_fatal(FARGS
, "Error reading from stdin");
1080 if (i
== 0 || select
[0] == 'y')
1087 gmx_fatal(FARGS
, "Internal inconsistency - this shouldn't happen...");
1090 old_prev_chainid
= old_this_chainid
;
1091 old_prev_chainnum
= old_this_chainnum
;
1093 ri
->chainnum
= new_chainnum
;
1122 int gmx_pdb2gmx(int argc
, char *argv
[])
1124 const char *desc
[] = {
1125 "[THISMODULE] reads a [REF].pdb[ref] (or [REF].gro[ref]) file, reads",
1126 "some database files, adds hydrogens to the molecules and generates",
1127 "coordinates in GROMACS (GROMOS), or optionally [REF].pdb[ref], format",
1128 "and a topology in GROMACS format.",
1129 "These files can subsequently be processed to generate a run input file.",
1131 "[THISMODULE] will search for force fields by looking for",
1132 "a [TT]forcefield.itp[tt] file in subdirectories [TT]<forcefield>.ff[tt]",
1133 "of the current working directory and of the GROMACS library directory",
1134 "as inferred from the path of the binary or the [TT]GMXLIB[tt] environment",
1136 "By default the forcefield selection is interactive,",
1137 "but you can use the [TT]-ff[tt] option to specify one of the short names",
1138 "in the list on the command line instead. In that case [THISMODULE] just looks",
1139 "for the corresponding [TT]<forcefield>.ff[tt] directory.",
1141 "After choosing a force field, all files will be read only from",
1142 "the corresponding force field directory.",
1143 "If you want to modify or add a residue types, you can copy the force",
1144 "field directory from the GROMACS library directory to your current",
1145 "working directory. If you want to add new protein residue types,",
1146 "you will need to modify [TT]residuetypes.dat[tt] in the library directory",
1147 "or copy the whole library directory to a local directory and set",
1148 "the environment variable [TT]GMXLIB[tt] to the name of that directory.",
1149 "Check Chapter 5 of the manual for more information about file formats.",
1152 "Note that a [REF].pdb[ref] file is nothing more than a file format, and it",
1153 "need not necessarily contain a protein structure. Every kind of",
1154 "molecule for which there is support in the database can be converted.",
1155 "If there is no support in the database, you can add it yourself.[PAR]",
1157 "The program has limited intelligence, it reads a number of database",
1158 "files, that allow it to make special bonds (Cys-Cys, Heme-His, etc.),",
1159 "if necessary this can be done manually. The program can prompt the",
1160 "user to select which kind of LYS, ASP, GLU, CYS or HIS residue is",
1161 "desired. For Lys the choice is between neutral (two protons on NZ) or",
1162 "protonated (three protons, default), for Asp and Glu unprotonated",
1163 "(default) or protonated, for His the proton can be either on ND1,",
1164 "on NE2 or on both. By default these selections are done automatically.",
1165 "For His, this is based on an optimal hydrogen bonding",
1166 "conformation. Hydrogen bonds are defined based on a simple geometric",
1167 "criterion, specified by the maximum hydrogen-donor-acceptor angle",
1168 "and donor-acceptor distance, which are set by [TT]-angle[tt] and",
1169 "[TT]-dist[tt] respectively.[PAR]",
1171 "The protonation state of N- and C-termini can be chosen interactively",
1172 "with the [TT]-ter[tt] flag. Default termini are ionized (NH3+ and COO-),",
1173 "respectively. Some force fields support zwitterionic forms for chains of",
1174 "one residue, but for polypeptides these options should NOT be selected.",
1175 "The AMBER force fields have unique forms for the terminal residues,",
1176 "and these are incompatible with the [TT]-ter[tt] mechanism. You need",
1177 "to prefix your N- or C-terminal residue names with \"N\" or \"C\"",
1178 "respectively to use these forms, making sure you preserve the format",
1179 "of the coordinate file. Alternatively, use named terminating residues",
1180 "(e.g. ACE, NME).[PAR]",
1182 "The separation of chains is not entirely trivial since the markup",
1183 "in user-generated PDB files frequently varies and sometimes it",
1184 "is desirable to merge entries across a TER record, for instance",
1185 "if you want a disulfide bridge or distance restraints between",
1186 "two protein chains or if you have a HEME group bound to a protein.",
1187 "In such cases multiple chains should be contained in a single",
1188 "[TT]moleculetype[tt] definition.",
1189 "To handle this, [THISMODULE] uses two separate options.",
1190 "First, [TT]-chainsep[tt] allows you to choose when a new chemical chain should",
1191 "start, and termini added when applicable. This can be done based on the",
1192 "existence of TER records, when the chain id changes, or combinations of either",
1193 "or both of these. You can also do the selection fully interactively.",
1194 "In addition, there is a [TT]-merge[tt] option that controls how multiple chains",
1195 "are merged into one moleculetype, after adding all the chemical termini (or not).",
1196 "This can be turned off (no merging), all non-water chains can be merged into a",
1197 "single molecule, or the selection can be done interactively.[PAR]",
1199 "[THISMODULE] will also check the occupancy field of the [REF].pdb[ref] file.",
1200 "If any of the occupancies are not one, indicating that the atom is",
1201 "not resolved well in the structure, a warning message is issued.",
1202 "When a [REF].pdb[ref] file does not originate from an X-ray structure determination",
1203 "all occupancy fields may be zero. Either way, it is up to the user",
1204 "to verify the correctness of the input data (read the article!).[PAR]",
1206 "During processing the atoms will be reordered according to GROMACS",
1207 "conventions. With [TT]-n[tt] an index file can be generated that",
1208 "contains one group reordered in the same way. This allows you to",
1209 "convert a GROMOS trajectory and coordinate file to GROMOS. There is",
1210 "one limitation: reordering is done after the hydrogens are stripped",
1211 "from the input and before new hydrogens are added. This means that",
1212 "you should not use [TT]-ignh[tt].[PAR]",
1214 "The [REF].gro[ref] and [TT].g96[tt] file formats do not support chain",
1215 "identifiers. Therefore it is useful to enter a [REF].pdb[ref] file name at",
1216 "the [TT]-o[tt] option when you want to convert a multi-chain [REF].pdb[ref] file.",
1219 "The option [TT]-vsite[tt] removes hydrogen and fast improper dihedral",
1220 "motions. Angular and out-of-plane motions can be removed by changing",
1221 "hydrogens into virtual sites and fixing angles, which fixes their",
1222 "position relative to neighboring atoms. Additionally, all atoms in the",
1223 "aromatic rings of the standard amino acids (i.e. PHE, TRP, TYR and HIS)",
1224 "can be converted into virtual sites, eliminating the fast improper dihedral",
1225 "fluctuations in these rings. [BB]Note[bb] that in this case all other hydrogen",
1226 "atoms are also converted to virtual sites. The mass of all atoms that are",
1227 "converted into virtual sites, is added to the heavy atoms.[PAR]",
1228 "Also slowing down of dihedral motion can be done with [TT]-heavyh[tt]",
1229 "done by increasing the hydrogen-mass by a factor of 4. This is also",
1230 "done for water hydrogens to slow down the rotational motion of water.",
1231 "The increase in mass of the hydrogens is subtracted from the bonded",
1232 "(heavy) atom so that the total mass of the system remains the same."
1236 FILE *fp
, *top_file
, *top_file2
, *itp_file
= nullptr;
1238 t_atoms pdba_all
, *pdba
;
1242 int chain
, nch
, maxch
, nwaterchain
;
1244 t_chain
*chains
, *cc
;
1245 char select
[STRLEN
];
1253 int i
, j
, k
, l
, nrtp
;
1254 int *swap_index
, si
;
1258 gpp_atomtype_t atype
;
1259 gmx_residuetype_t
*rt
;
1261 char fn
[256], itp_fn
[STRLEN
], posre_fn
[STRLEN
], buf_fn
[STRLEN
];
1262 char molname
[STRLEN
], title
[STRLEN
];
1263 char *c
, forcefield
[STRLEN
], ffdir
[STRLEN
];
1264 char ffname
[STRLEN
], suffix
[STRLEN
], buf
[STRLEN
];
1272 rtprename_t
*rtprename
= nullptr;
1273 int nah
, nNtdb
, nCtdb
, ntdblist
;
1274 t_hackblock
*ntdb
, *ctdb
, **tdblist
;
1278 gmx_bool bVsites
= FALSE
, bWat
, bPrevWat
= FALSE
, bITP
, bVsiteAromatics
= FALSE
;
1280 t_hackblock
*hb_chain
;
1281 t_restp
*restp_chain
;
1282 gmx_output_env_t
*oenv
;
1283 const char *p_restype
;
1287 const char * prev_atomname
;
1288 const char * this_atomname
;
1289 const char * prev_resname
;
1290 const char * this_resname
;
1295 int prev_chainnumber
;
1296 int this_chainnumber
;
1298 int this_chainstart
;
1299 int prev_chainstart
;
1306 { efSTX
, "-f", "eiwit.pdb", ffREAD
},
1307 { efSTO
, "-o", "conf", ffWRITE
},
1308 { efTOP
, nullptr, nullptr, ffWRITE
},
1309 { efITP
, "-i", "posre", ffWRITE
},
1310 { efNDX
, "-n", "clean", ffOPTWR
},
1311 { efSTO
, "-q", "clean.pdb", ffOPTWR
}
1313 #define NFILE asize(fnm)
1315 gmx_bool bNewRTP
= FALSE
;
1316 gmx_bool bInter
= FALSE
, bCysMan
= FALSE
;
1317 gmx_bool bLysMan
= FALSE
, bAspMan
= FALSE
, bGluMan
= FALSE
, bHisMan
= FALSE
;
1318 gmx_bool bGlnMan
= FALSE
, bArgMan
= FALSE
;
1319 gmx_bool bTerMan
= FALSE
, bUnA
= FALSE
, bHeavyH
= FALSE
;
1320 gmx_bool bSort
= TRUE
, bAllowMissing
= FALSE
, bRemoveH
= FALSE
;
1321 gmx_bool bDeuterate
= FALSE
, bVerbose
= FALSE
, bChargeGroups
= TRUE
, bCmap
= TRUE
;
1322 gmx_bool bRenumRes
= FALSE
, bRTPresname
= FALSE
;
1323 real angle
= 135.0, distance
= 0.3, posre_fc
= 1000;
1324 real long_bond_dist
= 0.25, short_bond_dist
= 0.05;
1325 const char *vsitestr
[] = { nullptr, "none", "hydrogens", "aromatics", nullptr };
1326 const char *watstr
[] = { nullptr, "select", "none", "spc", "spce", "tip3p", "tip4p", "tip5p", "tips3p", nullptr };
1327 const char *chainsep
[] = { nullptr, "id_or_ter", "id_and_ter", "ter", "id", "interactive", nullptr };
1328 const char *merge
[] = {nullptr, "no", "all", "interactive", nullptr };
1329 const char *ff
= "select";
1332 { "-newrtp", FALSE
, etBOOL
, {&bNewRTP
},
1333 "HIDDENWrite the residue database in new format to [TT]new.rtp[tt]"},
1334 { "-lb", FALSE
, etREAL
, {&long_bond_dist
},
1335 "HIDDENLong bond warning distance" },
1336 { "-sb", FALSE
, etREAL
, {&short_bond_dist
},
1337 "HIDDENShort bond warning distance" },
1338 { "-chainsep", FALSE
, etENUM
, {chainsep
},
1339 "Condition in PDB files when a new chain should be started (adding termini)" },
1340 { "-merge", FALSE
, etENUM
, {&merge
},
1341 "Merge multiple chains into a single [moleculetype]" },
1342 { "-ff", FALSE
, etSTR
, {&ff
},
1343 "Force field, interactive by default. Use [TT]-h[tt] for information." },
1344 { "-water", FALSE
, etENUM
, {watstr
},
1345 "Water model to use" },
1346 { "-inter", FALSE
, etBOOL
, {&bInter
},
1347 "Set the next 8 options to interactive"},
1348 { "-ss", FALSE
, etBOOL
, {&bCysMan
},
1349 "Interactive SS bridge selection" },
1350 { "-ter", FALSE
, etBOOL
, {&bTerMan
},
1351 "Interactive termini selection, instead of charged (default)" },
1352 { "-lys", FALSE
, etBOOL
, {&bLysMan
},
1353 "Interactive lysine selection, instead of charged" },
1354 { "-arg", FALSE
, etBOOL
, {&bArgMan
},
1355 "Interactive arginine selection, instead of charged" },
1356 { "-asp", FALSE
, etBOOL
, {&bAspMan
},
1357 "Interactive aspartic acid selection, instead of charged" },
1358 { "-glu", FALSE
, etBOOL
, {&bGluMan
},
1359 "Interactive glutamic acid selection, instead of charged" },
1360 { "-gln", FALSE
, etBOOL
, {&bGlnMan
},
1361 "Interactive glutamine selection, instead of neutral" },
1362 { "-his", FALSE
, etBOOL
, {&bHisMan
},
1363 "Interactive histidine selection, instead of checking H-bonds" },
1364 { "-angle", FALSE
, etREAL
, {&angle
},
1365 "Minimum hydrogen-donor-acceptor angle for a H-bond (degrees)" },
1366 { "-dist", FALSE
, etREAL
, {&distance
},
1367 "Maximum donor-acceptor distance for a H-bond (nm)" },
1368 { "-una", FALSE
, etBOOL
, {&bUnA
},
1369 "Select aromatic rings with united CH atoms on phenylalanine, "
1370 "tryptophane and tyrosine" },
1371 { "-sort", FALSE
, etBOOL
, {&bSort
},
1372 "HIDDENSort the residues according to database, turning this off is dangerous as charge groups might be broken in parts" },
1373 { "-ignh", FALSE
, etBOOL
, {&bRemoveH
},
1374 "Ignore hydrogen atoms that are in the coordinate file" },
1375 { "-missing", FALSE
, etBOOL
, {&bAllowMissing
},
1376 "Continue when atoms are missing, dangerous" },
1377 { "-v", FALSE
, etBOOL
, {&bVerbose
},
1378 "Be slightly more verbose in messages" },
1379 { "-posrefc", FALSE
, etREAL
, {&posre_fc
},
1380 "Force constant for position restraints" },
1381 { "-vsite", FALSE
, etENUM
, {vsitestr
},
1382 "Convert atoms to virtual sites" },
1383 { "-heavyh", FALSE
, etBOOL
, {&bHeavyH
},
1384 "Make hydrogen atoms heavy" },
1385 { "-deuterate", FALSE
, etBOOL
, {&bDeuterate
},
1386 "Change the mass of hydrogens to 2 amu" },
1387 { "-chargegrp", TRUE
, etBOOL
, {&bChargeGroups
},
1388 "Use charge groups in the [REF].rtp[ref] file" },
1389 { "-cmap", TRUE
, etBOOL
, {&bCmap
},
1390 "Use cmap torsions (if enabled in the [REF].rtp[ref] file)" },
1391 { "-renum", TRUE
, etBOOL
, {&bRenumRes
},
1392 "Renumber the residues consecutively in the output" },
1393 { "-rtpres", TRUE
, etBOOL
, {&bRTPresname
},
1394 "Use [REF].rtp[ref] entry names as residue names" }
1396 #define NPARGS asize(pa)
1398 if (!parse_common_args(&argc
, argv
, 0, NFILE
, fnm
, asize(pa
), pa
, asize(desc
), desc
,
1404 /* Force field selection, interactive or direct */
1405 choose_ff(strcmp(ff
, "select") == 0 ? nullptr : ff
,
1406 forcefield
, sizeof(forcefield
),
1407 ffdir
, sizeof(ffdir
));
1409 if (strlen(forcefield
) > 0)
1411 strcpy(ffname
, forcefield
);
1412 ffname
[0] = toupper(ffname
[0]);
1416 gmx_fatal(FARGS
, "Empty forcefield string");
1419 printf("\nUsing the %s force field in directory %s\n\n",
1422 choose_watermodel(watstr
[0], ffdir
, &watermodel
);
1426 /* if anything changes here, also change description of -inter */
1441 else if (bDeuterate
)
1450 /* parse_common_args ensures vsitestr has been selected, but
1451 clang-static-analyzer needs clues to know that */
1452 GMX_ASSERT(vsitestr
[0], "-vsite default wasn't processed correctly");
1453 switch (vsitestr
[0][0])
1455 case 'n': /* none */
1457 bVsiteAromatics
= FALSE
;
1459 case 'h': /* hydrogens */
1461 bVsiteAromatics
= FALSE
;
1463 case 'a': /* aromatics */
1465 bVsiteAromatics
= TRUE
;
1468 gmx_fatal(FARGS
, "DEATH HORROR in $s (%d): vsitestr[0]='%s'",
1469 __FILE__
, __LINE__
, vsitestr
[0]);
1472 /* Open the symbol table */
1473 open_symtab(&symtab
);
1475 /* Residue type database */
1476 gmx_residuetype_init(&rt
);
1478 /* Read residue renaming database(s), if present */
1479 nrrn
= fflib_search_file_end(ffdir
, ".r2b", FALSE
, &rrn
);
1482 rtprename
= nullptr;
1483 for (i
= 0; i
< nrrn
; i
++)
1485 fp
= fflib_open(rrn
[i
]);
1486 read_rtprename(rrn
[i
], fp
, &nrtprename
, &rtprename
);
1492 /* Add all alternative names from the residue renaming database to the list of recognized amino/nucleic acids. */
1493 for (i
= 0; i
< nrtprename
; i
++)
1495 rc
= gmx_residuetype_get_type(rt
, rtprename
[i
].gmx
, &p_restype
);
1497 /* Only add names if the 'standard' gromacs/iupac base name was found */
1500 gmx_residuetype_add(rt
, rtprename
[i
].main
, p_restype
);
1501 gmx_residuetype_add(rt
, rtprename
[i
].nter
, p_restype
);
1502 gmx_residuetype_add(rt
, rtprename
[i
].cter
, p_restype
);
1503 gmx_residuetype_add(rt
, rtprename
[i
].bter
, p_restype
);
1508 if (watermodel
!= nullptr && (strstr(watermodel
, "4p") ||
1509 strstr(watermodel
, "4P")))
1513 else if (watermodel
!= nullptr && (strstr(watermodel
, "5p") ||
1514 strstr(watermodel
, "5P")))
1523 aps
= gmx_atomprop_init();
1524 natom
= read_pdball(opt2fn("-f", NFILE
, fnm
), opt2fn_null("-q", NFILE
, fnm
), title
,
1525 &pdba_all
, &pdbx
, &ePBC
, box
, bRemoveH
, &symtab
, rt
, watres
,
1530 gmx_fatal(FARGS
, "No atoms found in pdb file %s\n", opt2fn("-f", NFILE
, fnm
));
1533 printf("Analyzing pdb file\n");
1536 modify_chain_numbers(&pdba_all
, chainsep
[0]);
1540 this_atomname
= nullptr;
1542 this_resname
= nullptr;
1545 this_chainnumber
= -1;
1546 this_chainstart
= 0;
1547 /* Keep the compiler happy */
1548 prev_chainstart
= 0;
1552 snew(pdb_ch
, maxch
);
1555 for (i
= 0; (i
< natom
); i
++)
1557 ri
= &pdba_all
.resinfo
[pdba_all
.atom
[i
].resind
];
1559 /* TODO this should live in a helper object, and consolidate
1560 that with code in modify_chain_numbers */
1561 prev_atomname
= this_atomname
;
1562 prev_atomnum
= this_atomnum
;
1563 prev_resname
= this_resname
;
1564 prev_resnum
= this_resnum
;
1565 prev_chainid
= this_chainid
;
1566 prev_chainnumber
= this_chainnumber
;
1569 prev_chainstart
= this_chainstart
;
1572 this_atomname
= *pdba_all
.atomname
[i
];
1573 this_atomnum
= (pdba_all
.pdbinfo
!= nullptr) ? pdba_all
.pdbinfo
[i
].atomnr
: i
+1;
1574 this_resname
= *ri
->name
;
1575 this_resnum
= ri
->nr
;
1576 this_chainid
= ri
->chainid
;
1577 this_chainnumber
= ri
->chainnum
;
1579 bWat
= gmx_strcasecmp(*ri
->name
, watres
) == 0;
1580 if ((i
== 0) || (this_chainnumber
!= prev_chainnumber
) || (bWat
!= bPrevWat
))
1582 this_chainstart
= pdba_all
.atom
[i
].resind
;
1587 if (!strncmp(merge
[0], "int", 3))
1589 printf("Merge chain ending with residue %s%d (chain id '%c', atom %d %s) and chain starting with\n"
1590 "residue %s%d (chain id '%c', atom %d %s) into a single moleculetype (keeping termini)? [n/y]\n",
1591 prev_resname
, prev_resnum
, prev_chainid
, prev_atomnum
, prev_atomname
,
1592 this_resname
, this_resnum
, this_chainid
, this_atomnum
, this_atomname
);
1594 if (nullptr == fgets(select
, STRLEN
-1, stdin
))
1596 gmx_fatal(FARGS
, "Error reading from stdin");
1598 bMerged
= (select
[0] == 'y');
1600 else if (!strncmp(merge
[0], "all", 3))
1608 pdb_ch
[nch
-1].chainstart
[pdb_ch
[nch
-1].nterpairs
] =
1609 pdba_all
.atom
[i
].resind
- prev_chainstart
;
1610 pdb_ch
[nch
-1].nterpairs
++;
1611 srenew(pdb_ch
[nch
-1].chainstart
, pdb_ch
[nch
-1].nterpairs
+1);
1616 /* set natom for previous chain */
1619 pdb_ch
[nch
-1].natom
= i
-pdb_ch
[nch
-1].start
;
1626 /* check if chain identifier was used before */
1627 for (j
= 0; (j
< nch
); j
++)
1629 if (pdb_ch
[j
].chainid
!= ' ' && pdb_ch
[j
].chainid
== ri
->chainid
)
1631 printf("WARNING: Chain identifier '%c' is used in two non-sequential blocks.\n"
1632 "They will be treated as separate chains unless you reorder your file.\n",
1636 // TODO This is too convoluted. Use a std::vector
1640 srenew(pdb_ch
, maxch
);
1642 pdb_ch
[nch
].chainid
= ri
->chainid
;
1643 pdb_ch
[nch
].chainnum
= ri
->chainnum
;
1644 pdb_ch
[nch
].start
= i
;
1645 pdb_ch
[nch
].bAllWat
= bWat
;
1648 pdb_ch
[nch
].nterpairs
= 0;
1652 pdb_ch
[nch
].nterpairs
= 1;
1654 snew(pdb_ch
[nch
].chainstart
, pdb_ch
[nch
].nterpairs
+1);
1655 /* modified [nch] to [0] below */
1656 pdb_ch
[nch
].chainstart
[0] = 0;
1662 pdb_ch
[nch
-1].natom
= natom
-pdb_ch
[nch
-1].start
;
1664 /* set all the water blocks at the end of the chain */
1665 snew(swap_index
, nch
);
1667 for (i
= 0; i
< nch
; i
++)
1669 if (!pdb_ch
[i
].bAllWat
)
1675 for (i
= 0; i
< nch
; i
++)
1677 if (pdb_ch
[i
].bAllWat
)
1683 if (nwaterchain
> 1)
1685 printf("Moved all the water blocks to the end\n");
1689 /* copy pdb data and x for all chains */
1690 for (i
= 0; (i
< nch
); i
++)
1693 chains
[i
].chainid
= pdb_ch
[si
].chainid
;
1694 chains
[i
].chainnum
= pdb_ch
[si
].chainnum
;
1695 chains
[i
].bAllWat
= pdb_ch
[si
].bAllWat
;
1696 chains
[i
].nterpairs
= pdb_ch
[si
].nterpairs
;
1697 chains
[i
].chainstart
= pdb_ch
[si
].chainstart
;
1698 snew(chains
[i
].ntdb
, pdb_ch
[si
].nterpairs
);
1699 snew(chains
[i
].ctdb
, pdb_ch
[si
].nterpairs
);
1700 snew(chains
[i
].r_start
, pdb_ch
[si
].nterpairs
);
1701 snew(chains
[i
].r_end
, pdb_ch
[si
].nterpairs
);
1703 snew(chains
[i
].pdba
, 1);
1704 init_t_atoms(chains
[i
].pdba
, pdb_ch
[si
].natom
, TRUE
);
1705 snew(chains
[i
].x
, chains
[i
].pdba
->nr
);
1706 for (j
= 0; j
< chains
[i
].pdba
->nr
; j
++)
1708 chains
[i
].pdba
->atom
[j
] = pdba_all
.atom
[pdb_ch
[si
].start
+j
];
1709 snew(chains
[i
].pdba
->atomname
[j
], 1);
1710 *chains
[i
].pdba
->atomname
[j
] =
1711 gmx_strdup(*pdba_all
.atomname
[pdb_ch
[si
].start
+j
]);
1712 chains
[i
].pdba
->pdbinfo
[j
] = pdba_all
.pdbinfo
[pdb_ch
[si
].start
+j
];
1713 copy_rvec(pdbx
[pdb_ch
[si
].start
+j
], chains
[i
].x
[j
]);
1715 /* Re-index the residues assuming that the indices are continuous */
1716 k
= chains
[i
].pdba
->atom
[0].resind
;
1717 nres
= chains
[i
].pdba
->atom
[chains
[i
].pdba
->nr
-1].resind
- k
+ 1;
1718 chains
[i
].pdba
->nres
= nres
;
1719 for (j
= 0; j
< chains
[i
].pdba
->nr
; j
++)
1721 chains
[i
].pdba
->atom
[j
].resind
-= k
;
1723 srenew(chains
[i
].pdba
->resinfo
, nres
);
1724 for (j
= 0; j
< nres
; j
++)
1726 chains
[i
].pdba
->resinfo
[j
] = pdba_all
.resinfo
[k
+j
];
1727 snew(chains
[i
].pdba
->resinfo
[j
].name
, 1);
1728 *chains
[i
].pdba
->resinfo
[j
].name
= gmx_strdup(*pdba_all
.resinfo
[k
+j
].name
);
1729 /* make all chain identifiers equal to that of the chain */
1730 chains
[i
].pdba
->resinfo
[j
].chainid
= pdb_ch
[si
].chainid
;
1734 if (nchainmerges
> 0)
1736 printf("\nMerged chains into joint molecule definitions at %d places.\n\n",
1740 printf("There are %d chains and %d blocks of water and "
1741 "%d residues with %d atoms\n",
1742 nch
-nwaterchain
, nwaterchain
,
1743 pdba_all
.nres
, natom
);
1745 printf("\n %5s %4s %6s\n", "chain", "#res", "#atoms");
1746 for (i
= 0; (i
< nch
); i
++)
1748 printf(" %d '%c' %5d %6d %s\n",
1749 i
+1, chains
[i
].chainid
? chains
[i
].chainid
: '-',
1750 chains
[i
].pdba
->nres
, chains
[i
].pdba
->nr
,
1751 chains
[i
].bAllWat
? "(only water)" : "");
1755 check_occupancy(&pdba_all
, opt2fn("-f", NFILE
, fnm
), bVerbose
);
1757 /* Read atomtypes... */
1758 atype
= read_atype(ffdir
, &symtab
);
1760 /* read residue database */
1761 printf("Reading residue database... (%s)\n", forcefield
);
1762 nrtpf
= fflib_search_file_end(ffdir
, ".rtp", TRUE
, &rtpf
);
1765 for (i
= 0; i
< nrtpf
; i
++)
1767 read_resall(rtpf
[i
], &nrtp
, &restp
, atype
, &symtab
, FALSE
);
1773 /* Not correct with multiple rtp input files with different bonded types */
1774 fp
= gmx_fio_fopen("new.rtp", "w");
1775 print_resall(fp
, nrtp
, restp
, atype
);
1779 /* read hydrogen database */
1780 nah
= read_h_db(ffdir
, &ah
);
1782 /* Read Termini database... */
1783 nNtdb
= read_ter_db(ffdir
, 'n', &ntdb
, atype
);
1784 nCtdb
= read_ter_db(ffdir
, 'c', &ctdb
, atype
);
1786 top_fn
= ftp2fn(efTOP
, NFILE
, fnm
);
1787 top_file
= gmx_fio_fopen(top_fn
, "w");
1789 print_top_header(top_file
, top_fn
, FALSE
, ffdir
, mHmult
);
1795 for (chain
= 0; (chain
< nch
); chain
++)
1797 cc
= &(chains
[chain
]);
1799 /* set pdba, natom and nres to the current chain */
1802 natom
= cc
->pdba
->nr
;
1803 nres
= cc
->pdba
->nres
;
1805 if (cc
->chainid
&& ( cc
->chainid
!= ' ' ) )
1807 printf("Processing chain %d '%c' (%d atoms, %d residues)\n",
1808 chain
+1, cc
->chainid
, natom
, nres
);
1812 printf("Processing chain %d (%d atoms, %d residues)\n",
1813 chain
+1, natom
, nres
);
1816 process_chain(pdba
, x
, bUnA
, bUnA
, bUnA
, bLysMan
, bAspMan
, bGluMan
,
1817 bHisMan
, bArgMan
, bGlnMan
, angle
, distance
, &symtab
,
1818 nrtprename
, rtprename
);
1820 cc
->chainstart
[cc
->nterpairs
] = pdba
->nres
;
1822 for (i
= 0; i
< cc
->nterpairs
; i
++)
1824 find_nc_ter(pdba
, cc
->chainstart
[i
], cc
->chainstart
[i
+1],
1825 &(cc
->r_start
[j
]), &(cc
->r_end
[j
]), rt
);
1827 if (cc
->r_start
[j
] >= 0 && cc
->r_end
[j
] >= 0)
1833 if (cc
->nterpairs
== 0)
1835 printf("Problem with chain definition, or missing terminal residues.\n"
1836 "This chain does not appear to contain a recognized chain molecule.\n"
1837 "If this is incorrect, you can edit residuetypes.dat to modify the behavior.\n");
1840 /* Check for disulfides and other special bonds */
1841 nssbonds
= mk_specbonds(pdba
, x
, bCysMan
, &ssbonds
, bVerbose
);
1845 rename_resrtp(pdba
, cc
->nterpairs
, cc
->r_start
, cc
->r_end
, nrtprename
, rtprename
,
1853 sprintf(fn
, "chain.pdb");
1857 sprintf(fn
, "chain_%c%d.pdb", cc
->chainid
, cc
->chainnum
);
1859 write_sto_conf(fn
, title
, pdba
, x
, nullptr, ePBC
, box
);
1863 for (i
= 0; i
< cc
->nterpairs
; i
++)
1867 * We first apply a filter so we only have the
1868 * termini that can be applied to the residue in question
1869 * (or a generic terminus if no-residue specific is available).
1871 /* First the N terminus */
1874 tdblist
= filter_ter(nNtdb
, ntdb
,
1875 *pdba
->resinfo
[cc
->r_start
[i
]].name
,
1879 printf("No suitable end (N or 5') terminus found in database - assuming this residue\n"
1880 "is already in a terminus-specific form and skipping terminus selection.\n");
1881 cc
->ntdb
[i
] = nullptr;
1885 if (bTerMan
&& ntdblist
> 1)
1887 sprintf(select
, "Select start terminus type for %s-%d",
1888 *pdba
->resinfo
[cc
->r_start
[i
]].name
,
1889 pdba
->resinfo
[cc
->r_start
[i
]].nr
);
1890 cc
->ntdb
[i
] = choose_ter(ntdblist
, tdblist
, select
);
1894 cc
->ntdb
[i
] = tdblist
[0];
1897 printf("Start terminus %s-%d: %s\n",
1898 *pdba
->resinfo
[cc
->r_start
[i
]].name
,
1899 pdba
->resinfo
[cc
->r_start
[i
]].nr
,
1900 (cc
->ntdb
[i
])->name
);
1906 cc
->ntdb
[i
] = nullptr;
1909 /* And the C terminus */
1912 tdblist
= filter_ter(nCtdb
, ctdb
,
1913 *pdba
->resinfo
[cc
->r_end
[i
]].name
,
1917 printf("No suitable end (C or 3') terminus found in database - assuming this residue\n"
1918 "is already in a terminus-specific form and skipping terminus selection.\n");
1919 cc
->ctdb
[i
] = nullptr;
1923 if (bTerMan
&& ntdblist
> 1)
1925 sprintf(select
, "Select end terminus type for %s-%d",
1926 *pdba
->resinfo
[cc
->r_end
[i
]].name
,
1927 pdba
->resinfo
[cc
->r_end
[i
]].nr
);
1928 cc
->ctdb
[i
] = choose_ter(ntdblist
, tdblist
, select
);
1932 cc
->ctdb
[i
] = tdblist
[0];
1934 printf("End terminus %s-%d: %s\n",
1935 *pdba
->resinfo
[cc
->r_end
[i
]].name
,
1936 pdba
->resinfo
[cc
->r_end
[i
]].nr
,
1937 (cc
->ctdb
[i
])->name
);
1943 cc
->ctdb
[i
] = nullptr;
1946 /* lookup hackblocks and rtp for all residues */
1947 get_hackblocks_rtp(&hb_chain
, &restp_chain
,
1948 nrtp
, restp
, pdba
->nres
, pdba
->resinfo
,
1949 cc
->nterpairs
, cc
->ntdb
, cc
->ctdb
, cc
->r_start
, cc
->r_end
);
1950 /* ideally, now we would not need the rtp itself anymore, but do
1951 everything using the hb and restp arrays. Unfortunately, that
1952 requires some re-thinking of code in gen_vsite.c, which I won't
1953 do now :( AF 26-7-99 */
1955 rename_atoms(nullptr, ffdir
,
1956 pdba
, &symtab
, restp_chain
, FALSE
, rt
, FALSE
, bVerbose
);
1958 match_atomnames_with_rtp(restp_chain
, hb_chain
, pdba
, x
, bVerbose
);
1962 block
= new_blocka();
1964 sort_pdbatoms(restp_chain
, natom
, &pdba
, &x
, block
, &gnames
);
1965 remove_duplicate_atoms(pdba
, x
, bVerbose
);
1966 if (ftp2bSet(efNDX
, NFILE
, fnm
))
1970 fprintf(stderr
, "WARNING: with the -remh option the generated "
1971 "index file (%s) might be useless\n"
1972 "(the index file is generated before hydrogens are added)",
1973 ftp2fn(efNDX
, NFILE
, fnm
));
1975 write_index(ftp2fn(efNDX
, NFILE
, fnm
), block
, gnames
, FALSE
, 0);
1977 for (i
= 0; i
< block
->nr
; i
++)
1986 fprintf(stderr
, "WARNING: "
1987 "without sorting no check for duplicate atoms can be done\n");
1990 /* Generate Hydrogen atoms (and termini) in the sequence */
1991 printf("Generating any missing hydrogen atoms and/or adding termini.\n");
1992 natom
= add_h(&pdba
, &x
, nah
, ah
,
1993 cc
->nterpairs
, cc
->ntdb
, cc
->ctdb
, cc
->r_start
, cc
->r_end
, bAllowMissing
,
1994 nullptr, nullptr, TRUE
, FALSE
);
1995 printf("Now there are %d residues with %d atoms\n",
1996 pdba
->nres
, pdba
->nr
);
1999 write_pdbfile(debug
, title
, pdba
, x
, ePBC
, box
, ' ', 0, nullptr, TRUE
);
2004 for (i
= 0; (i
< natom
); i
++)
2006 fprintf(debug
, "Res %s%d atom %d %s\n",
2007 *(pdba
->resinfo
[pdba
->atom
[i
].resind
].name
),
2008 pdba
->resinfo
[pdba
->atom
[i
].resind
].nr
, i
+1, *pdba
->atomname
[i
]);
2012 strcpy(posre_fn
, ftp2fn(efITP
, NFILE
, fnm
));
2014 /* make up molecule name(s) */
2016 k
= (cc
->nterpairs
> 0 && cc
->r_start
[0] >= 0) ? cc
->r_start
[0] : 0;
2018 gmx_residuetype_get_type(rt
, *pdba
->resinfo
[k
].name
, &p_restype
);
2024 sprintf(molname
, "Water");
2028 this_chainid
= cc
->chainid
;
2030 /* Add the chain id if we have one */
2031 if (this_chainid
!= ' ')
2033 sprintf(buf
, "_chain_%c", this_chainid
);
2034 strcat(suffix
, buf
);
2037 /* Check if there have been previous chains with the same id */
2039 for (k
= 0; k
< chain
; k
++)
2041 if (cc
->chainid
== chains
[k
].chainid
)
2046 /* Add the number for this chain identifier if there are multiple copies */
2050 sprintf(buf
, "%d", nid_used
+1);
2051 strcat(suffix
, buf
);
2054 if (strlen(suffix
) > 0)
2056 sprintf(molname
, "%s%s", p_restype
, suffix
);
2060 strcpy(molname
, p_restype
);
2064 if ((nch
-nwaterchain
> 1) && !cc
->bAllWat
)
2067 strcpy(itp_fn
, top_fn
);
2068 printf("Chain time...\n");
2069 c
= strrchr(itp_fn
, '.');
2070 sprintf(c
, "_%s.itp", molname
);
2071 c
= strrchr(posre_fn
, '.');
2072 sprintf(c
, "_%s.itp", molname
);
2073 if (strcmp(itp_fn
, posre_fn
) == 0)
2075 strcpy(buf_fn
, posre_fn
);
2076 c
= strrchr(buf_fn
, '.');
2078 sprintf(posre_fn
, "%s_pr.itp", buf_fn
);
2082 srenew(incls
, nincl
);
2083 incls
[nincl
-1] = gmx_strdup(itp_fn
);
2084 itp_file
= gmx_fio_fopen(itp_fn
, "w");
2091 srenew(mols
, nmol
+1);
2094 mols
[nmol
].name
= gmx_strdup("SOL");
2095 mols
[nmol
].nr
= pdba
->nres
;
2099 mols
[nmol
].name
= gmx_strdup(molname
);
2106 print_top_comment(itp_file
, itp_fn
, ffdir
, TRUE
);
2111 top_file2
= nullptr;
2116 top_file2
= itp_file
;
2120 top_file2
= top_file
;
2123 pdb2top(top_file2
, posre_fn
, molname
, pdba
, &x
, atype
, &symtab
,
2125 restp_chain
, hb_chain
,
2127 bVsites
, bVsiteAromatics
, ffdir
,
2128 mHmult
, nssbonds
, ssbonds
,
2129 long_bond_dist
, short_bond_dist
, bDeuterate
, bChargeGroups
, bCmap
,
2130 bRenumRes
, bRTPresname
);
2134 write_posres(posre_fn
, pdba
, posre_fc
);
2139 gmx_fio_fclose(itp_file
);
2142 /* pdba and natom have been reassigned somewhere so: */
2148 if (cc
->chainid
== ' ')
2150 sprintf(fn
, "chain.pdb");
2154 sprintf(fn
, "chain_%c.pdb", cc
->chainid
);
2156 write_sto_conf(fn
, "", pdba
, x
, nullptr, ePBC
, box
);
2160 if (watermodel
== nullptr)
2162 for (chain
= 0; chain
< nch
; chain
++)
2164 if (chains
[chain
].bAllWat
)
2166 gmx_fatal(FARGS
, "You have chosen not to include a water model, but there is water in the input file. Select a water model or remove the water from your input file.");
2172 sprintf(buf_fn
, "%s%c%s.itp", ffdir
, DIR_SEPARATOR
, watermodel
);
2173 if (!fflib_fexist(buf_fn
))
2175 gmx_fatal(FARGS
, "The topology file '%s' for the selected water model '%s' can not be found in the force field directory. Select a different water model.",
2176 buf_fn
, watermodel
);
2180 print_top_mols(top_file
, title
, ffdir
, watermodel
, nincl
, incls
, nmol
, mols
);
2181 gmx_fio_fclose(top_file
);
2183 gmx_residuetype_destroy(rt
);
2185 /* now merge all chains back together */
2188 for (i
= 0; (i
< nch
); i
++)
2190 natom
+= chains
[i
].pdba
->nr
;
2191 nres
+= chains
[i
].pdba
->nres
;
2194 init_t_atoms(atoms
, natom
, FALSE
);
2195 for (i
= 0; i
< atoms
->nres
; i
++)
2197 sfree(atoms
->resinfo
[i
].name
);
2199 sfree(atoms
->resinfo
);
2201 snew(atoms
->resinfo
, nres
);
2205 for (i
= 0; (i
< nch
); i
++)
2209 printf("Including chain %d in system: %d atoms %d residues\n",
2210 i
+1, chains
[i
].pdba
->nr
, chains
[i
].pdba
->nres
);
2212 for (j
= 0; (j
< chains
[i
].pdba
->nr
); j
++)
2214 atoms
->atom
[k
] = chains
[i
].pdba
->atom
[j
];
2215 atoms
->atom
[k
].resind
+= l
; /* l is processed nr of residues */
2216 atoms
->atomname
[k
] = chains
[i
].pdba
->atomname
[j
];
2217 atoms
->resinfo
[atoms
->atom
[k
].resind
].chainid
= chains
[i
].chainid
;
2218 copy_rvec(chains
[i
].x
[j
], x
[k
]);
2221 for (j
= 0; (j
< chains
[i
].pdba
->nres
); j
++)
2223 atoms
->resinfo
[l
] = chains
[i
].pdba
->resinfo
[j
];
2226 atoms
->resinfo
[l
].name
= atoms
->resinfo
[l
].rtp
;
2234 fprintf(stderr
, "Now there are %d atoms and %d residues\n", k
, l
);
2235 print_sums(atoms
, TRUE
);
2238 fprintf(stderr
, "\nWriting coordinate file...\n");
2239 clear_rvec(box_space
);
2242 make_new_box(atoms
->nr
, x
, box
, box_space
, FALSE
);
2244 write_sto_conf(ftp2fn(efSTO
, NFILE
, fnm
), title
, atoms
, x
, nullptr, ePBC
, box
);
2246 printf("\t\t--------- PLEASE NOTE ------------\n");
2247 printf("You have successfully generated a topology from: %s.\n",
2248 opt2fn("-f", NFILE
, fnm
));
2249 if (watermodel
!= nullptr)
2251 printf("The %s force field and the %s water model are used.\n",
2252 ffname
, watermodel
);
2256 printf("The %s force field is used.\n",
2259 printf("\t\t--------- ETON ESAELP ------------\n");