3 * This source code is part of
7 * GROningen MAchine for Chemical Simulations
10 * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
11 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
12 * Copyright (c) 2001-2004, The GROMACS development team,
13 * check out http://www.gromacs.org for more information.
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version 2
18 * of the License, or (at your option) any later version.
20 * If you want to redistribute modifications, please consider that
21 * scientific software is very special. Version control is crucial -
22 * bugs must be traceable. We will be happy to consider code for
23 * inclusion in the official distribution, but derived work must not
24 * be called official GROMACS. Details are found in the README & COPYING
25 * files - if they are missing, get the official version at www.gromacs.org.
27 * To help us fund GROMACS development, we humbly ask that you cite
28 * the papers on the package - you can find them in the top README file.
30 * For more info, check our website at http://www.gromacs.org
33 * Green Red Orange Magenta Azure Cyan Skyblue
51 #include "gmx_fatal.h"
54 int gmx_genpr(int argc
,char *argv
[])
56 const char *desc
[] = {
57 "[TT]genrestr[tt] produces an include file for a topology containing",
58 "a list of atom numbers and three force constants for the",
59 "[IT]x[it]-, [IT]y[it]-, and [IT]z[it]-direction. A single isotropic force constant may",
60 "be given on the command line instead of three components.[PAR]",
61 "WARNING: position restraints only work for the one molecule at a time.",
62 "Position restraints are interactions within molecules, therefore",
63 "they should be included within the correct [TT][ moleculetype ][tt]",
64 "block in the topology. Since the atom numbers in every moleculetype",
65 "in the topology start at 1 and the numbers in the input file for",
66 "[TT]genrestr[tt] number consecutively from 1, [TT]genrestr[tt] will only",
67 "produce a useful file for the first molecule.[PAR]",
68 "The [TT]-of[tt] option produces an index file that can be used for",
69 "freezing atoms. In this case, the input file must be a [TT].pdb[tt] file.[PAR]",
70 "With the [TT]-disre[tt] option, half a matrix of distance restraints",
71 "is generated instead of position restraints. With this matrix, that",
72 "one typically would apply to C[GRK]alpha[grk] atoms in a protein, one can",
73 "maintain the overall conformation of a protein without tieing it to",
74 "a specific position (as with position restraints)."
76 static rvec fc
={1000.0,1000.0,1000.0};
77 static real freeze_level
= 0.0;
78 static real disre_dist
= 0.1;
79 static real disre_frac
= 0.0;
80 static real disre_up2
= 1.0;
81 static gmx_bool bDisre
=FALSE
;
82 static gmx_bool bConstr
=FALSE
;
83 static real cutoff
= -1.0;
86 { "-fc", FALSE
, etRVEC
, {fc
},
87 "Force constants (kJ/mol nm^2)" },
88 { "-freeze", FALSE
, etREAL
, {&freeze_level
},
89 "If the [TT]-of[tt] option or this one is given an index file will be written containing atom numbers of all atoms that have a B-factor less than the level given here" },
90 { "-disre", FALSE
, etBOOL
, {&bDisre
},
91 "Generate a distance restraint matrix for all the atoms in index" },
92 { "-disre_dist", FALSE
, etREAL
, {&disre_dist
},
93 "Distance range around the actual distance for generating distance restraints" },
94 { "-disre_frac", FALSE
, etREAL
, {&disre_frac
},
95 "Fraction of distance to be used as interval rather than a fixed distance. If the fraction of the distance that you specify here is less than the distance given in the previous option, that one is used instead." },
96 { "-disre_up2", FALSE
, etREAL
, {&disre_up2
},
97 "Distance between upper bound for distance restraints, and the distance at which the force becomes constant (see manual)" },
98 { "-cutoff", FALSE
, etREAL
, {&cutoff
},
99 "Only generate distance restraints for atoms pairs within cutoff (nm)" },
100 { "-constr", FALSE
, etBOOL
, {&bConstr
},
101 "Generate a constraint matrix rather than distance restraints. Constraints of type 2 will be generated that do generate exclusions." }
103 #define npargs asize(pa)
112 const char *xfn
,*nfn
;
117 rvec dx
,*x
=NULL
,*v
=NULL
;
120 { efSTX
, "-f", NULL
, ffREAD
},
121 { efNDX
, "-n", NULL
, ffOPTRD
},
122 { efITP
, "-o", "posre", ffWRITE
},
123 { efNDX
, "-of", "freeze", ffOPTWR
}
125 #define NFILE asize(fnm)
127 CopyRight(stderr
,argv
[0]);
128 parse_common_args(&argc
,argv
,0,NFILE
,fnm
,npargs
,pa
,
129 asize(desc
),desc
,0,NULL
,&oenv
);
131 bFreeze
= opt2bSet("-of",NFILE
,fnm
) || opt2parg_bSet("-freeze",asize(pa
),pa
);
132 bDisre
= bDisre
|| opt2parg_bSet("-disre_dist",npargs
,pa
);
133 xfn
= opt2fn_null("-f",NFILE
,fnm
);
134 nfn
= opt2fn_null("-n",NFILE
,fnm
);
136 if (( nfn
== NULL
) && ( xfn
== NULL
))
137 gmx_fatal(FARGS
,"no index file and no structure file suplied");
139 if ((disre_frac
< 0) || (disre_frac
>= 1))
140 gmx_fatal(FARGS
,"disre_frac should be between 0 and 1");
142 gmx_fatal(FARGS
,"disre_dist should be >= 0");
146 get_stx_coordnum(xfn
,&(atoms
->nr
));
147 init_t_atoms(atoms
,atoms
->nr
,TRUE
);
150 fprintf(stderr
,"\nReading structure file\n");
151 read_stx_conf(xfn
,title
,atoms
,x
,v
,NULL
,box
);
155 if (!atoms
|| !atoms
->pdbinfo
)
156 gmx_fatal(FARGS
,"No B-factors in input file %s, use a pdb file next time.",
159 out
=opt2FILE("-of",NFILE
,fnm
,"w");
160 fprintf(out
,"[ freeze ]\n");
161 for(i
=0; (i
<atoms
->nr
); i
++) {
162 if (atoms
->pdbinfo
[i
].bfac
<= freeze_level
)
163 fprintf(out
,"%d\n",i
+1);
167 else if ((bDisre
|| bConstr
) && x
) {
168 printf("Select group to generate %s matrix from\n",
169 bConstr
? "constraint" : "distance restraint");
170 get_index(atoms
,nfn
,1,&igrp
,&ind_grp
,&gn_grp
);
172 out
=ftp2FILE(efITP
,NFILE
,fnm
,"w");
174 fprintf(out
,"; constraints for %s of %s\n\n",gn_grp
,title
);
175 fprintf(out
,"[ constraints ]\n");
176 fprintf(out
,";%4s %5s %1s %10s\n","i","j","tp","dist");
179 fprintf(out
,"; distance restraints for %s of %s\n\n",gn_grp
,title
);
180 fprintf(out
,"[ distance_restraints ]\n");
181 fprintf(out
,";%4s %5s %1s %5s %10s %10s %10s %10s %10s\n","i","j","?",
182 "label","funct","lo","up1","up2","weight");
184 for(i
=k
=0; i
<igrp
; i
++)
185 for(j
=i
+1; j
<igrp
; j
++,k
++) {
186 rvec_sub(x
[ind_grp
[i
]],x
[ind_grp
[j
]],dx
);
189 fprintf(out
,"%5d %5d %1d %10g\n",ind_grp
[i
]+1,ind_grp
[j
]+1,2,d
);
191 if (cutoff
< 0 || d
< cutoff
)
194 dd
= min(disre_dist
,disre_frac
*d
);
199 fprintf(out
,"%5d %5d %1d %5d %10d %10g %10g %10g %10g\n",
200 ind_grp
[i
]+1,ind_grp
[j
]+1,1,k
,1,
208 printf("Select group to position restrain\n");
209 get_index(atoms
,nfn
,1,&igrp
,&ind_grp
,&gn_grp
);
211 out
=ftp2FILE(efITP
,NFILE
,fnm
,"w");
212 fprintf(out
,"; position restraints for %s of %s\n\n",gn_grp
,title
);
213 fprintf(out
,"[ position_restraints ]\n");
214 fprintf(out
,";%3s %5s %9s %10s %10s\n","i","funct","fcx","fcy","fcz");
215 for(i
=0; i
<igrp
; i
++)
216 fprintf(out
,"%4d %4d %10g %10g %10g\n",
217 ind_grp
[i
]+1,1,fc
[XX
],fc
[YY
],fc
[ZZ
]);