From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Nov 10 13:10:13 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 760991065694 for ; Wed, 10 Nov 2010 13:10:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4A2988FC26 for ; Wed, 10 Nov 2010 13:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oAADACke072194 for ; Wed, 10 Nov 2010 13:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oAADACbw072192; Wed, 10 Nov 2010 13:10:12 GMT (envelope-from gnats) Date: Wed, 10 Nov 2010 13:10:12 GMT Message-Id: <201011101310.oAADACbw072192@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Florian Smeets Cc: Subject: Re: ports/151888: [MAINTAINER] science/gromacs: update to 4.5.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Florian Smeets List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Nov 2010 13:10:13 -0000 The following reply was made to PR ports/151888; it has been noted by GNATS. From: Florian Smeets To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151888: [MAINTAINER] science/gromacs: update to 4.5.2 Date: Wed, 10 Nov 2010 14:09:43 +0100 This is a multi-part message in MIME format. --------------070003000502090903050405 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Here is an updated patch for version 4.5.3 -- Florian Smeets --------------070003000502090903050405 Content-Type: text/plain; x-mac-type="0"; x-mac-creator="0"; name="gromacs-4.5.3.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="gromacs-4.5.3.diff" diff -ruN --exclude=CVS /usr/local/tinderbox/portstrees/FreeBSD/ports/science/gromacs.orig/Makefile /usr/local/tinderbox/portstrees/FreeBSD/ports/science/gromacs/Makefile --- /usr/local/tinderbox/portstrees/FreeBSD/ports/science/gromacs.orig/Makefile 2010-09-27 15:04:14.000000000 +0200 +++ /usr/local/tinderbox/portstrees/FreeBSD/ports/science/gromacs/Makefile 2010-11-10 09:52:50.000000000 +0100 @@ -6,8 +6,7 @@ # PORTNAME= gromacs -PORTVERSION= 4.0.7 -PORTREVISION= 1 +PORTVERSION= 4.5.3 CATEGORIES= science MASTER_SITES= ftp://ftp.gromacs.org/pub/gromacs/ @@ -33,6 +32,14 @@ .include +.if ${ARCH} == i386 +CONFIGURE_ARGS+= --disable-ia32-sse +.endif + +.if ${OSVERSION} < 700000 +CONFIGURE_ARGS+= --disable-ia32-sse --disable-x86-64-sse +.endif + .if !defined(WITHOUT_FFTW3) && defined(WITH_FFTW2) IGNORE= cannot build with FFTW3 and FFTW2. Run 'make config' again and choose only one of them .endif @@ -100,13 +107,14 @@ PLIST_SUB+= SUFFIX_MPI="" MPI="@comment " .endif -MAN1= anadock.1 \ - do_dssp.1 \ +MAN1= do_dssp.1 \ editconf.1 \ eneconv.1 \ + g_anadock.1 \ g_anaeig.1 \ g_analyze.1 \ g_angle.1 \ + g_bar.1 \ g_bond.1 \ g_bundle.1 \ g_chi.1 \ @@ -131,9 +139,9 @@ g_hbond.1 \ g_helix.1 \ g_helixorient.1 \ - g_kinetics.1 \ g_lie.1 \ g_mdmat.1 \ + g_membed.1 \ g_mindist.1 \ g_morph.1 \ g_msd.1 \ @@ -144,26 +152,32 @@ g_polystat.1 \ g_potential.1 \ g_principal.1 \ + g_protonate.1 \ g_rama.1 \ g_rdf.1 \ g_rms.1 \ g_rmsdist.1 \ g_rmsf.1 \ g_rotacf.1 \ + g_rotmat.1 \ g_saltbr.1 \ g_sas.1 \ - g_sdf.1 \ + g_select.1 \ g_sgangle.1 \ g_sham.1 \ + g_sigeps.1 \ g_sorient.1 \ g_spatial.1 \ g_spol.1 \ g_tcaf.1 \ g_traj.1 \ + g_tune_pme.1 \ g_vanhove.1 \ g_velacc.1 \ g_wham.1 \ - gen_table.1 \ + g_wheel.1 \ + g_x2top.1 \ + g_xrama.1 \ genbox.1 \ genconf.1 \ genion.1 \ @@ -171,22 +185,18 @@ gmxcheck.1 \ gmxdump.1 \ grompp.1 \ - highway.1 \ make_edi.1 \ make_ndx.1 \ mdrun.1 \ mk_angndx.1 \ ngmx.1 \ pdb2gmx.1 \ - protonate.1 \ - sigeps.1 \ tpbconv.1 \ trjcat.1 \ trjconv.1 \ trjorder.1 \ - wheel.1 \ - x2top.1 \ - xpm2ps.1 \ - xrama.1 + xpm2ps.1 + +MAN7= gromacs.7 .include diff -ruN --exclude=CVS /usr/local/tinderbox/portstrees/FreeBSD/ports/science/gromacs.orig/distinfo /usr/local/tinderbox/portstrees/FreeBSD/ports/science/gromacs/distinfo --- /usr/local/tinderbox/portstrees/FreeBSD/ports/science/gromacs.orig/distinfo 2009-12-13 01:21:04.000000000 +0100 +++ /usr/local/tinderbox/portstrees/FreeBSD/ports/science/gromacs/distinfo 2010-11-10 09:52:50.000000000 +0100 @@ -1,3 +1,2 @@ -MD5 (gromacs-4.0.7.tar.gz) = 51369bd553e6bba4085a58bcf23d337d -SHA256 (gromacs-4.0.7.tar.gz) = 048f8ece2829f01d99f7e04e1d6e8f88d3a32273192274f2e9fcf71f41f212c1 -SIZE (gromacs-4.0.7.tar.gz) = 8404518 +SHA256 (gromacs-4.5.3.tar.gz) = d298b81b172c2ab36b8fab8f1d3091dc48e283f35a1574bf7f9f0df382074e06 +SIZE (gromacs-4.5.3.tar.gz) = 10338471 diff -ruN --exclude=CVS /usr/local/tinderbox/portstrees/FreeBSD/ports/science/gromacs.orig/pkg-plist /usr/local/tinderbox/portstrees/FreeBSD/ports/science/gromacs/pkg-plist --- /usr/local/tinderbox/portstrees/FreeBSD/ports/science/gromacs.orig/pkg-plist 2009-12-13 01:21:04.000000000 +0100 +++ /usr/local/tinderbox/portstrees/FreeBSD/ports/science/gromacs/pkg-plist 2010-11-10 09:52:50.000000000 +0100 @@ -2,7 +2,6 @@ bin/GMXRC.bash bin/GMXRC.csh bin/GMXRC.zsh -bin/anadock bin/completion.bash bin/completion.csh bin/completion.zsh @@ -10,9 +9,11 @@ bin/do_dssp bin/editconf bin/eneconv +bin/g_anadock bin/g_anaeig bin/g_analyze bin/g_angle +bin/g_bar bin/g_bond bin/g_bundle bin/g_chi @@ -39,7 +40,9 @@ bin/g_helixorient bin/g_kinetics bin/g_lie +bin/g_luck bin/g_mdmat +bin/g_membed bin/g_mindist bin/g_morph bin/g_msd @@ -47,28 +50,36 @@ bin/g_nmens bin/g_nmtraj bin/g_order +bin/g_pme_error bin/g_polystat bin/g_potential bin/g_principal +bin/g_protonate bin/g_rama bin/g_rdf bin/g_rms bin/g_rmsdist bin/g_rmsf bin/g_rotacf +bin/g_rotmat bin/g_saltbr bin/g_sas -bin/g_sdf +bin/g_select bin/g_sgangle bin/g_sham +bin/g_sigeps bin/g_sorient bin/g_spatial bin/g_spol bin/g_tcaf bin/g_traj +bin/g_tune_pme bin/g_vanhove bin/g_velacc bin/g_wham +bin/g_wheel +bin/g_x2top +%%X11%%bin/g_xrama bin/genbox bin/genconf bin/genion @@ -76,25 +87,18 @@ bin/gmxcheck bin/gmxdump bin/grompp -%%X11%%bin/highway -bin/luck bin/make_edi bin/make_ndx bin/mdrun bin/mk_angndx %%X11%%bin/ngmx bin/pdb2gmx -bin/protonate -bin/sigeps bin/tpbconv bin/trjcat bin/trjconv bin/trjorder -bin/wheel -bin/x2top bin/xplor2gmx.pl bin/xpm2ps -%%X11%%bin/xrama include/gromacs/3dview.h include/gromacs/assert.h include/gromacs/atomprop.h @@ -102,12 +106,15 @@ include/gromacs/calcgrid.h include/gromacs/calch.h include/gromacs/calcmu.h +include/gromacs/centerofmass.h +include/gromacs/chargegroup.h include/gromacs/checkpoint.h include/gromacs/confio.h include/gromacs/constr.h include/gromacs/copyrite.h include/gromacs/coulomb.h include/gromacs/dihre.h +include/gromacs/displacement.h include/gromacs/disre.h include/gromacs/do_fit.h include/gromacs/domdec.h @@ -116,45 +123,60 @@ include/gromacs/edsam.h include/gromacs/enxio.h include/gromacs/ffscanf.h -include/gromacs/fftgrid.h include/gromacs/filenm.h include/gromacs/force.h include/gromacs/futil.h include/gromacs/gbutil.h +include/gromacs/gen_ad.h +include/gromacs/genborn.h include/gromacs/gmx_ana.h include/gromacs/gmx_arpack.h include/gromacs/gmx_blas.h include/gromacs/gmx_cyclecounter.h include/gromacs/gmx_fatal.h include/gromacs/gmx_fft.h +include/gromacs/gmx_ga2la.h include/gromacs/gmx_lapack.h +include/gromacs/gmx_matrix.h include/gromacs/gmx_parallel_3dfft.h include/gromacs/gmx_random.h +include/gromacs/gmx_sort.h +include/gromacs/gmx_sse2_double.h +include/gromacs/gmx_sse2_single.h +include/gromacs/gmx_statistics.h include/gromacs/gmx_system_xdr.h -include/gromacs/gmx_thread.h include/gromacs/gmx_wallcycle.h include/gromacs/gmxcomplex.h +include/gromacs/gmxcpp.h include/gromacs/gmxfio.h include/gromacs/gpp_atomtype.h include/gromacs/gpp_nextnb.h include/gromacs/grompp.h include/gromacs/gstat.h +include/gromacs/hackblock.h +include/gromacs/histogram.h include/gromacs/index.h +include/gromacs/indexutil.h +include/gromacs/inputrec.h include/gromacs/invblock.h include/gromacs/macros.h include/gromacs/magic.h include/gromacs/main.h +include/gromacs/mainpage.h include/gromacs/maths.h include/gromacs/matio.h +include/gromacs/md5.h include/gromacs/mdatoms.h include/gromacs/mdebin.h include/gromacs/mdrun.h +include/gromacs/molfile_plugin.h include/gromacs/mpelogging.h include/gromacs/mshift.h include/gromacs/mtop_util.h include/gromacs/mtxio.h include/gromacs/mvdata.h include/gromacs/names.h +include/gromacs/nbsearch.h include/gromacs/network.h include/gromacs/nonbonded.h include/gromacs/nrama.h @@ -162,14 +184,17 @@ include/gromacs/nrnb.h include/gromacs/ns.h include/gromacs/nsgrid.h +include/gromacs/oenv.h include/gromacs/orires.h include/gromacs/partdec.h include/gromacs/pbc.h +include/gromacs/pdb2top.h include/gromacs/pdbio.h -include/gromacs/pdebug.h include/gromacs/perf_est.h include/gromacs/physics.h include/gromacs/pme.h +include/gromacs/poscalc.h +include/gromacs/position.h include/gromacs/pppm.h include/gromacs/princ.h include/gromacs/pull.h @@ -177,29 +202,54 @@ include/gromacs/random.h include/gromacs/rbin.h include/gromacs/rdgroup.h -include/gromacs/readcomp.h include/gromacs/readinp.h -include/gromacs/reorder.h +include/gromacs/resall.h include/gromacs/rmpbc.h +include/gromacs/selection.h +include/gromacs/selmethod.h +include/gromacs/selparam.h +include/gromacs/selvalue.h +include/gromacs/sfactor.h include/gromacs/shellfc.h include/gromacs/shift.h +include/gromacs/sighandler.h include/gromacs/smalloc.h include/gromacs/sortwater.h include/gromacs/sparsematrix.h include/gromacs/split.h include/gromacs/splitter.h -include/gromacs/statusio.h include/gromacs/statutil.h include/gromacs/strdb.h include/gromacs/string2.h -include/gromacs/struc2.h include/gromacs/symtab.h include/gromacs/sysstuff.h -include/gromacs/tags.h include/gromacs/tgroup.h +include/gromacs/thread_mpi.h +include/gromacs/thread_mpi/atomic.h +include/gromacs/thread_mpi/atomic/cycles.h +include/gromacs/thread_mpi/atomic/gcc.h +include/gromacs/thread_mpi/atomic/gcc_ia64.h +include/gromacs/thread_mpi/atomic/gcc_intrinsics.h +include/gromacs/thread_mpi/atomic/gcc_ppc.h +include/gromacs/thread_mpi/atomic/gcc_spinlock.h +include/gromacs/thread_mpi/atomic/gcc_x86.h +include/gromacs/thread_mpi/atomic/msvc.h +include/gromacs/thread_mpi/atomic/xlc_ppc.h +include/gromacs/thread_mpi/barrier.h +include/gromacs/thread_mpi/collective.h +include/gromacs/thread_mpi/event.h +include/gromacs/thread_mpi/hwinfo.h +include/gromacs/thread_mpi/list.h +include/gromacs/thread_mpi/lock.h +include/gromacs/thread_mpi/mpi_bindings.h +include/gromacs/thread_mpi/threads.h +include/gromacs/thread_mpi/tmpi.h +include/gromacs/thread_mpi/wait.h +include/gromacs/tmpi.h include/gromacs/topsort.h +include/gromacs/toputil.h include/gromacs/tpxio.h -include/gromacs/transfer.h +include/gromacs/trajana.h include/gromacs/trnio.h include/gromacs/txtdump.h include/gromacs/typedefs.h @@ -212,6 +262,7 @@ include/gromacs/types/fcdata.h include/gromacs/types/filenm.h include/gromacs/types/forcerec.h +include/gromacs/types/genborn.h include/gromacs/types/graph.h include/gromacs/types/group.h include/gromacs/types/idef.h @@ -221,10 +272,10 @@ include/gromacs/types/matrix.h include/gromacs/types/mdatom.h include/gromacs/types/nblist.h -include/gromacs/types/nbslist.h include/gromacs/types/nrnb.h include/gromacs/types/ns.h include/gromacs/types/nsgrid.h +include/gromacs/types/oenv.h include/gromacs/types/pbc.h include/gromacs/types/qmmmrec.h include/gromacs/types/shellfc.h @@ -234,11 +285,14 @@ include/gromacs/types/topology.h include/gromacs/types/trx.h include/gromacs/update.h -include/gromacs/utils.h include/gromacs/vcm.h include/gromacs/vec.h include/gromacs/viewit.h +include/gromacs/vmddlopen.h +include/gromacs/vmdio.h +include/gromacs/vmdplugin.h include/gromacs/vsite.h +include/gromacs/warninp.h include/gromacs/wgms.h include/gromacs/wman.h include/gromacs/writeps.h @@ -248,17 +302,23 @@ lib/libgmx%%SUFFIX_MPI%%%%SUFFIX_D%%.a lib/libgmx%%SUFFIX_MPI%%%%SUFFIX_D%%.la lib/libgmx%%SUFFIX_MPI%%%%SUFFIX_D%%.so -lib/libgmx%%SUFFIX_MPI%%%%SUFFIX_D%%.so.5 -%%MPI%%lib/libgmxana%%SUFFIX_D%%.a -%%MPI%%lib/libgmxana%%SUFFIX_D%%.so +lib/libgmx%%SUFFIX_MPI%%%%SUFFIX_D%%.so.6 lib/libgmxana%%SUFFIX_MPI%%%%SUFFIX_D%%.a lib/libgmxana%%SUFFIX_MPI%%%%SUFFIX_D%%.la lib/libgmxana%%SUFFIX_MPI%%%%SUFFIX_D%%.so -lib/libgmxana%%SUFFIX_MPI%%%%SUFFIX_D%%.so.5 +lib/libgmxana%%SUFFIX_MPI%%%%SUFFIX_D%%.so.6 +lib/libgmxpreprocess%%SUFFIX_MPI%%%%SUFFIX_D%%.a +lib/libgmxpreprocess%%SUFFIX_MPI%%%%SUFFIX_D%%.la +lib/libgmxpreprocess%%SUFFIX_MPI%%%%SUFFIX_D%%.so +lib/libgmxpreprocess%%SUFFIX_MPI%%%%SUFFIX_D%%.so.6 lib/libmd%%SUFFIX_MPI%%%%SUFFIX_D%%.a lib/libmd%%SUFFIX_MPI%%%%SUFFIX_D%%.la lib/libmd%%SUFFIX_MPI%%%%SUFFIX_D%%.so -lib/libmd%%SUFFIX_MPI%%%%SUFFIX_D%%.so.5 +lib/libmd%%SUFFIX_MPI%%%%SUFFIX_D%%.so.6 +libdata/pkgconfig/libgmx%%SUFFIX_MPI%%%%SUFFIX_D%%.pc +libdata/pkgconfig/libgmxana%%SUFFIX_MPI%%%%SUFFIX_D%%.pc +libdata/pkgconfig/libgmxpreprocess%%SUFFIX_MPI%%%%SUFFIX_D%%.pc +libdata/pkgconfig/libmd%%SUFFIX_MPI%%%%SUFFIX_D%%.pc %%DATADIR%%/html/gmxfaq.html %%DATADIR%%/html/images/1ctf-0.2.jpg %%DATADIR%%/html/images/1ctf-0.5.jpg @@ -415,142 +475,477 @@ %%DATADIR%%/html/online/xvg.html %%DATADIR%%/html/online/yourown.html %%DATADIR%%/template/Makefile.%%BUILD%%%%SUFFIX_DOUBLE%% +%%DATADIR%%/template/Makefile.pkg %%DATADIR%%/template/README %%DATADIR%%/template/template.c -%%DATADIR%%/top/1mlg.itp -%%DATADIR%%/top/2mlg.itp -%%DATADIR%%/top/FF.dat -%%DATADIR%%/top/aminoacids.dat +%%DATADIR%%/top/amber03.ff/aminoacids.arn +%%DATADIR%%/top/amber03.ff/aminoacids.c.tdb +%%DATADIR%%/top/amber03.ff/aminoacids.hdb +%%DATADIR%%/top/amber03.ff/aminoacids.n.tdb +%%DATADIR%%/top/amber03.ff/aminoacids.r2b +%%DATADIR%%/top/amber03.ff/aminoacids.rtp +%%DATADIR%%/top/amber03.ff/aminoacids.vsd +%%DATADIR%%/top/amber03.ff/atomtypes.atp +%%DATADIR%%/top/amber03.ff/dna.arn +%%DATADIR%%/top/amber03.ff/dna.hdb +%%DATADIR%%/top/amber03.ff/dna.r2b +%%DATADIR%%/top/amber03.ff/dna.rtp +%%DATADIR%%/top/amber03.ff/ffbonded.itp +%%DATADIR%%/top/amber03.ff/ffnonbonded.itp +%%DATADIR%%/top/amber03.ff/forcefield.doc +%%DATADIR%%/top/amber03.ff/forcefield.itp +%%DATADIR%%/top/amber03.ff/gbsa.itp +%%DATADIR%%/top/amber03.ff/ions.itp +%%DATADIR%%/top/amber03.ff/rna.arn +%%DATADIR%%/top/amber03.ff/rna.hdb +%%DATADIR%%/top/amber03.ff/rna.r2b +%%DATADIR%%/top/amber03.ff/rna.rtp +%%DATADIR%%/top/amber03.ff/spc.itp +%%DATADIR%%/top/amber03.ff/spce.itp +%%DATADIR%%/top/amber03.ff/tip3p.itp +%%DATADIR%%/top/amber03.ff/tip4p.itp +%%DATADIR%%/top/amber03.ff/tip4pew.itp +%%DATADIR%%/top/amber03.ff/tip5p.itp +%%DATADIR%%/top/amber03.ff/urea.itp +%%DATADIR%%/top/amber03.ff/watermodels.dat +%%DATADIR%%/top/amber94.ff/aminoacids.arn +%%DATADIR%%/top/amber94.ff/aminoacids.c.tdb +%%DATADIR%%/top/amber94.ff/aminoacids.hdb +%%DATADIR%%/top/amber94.ff/aminoacids.n.tdb +%%DATADIR%%/top/amber94.ff/aminoacids.r2b +%%DATADIR%%/top/amber94.ff/aminoacids.rtp +%%DATADIR%%/top/amber94.ff/aminoacids.vsd +%%DATADIR%%/top/amber94.ff/atomtypes.atp +%%DATADIR%%/top/amber94.ff/dna.arn +%%DATADIR%%/top/amber94.ff/dna.hdb +%%DATADIR%%/top/amber94.ff/dna.r2b +%%DATADIR%%/top/amber94.ff/dna.rtp +%%DATADIR%%/top/amber94.ff/ffbonded.itp +%%DATADIR%%/top/amber94.ff/ffnonbonded.itp +%%DATADIR%%/top/amber94.ff/forcefield.doc +%%DATADIR%%/top/amber94.ff/forcefield.itp +%%DATADIR%%/top/amber94.ff/gbsa.itp +%%DATADIR%%/top/amber94.ff/ions.itp +%%DATADIR%%/top/amber94.ff/rna.arn +%%DATADIR%%/top/amber94.ff/rna.hdb +%%DATADIR%%/top/amber94.ff/rna.r2b +%%DATADIR%%/top/amber94.ff/rna.rtp +%%DATADIR%%/top/amber94.ff/spc.itp +%%DATADIR%%/top/amber94.ff/spce.itp +%%DATADIR%%/top/amber94.ff/tip3p.itp +%%DATADIR%%/top/amber94.ff/tip4p.itp +%%DATADIR%%/top/amber94.ff/tip4pew.itp +%%DATADIR%%/top/amber94.ff/tip5p.itp +%%DATADIR%%/top/amber94.ff/urea.itp +%%DATADIR%%/top/amber94.ff/watermodels.dat +%%DATADIR%%/top/amber96.ff/aminoacids.arn +%%DATADIR%%/top/amber96.ff/aminoacids.c.tdb +%%DATADIR%%/top/amber96.ff/aminoacids.hdb +%%DATADIR%%/top/amber96.ff/aminoacids.n.tdb +%%DATADIR%%/top/amber96.ff/aminoacids.r2b +%%DATADIR%%/top/amber96.ff/aminoacids.rtp +%%DATADIR%%/top/amber96.ff/aminoacids.vsd +%%DATADIR%%/top/amber96.ff/atomtypes.atp +%%DATADIR%%/top/amber96.ff/dna.arn +%%DATADIR%%/top/amber96.ff/dna.hdb +%%DATADIR%%/top/amber96.ff/dna.r2b +%%DATADIR%%/top/amber96.ff/dna.rtp +%%DATADIR%%/top/amber96.ff/ffbonded.itp +%%DATADIR%%/top/amber96.ff/ffnonbonded.itp +%%DATADIR%%/top/amber96.ff/forcefield.doc +%%DATADIR%%/top/amber96.ff/forcefield.itp +%%DATADIR%%/top/amber96.ff/gbsa.itp +%%DATADIR%%/top/amber96.ff/ions.itp +%%DATADIR%%/top/amber96.ff/rna.arn +%%DATADIR%%/top/amber96.ff/rna.hdb +%%DATADIR%%/top/amber96.ff/rna.r2b +%%DATADIR%%/top/amber96.ff/rna.rtp +%%DATADIR%%/top/amber96.ff/spc.itp +%%DATADIR%%/top/amber96.ff/spce.itp +%%DATADIR%%/top/amber96.ff/tip3p.itp +%%DATADIR%%/top/amber96.ff/tip4p.itp +%%DATADIR%%/top/amber96.ff/tip4pew.itp +%%DATADIR%%/top/amber96.ff/tip5p.itp +%%DATADIR%%/top/amber96.ff/urea.itp +%%DATADIR%%/top/amber96.ff/watermodels.dat +%%DATADIR%%/top/amber99.ff/aminoacids.arn +%%DATADIR%%/top/amber99.ff/aminoacids.c.tdb +%%DATADIR%%/top/amber99.ff/aminoacids.hdb +%%DATADIR%%/top/amber99.ff/aminoacids.n.tdb +%%DATADIR%%/top/amber99.ff/aminoacids.r2b +%%DATADIR%%/top/amber99.ff/aminoacids.rtp +%%DATADIR%%/top/amber99.ff/aminoacids.vsd +%%DATADIR%%/top/amber99.ff/atomtypes.atp +%%DATADIR%%/top/amber99.ff/dna.arn +%%DATADIR%%/top/amber99.ff/dna.hdb +%%DATADIR%%/top/amber99.ff/dna.r2b +%%DATADIR%%/top/amber99.ff/dna.rtp +%%DATADIR%%/top/amber99.ff/ffbonded.itp +%%DATADIR%%/top/amber99.ff/ffnonbonded.itp +%%DATADIR%%/top/amber99.ff/forcefield.doc +%%DATADIR%%/top/amber99.ff/forcefield.itp +%%DATADIR%%/top/amber99.ff/gbsa.itp +%%DATADIR%%/top/amber99.ff/ions.itp +%%DATADIR%%/top/amber99.ff/rna.arn +%%DATADIR%%/top/amber99.ff/rna.hdb +%%DATADIR%%/top/amber99.ff/rna.r2b +%%DATADIR%%/top/amber99.ff/rna.rtp +%%DATADIR%%/top/amber99.ff/spc.itp +%%DATADIR%%/top/amber99.ff/spce.itp +%%DATADIR%%/top/amber99.ff/tip3p.itp +%%DATADIR%%/top/amber99.ff/tip4p.itp +%%DATADIR%%/top/amber99.ff/tip4pew.itp +%%DATADIR%%/top/amber99.ff/tip5p.itp +%%DATADIR%%/top/amber99.ff/urea.itp +%%DATADIR%%/top/amber99.ff/watermodels.dat +%%DATADIR%%/top/amber99sb-ildn.ff/aminoacids.arn +%%DATADIR%%/top/amber99sb-ildn.ff/aminoacids.c.tdb +%%DATADIR%%/top/amber99sb-ildn.ff/aminoacids.hdb +%%DATADIR%%/top/amber99sb-ildn.ff/aminoacids.n.tdb +%%DATADIR%%/top/amber99sb-ildn.ff/aminoacids.r2b +%%DATADIR%%/top/amber99sb-ildn.ff/aminoacids.rtp +%%DATADIR%%/top/amber99sb-ildn.ff/aminoacids.vsd +%%DATADIR%%/top/amber99sb-ildn.ff/atomtypes.atp +%%DATADIR%%/top/amber99sb-ildn.ff/dna.arn +%%DATADIR%%/top/amber99sb-ildn.ff/dna.hdb +%%DATADIR%%/top/amber99sb-ildn.ff/dna.r2b +%%DATADIR%%/top/amber99sb-ildn.ff/dna.rtp +%%DATADIR%%/top/amber99sb-ildn.ff/ffbonded.itp +%%DATADIR%%/top/amber99sb-ildn.ff/ffnonbonded.itp +%%DATADIR%%/top/amber99sb-ildn.ff/forcefield.doc +%%DATADIR%%/top/amber99sb-ildn.ff/forcefield.itp +%%DATADIR%%/top/amber99sb-ildn.ff/gbsa.itp +%%DATADIR%%/top/amber99sb-ildn.ff/ions.itp +%%DATADIR%%/top/amber99sb-ildn.ff/rna.arn +%%DATADIR%%/top/amber99sb-ildn.ff/rna.hdb +%%DATADIR%%/top/amber99sb-ildn.ff/rna.r2b +%%DATADIR%%/top/amber99sb-ildn.ff/rna.rtp +%%DATADIR%%/top/amber99sb-ildn.ff/spc.itp +%%DATADIR%%/top/amber99sb-ildn.ff/spce.itp +%%DATADIR%%/top/amber99sb-ildn.ff/tip3p.itp +%%DATADIR%%/top/amber99sb-ildn.ff/tip4p.itp +%%DATADIR%%/top/amber99sb-ildn.ff/tip4pew.itp +%%DATADIR%%/top/amber99sb-ildn.ff/tip5p.itp +%%DATADIR%%/top/amber99sb-ildn.ff/urea.itp +%%DATADIR%%/top/amber99sb-ildn.ff/watermodels.dat +%%DATADIR%%/top/amber99sb.ff/aminoacids.arn +%%DATADIR%%/top/amber99sb.ff/aminoacids.c.tdb +%%DATADIR%%/top/amber99sb.ff/aminoacids.hdb +%%DATADIR%%/top/amber99sb.ff/aminoacids.n.tdb +%%DATADIR%%/top/amber99sb.ff/aminoacids.r2b +%%DATADIR%%/top/amber99sb.ff/aminoacids.rtp +%%DATADIR%%/top/amber99sb.ff/aminoacids.vsd +%%DATADIR%%/top/amber99sb.ff/atomtypes.atp +%%DATADIR%%/top/amber99sb.ff/dna.arn +%%DATADIR%%/top/amber99sb.ff/dna.hdb +%%DATADIR%%/top/amber99sb.ff/dna.r2b +%%DATADIR%%/top/amber99sb.ff/dna.rtp +%%DATADIR%%/top/amber99sb.ff/ffbonded.itp +%%DATADIR%%/top/amber99sb.ff/ffnonbonded.itp +%%DATADIR%%/top/amber99sb.ff/forcefield.doc +%%DATADIR%%/top/amber99sb.ff/forcefield.itp +%%DATADIR%%/top/amber99sb.ff/gbsa.itp +%%DATADIR%%/top/amber99sb.ff/ions.itp +%%DATADIR%%/top/amber99sb.ff/rna.arn +%%DATADIR%%/top/amber99sb.ff/rna.hdb +%%DATADIR%%/top/amber99sb.ff/rna.r2b +%%DATADIR%%/top/amber99sb.ff/rna.rtp +%%DATADIR%%/top/amber99sb.ff/spc.itp +%%DATADIR%%/top/amber99sb.ff/spce.itp +%%DATADIR%%/top/amber99sb.ff/tip3p.itp +%%DATADIR%%/top/amber99sb.ff/tip4p.itp +%%DATADIR%%/top/amber99sb.ff/tip4pew.itp +%%DATADIR%%/top/amber99sb.ff/tip5p.itp +%%DATADIR%%/top/amber99sb.ff/urea.itp +%%DATADIR%%/top/amber99sb.ff/watermodels.dat +%%DATADIR%%/top/amberGS.ff/aminoacids.arn +%%DATADIR%%/top/amberGS.ff/aminoacids.c.tdb +%%DATADIR%%/top/amberGS.ff/aminoacids.hdb +%%DATADIR%%/top/amberGS.ff/aminoacids.n.tdb +%%DATADIR%%/top/amberGS.ff/aminoacids.r2b +%%DATADIR%%/top/amberGS.ff/aminoacids.rtp +%%DATADIR%%/top/amberGS.ff/aminoacids.vsd +%%DATADIR%%/top/amberGS.ff/atomtypes.atp +%%DATADIR%%/top/amberGS.ff/dna.arn +%%DATADIR%%/top/amberGS.ff/dna.hdb +%%DATADIR%%/top/amberGS.ff/dna.r2b +%%DATADIR%%/top/amberGS.ff/dna.rtp +%%DATADIR%%/top/amberGS.ff/ffbonded.itp +%%DATADIR%%/top/amberGS.ff/ffnonbonded.itp +%%DATADIR%%/top/amberGS.ff/forcefield.doc +%%DATADIR%%/top/amberGS.ff/forcefield.itp +%%DATADIR%%/top/amberGS.ff/gbsa.itp +%%DATADIR%%/top/amberGS.ff/ions.itp +%%DATADIR%%/top/amberGS.ff/rna.arn +%%DATADIR%%/top/amberGS.ff/rna.hdb +%%DATADIR%%/top/amberGS.ff/rna.r2b +%%DATADIR%%/top/amberGS.ff/rna.rtp +%%DATADIR%%/top/amberGS.ff/spc.itp +%%DATADIR%%/top/amberGS.ff/spce.itp +%%DATADIR%%/top/amberGS.ff/tip3p.itp +%%DATADIR%%/top/amberGS.ff/tip4p.itp +%%DATADIR%%/top/amberGS.ff/tip4pew.itp +%%DATADIR%%/top/amberGS.ff/tip5p.itp +%%DATADIR%%/top/amberGS.ff/urea.itp +%%DATADIR%%/top/amberGS.ff/watermodels.dat %%DATADIR%%/top/atom_nom.tbl %%DATADIR%%/top/atommass.dat -%%DATADIR%%/top/benzamide.itp -%%DATADIR%%/top/bondadd.itp %%DATADIR%%/top/bonds.dlg %%DATADIR%%/top/bromacs.dat -%%DATADIR%%/top/buck.itp %%DATADIR%%/top/ca-shift.dat %%DATADIR%%/top/cb-shift.dat +%%DATADIR%%/top/charmm27.ff/aminoacids.arn +%%DATADIR%%/top/charmm27.ff/aminoacids.c.tdb +%%DATADIR%%/top/charmm27.ff/aminoacids.hdb +%%DATADIR%%/top/charmm27.ff/aminoacids.n.tdb +%%DATADIR%%/top/charmm27.ff/aminoacids.r2b +%%DATADIR%%/top/charmm27.ff/aminoacids.rtp +%%DATADIR%%/top/charmm27.ff/aminoacids.vsd +%%DATADIR%%/top/charmm27.ff/atomtypes.atp +%%DATADIR%%/top/charmm27.ff/cmap.itp +%%DATADIR%%/top/charmm27.ff/dna.hdb +%%DATADIR%%/top/charmm27.ff/dna.n.tdb +%%DATADIR%%/top/charmm27.ff/dna.c.tdb +%%DATADIR%%/top/charmm27.ff/dna.arn +%%DATADIR%%/top/charmm27.ff/dna.rtp +%%DATADIR%%/top/charmm27.ff/ffbonded.itp +%%DATADIR%%/top/charmm27.ff/ffnabonded.itp +%%DATADIR%%/top/charmm27.ff/ffnanonbonded.itp +%%DATADIR%%/top/charmm27.ff/ffnonbonded.itp +%%DATADIR%%/top/charmm27.ff/forcefield.doc +%%DATADIR%%/top/charmm27.ff/forcefield.itp +%%DATADIR%%/top/charmm27.ff/gb.itp +%%DATADIR%%/top/charmm27.ff/ions.itp +%%DATADIR%%/top/charmm27.ff/lipids.hdb +%%DATADIR%%/top/charmm27.ff/lipids.rtp +%%DATADIR%%/top/charmm27.ff/rna.hdb +%%DATADIR%%/top/charmm27.ff/rna.n.tdb +%%DATADIR%%/top/charmm27.ff/rna.c.tdb +%%DATADIR%%/top/charmm27.ff/rna.arn +%%DATADIR%%/top/charmm27.ff/rna.r2b +%%DATADIR%%/top/charmm27.ff/rna.rtp +%%DATADIR%%/top/charmm27.ff/spc.itp +%%DATADIR%%/top/charmm27.ff/spce.itp +%%DATADIR%%/top/charmm27.ff/tip3p.itp +%%DATADIR%%/top/charmm27.ff/tip4p.itp +%%DATADIR%%/top/charmm27.ff/tip5p.itp +%%DATADIR%%/top/charmm27.ff/tips3p.itp +%%DATADIR%%/top/charmm27.ff/watermodels.dat %%DATADIR%%/top/co-shift.dat -%%DATADIR%%/top/dec50.gro -%%DATADIR%%/top/decane.itp +%%DATADIR%%/top/defselection.dat %%DATADIR%%/top/dgsolv.dat -%%DATADIR%%/top/dlg.itp -%%DATADIR%%/top/dmso.gro -%%DATADIR%%/top/dmso.itp %%DATADIR%%/top/edissoc.dat %%DATADIR%%/top/electroneg.dat %%DATADIR%%/top/elements.dat +%%DATADIR%%/top/encads.ff/aminoacids.c.tdb +%%DATADIR%%/top/encads.ff/aminoacids.hdb +%%DATADIR%%/top/encads.ff/aminoacids.n.tdb +%%DATADIR%%/top/encads.ff/aminoacids.r2b +%%DATADIR%%/top/encads.ff/aminoacids.rtp +%%DATADIR%%/top/encads.ff/atomtypes.atp +%%DATADIR%%/top/encads.ff/f3c.itp +%%DATADIR%%/top/encads.ff/ffbonded.itp +%%DATADIR%%/top/encads.ff/ffnonbonded.itp +%%DATADIR%%/top/encads.ff/forcefield.doc +%%DATADIR%%/top/encads.ff/forcefield.itp +%%DATADIR%%/top/encads.ff/watermodels.dat +%%DATADIR%%/top/encadv.ff/aminoacids.c.tdb +%%DATADIR%%/top/encadv.ff/aminoacids.hdb +%%DATADIR%%/top/encadv.ff/aminoacids.n.tdb +%%DATADIR%%/top/encadv.ff/aminoacids.r2b +%%DATADIR%%/top/encadv.ff/aminoacids.rtp +%%DATADIR%%/top/encadv.ff/atomtypes.atp +%%DATADIR%%/top/encadv.ff/ffbonded.itp +%%DATADIR%%/top/encadv.ff/ffnonbonded.itp +%%DATADIR%%/top/encadv.ff/forcefield.doc +%%DATADIR%%/top/encadv.ff/forcefield.itp +%%DATADIR%%/top/encadv.ff/watermodels.dat %%DATADIR%%/top/export.dlg -%%DATADIR%%/top/f3c.itp -%%DATADIR%%/top/fa.itp -%%DATADIR%%/top/ffG43a1-c.tdb -%%DATADIR%%/top/ffG43a1-n.tdb -%%DATADIR%%/top/ffG43a1.atp -%%DATADIR%%/top/ffG43a1.ddb -%%DATADIR%%/top/ffG43a1.hdb %%DATADIR%%/top/ffG43a1.itp -%%DATADIR%%/top/ffG43a1.rtp -%%DATADIR%%/top/ffG43a1bon.itp -%%DATADIR%%/top/ffG43a1nb.itp -%%DATADIR%%/top/ffG43a2-c.tdb -%%DATADIR%%/top/ffG43a2-n.tdb -%%DATADIR%%/top/ffG43a2.atp -%%DATADIR%%/top/ffG43a2.ddb -%%DATADIR%%/top/ffG43a2.hdb %%DATADIR%%/top/ffG43a2.itp -%%DATADIR%%/top/ffG43a2.rtp -%%DATADIR%%/top/ffG43a2bon.itp -%%DATADIR%%/top/ffG43a2nb.itp -%%DATADIR%%/top/ffG45a3-c.tdb -%%DATADIR%%/top/ffG45a3-n.tdb -%%DATADIR%%/top/ffG45a3.atp -%%DATADIR%%/top/ffG45a3.ddb -%%DATADIR%%/top/ffG45a3.hdb %%DATADIR%%/top/ffG45a3.itp -%%DATADIR%%/top/ffG45a3.rtp -%%DATADIR%%/top/ffG45a3bon.itp -%%DATADIR%%/top/ffG45a3nb.itp -%%DATADIR%%/top/ffG53a5-c.tdb -%%DATADIR%%/top/ffG53a5-n.tdb -%%DATADIR%%/top/ffG53a5.atp -%%DATADIR%%/top/ffG53a5.ddb -%%DATADIR%%/top/ffG53a5.hdb %%DATADIR%%/top/ffG53a5.itp -%%DATADIR%%/top/ffG53a5.n2t -%%DATADIR%%/top/ffG53a5.rtp -%%DATADIR%%/top/ffG53a5bon.itp -%%DATADIR%%/top/ffG53a5nb.itp -%%DATADIR%%/top/ffG53a6-c.tdb -%%DATADIR%%/top/ffG53a6-n.tdb -%%DATADIR%%/top/ffG53a6.atp -%%DATADIR%%/top/ffG53a6.ddb -%%DATADIR%%/top/ffG53a6.hdb %%DATADIR%%/top/ffG53a6.itp -%%DATADIR%%/top/ffG53a6.rtp -%%DATADIR%%/top/ffG53a6bon.itp -%%DATADIR%%/top/ffG53a6nb.itp -%%DATADIR%%/top/ff_dum.itp -%%DATADIR%%/top/ffencads-c.tdb -%%DATADIR%%/top/ffencads-n.tdb -%%DATADIR%%/top/ffencads.atp -%%DATADIR%%/top/ffencads.hdb %%DATADIR%%/top/ffencads.itp -%%DATADIR%%/top/ffencads.rtp -%%DATADIR%%/top/ffencadsbon.itp -%%DATADIR%%/top/ffencadsnb.itp -%%DATADIR%%/top/ffencadv-c.tdb -%%DATADIR%%/top/ffencadv-n.tdb -%%DATADIR%%/top/ffencadv.atp -%%DATADIR%%/top/ffencadv.hdb %%DATADIR%%/top/ffencadv.itp -%%DATADIR%%/top/ffencadv.rtp -%%DATADIR%%/top/ffencadvbon.itp -%%DATADIR%%/top/ffencadvnb.itp -%%DATADIR%%/top/ffgmx-c.tdb -%%DATADIR%%/top/ffgmx-n.tdb -%%DATADIR%%/top/ffgmx.atp -%%DATADIR%%/top/ffgmx.ddb -%%DATADIR%%/top/ffgmx.hdb %%DATADIR%%/top/ffgmx.itp -%%DATADIR%%/top/ffgmx.rtp -%%DATADIR%%/top/ffgmx2-c.tdb -%%DATADIR%%/top/ffgmx2-n.tdb -%%DATADIR%%/top/ffgmx2.atp -%%DATADIR%%/top/ffgmx2.ddb -%%DATADIR%%/top/ffgmx2.hdb %%DATADIR%%/top/ffgmx2.itp -%%DATADIR%%/top/ffgmx2.rtp -%%DATADIR%%/top/ffgmx2bon.itp -%%DATADIR%%/top/ffgmx2nb.itp -%%DATADIR%%/top/ffgmxbon.itp -%%DATADIR%%/top/ffgmxnb.itp -%%DATADIR%%/top/ffoplsaa-c.tdb -%%DATADIR%%/top/ffoplsaa-n.tdb -%%DATADIR%%/top/ffoplsaa.atp -%%DATADIR%%/top/ffoplsaa.ddb -%%DATADIR%%/top/ffoplsaa.hdb +%%DATADIR%%/top/ffoplsaa-n.tst %%DATADIR%%/top/ffoplsaa.itp -%%DATADIR%%/top/ffoplsaa.n2t -%%DATADIR%%/top/ffoplsaa.rtp -%%DATADIR%%/top/ffoplsaabon.itp -%%DATADIR%%/top/ffoplsaanb.itp %%DATADIR%%/top/flexspc.itp %%DATADIR%%/top/flexspce.itp %%DATADIR%%/top/flexwat-ferguson.itp -%%DATADIR%%/top/gromacs.dtd +%%DATADIR%%/top/gmx.ff/1mlg.itp +%%DATADIR%%/top/gmx.ff/2mlg.itp +%%DATADIR%%/top/gmx.ff/aminoacids.c.tdb +%%DATADIR%%/top/gmx.ff/aminoacids.hdb +%%DATADIR%%/top/gmx.ff/aminoacids.n.tdb +%%DATADIR%%/top/gmx.ff/aminoacids.rtp +%%DATADIR%%/top/gmx.ff/aminoacids.vsd +%%DATADIR%%/top/gmx.ff/atomtypes.atp +%%DATADIR%%/top/gmx.ff/decane.itp +%%DATADIR%%/top/gmx.ff/decane50.gro +%%DATADIR%%/top/gmx.ff/dlg.itp +%%DATADIR%%/top/gmx.ff/fa.itp +%%DATADIR%%/top/gmx.ff/ff_dum.itp +%%DATADIR%%/top/gmx.ff/ffbonded.itp +%%DATADIR%%/top/gmx.ff/ffnonbonded.itp +%%DATADIR%%/top/gmx.ff/forcefield.doc +%%DATADIR%%/top/gmx.ff/forcefield.itp +%%DATADIR%%/top/gmx.ff/h2p4o13.itp +%%DATADIR%%/top/gmx.ff/h2p8o25.itp +%%DATADIR%%/top/gmx.ff/h2po4.itp +%%DATADIR%%/top/gmx.ff/ions.itp +%%DATADIR%%/top/gmx.ff/spc.itp +%%DATADIR%%/top/gmx.ff/spce.itp +%%DATADIR%%/top/gmx.ff/tfe.itp +%%DATADIR%%/top/gmx.ff/tip3p.itp +%%DATADIR%%/top/gmx.ff/tip4p.itp +%%DATADIR%%/top/gmx.ff/watermodels.dat +%%DATADIR%%/top/gmx2.ff/aminoacids.c.tdb +%%DATADIR%%/top/gmx2.ff/aminoacids.hdb +%%DATADIR%%/top/gmx2.ff/aminoacids.n.tdb +%%DATADIR%%/top/gmx2.ff/aminoacids.rtp +%%DATADIR%%/top/gmx2.ff/aminoacids.vsd +%%DATADIR%%/top/gmx2.ff/atomtypes.atp +%%DATADIR%%/top/gmx2.ff/ff_dum.itp +%%DATADIR%%/top/gmx2.ff/ffbonded.itp +%%DATADIR%%/top/gmx2.ff/ffnonbonded.itp +%%DATADIR%%/top/gmx2.ff/forcefield.doc +%%DATADIR%%/top/gmx2.ff/forcefield.itp +%%DATADIR%%/top/gmx2.ff/ions.itp +%%DATADIR%%/top/gmx2.ff/spc.itp +%%DATADIR%%/top/gmx2.ff/spce.itp +%%DATADIR%%/top/gmx2.ff/tip3p.itp +%%DATADIR%%/top/gmx2.ff/tip4p.itp +%%DATADIR%%/top/gmx2.ff/watermodels.dat +%%DATADIR%%/top/gromos43a1.ff/aminoacids.c.tdb +%%DATADIR%%/top/gromos43a1.ff/aminoacids.hdb +%%DATADIR%%/top/gromos43a1.ff/aminoacids.n.tdb +%%DATADIR%%/top/gromos43a1.ff/aminoacids.r2b +%%DATADIR%%/top/gromos43a1.ff/aminoacids.rtp +%%DATADIR%%/top/gromos43a1.ff/aminoacids.vsd +%%DATADIR%%/top/gromos43a1.ff/atomtypes.atp +%%DATADIR%%/top/gromos43a1.ff/ff_dum.itp +%%DATADIR%%/top/gromos43a1.ff/ffbonded.itp +%%DATADIR%%/top/gromos43a1.ff/ffnonbonded.itp +%%DATADIR%%/top/gromos43a1.ff/forcefield.doc +%%DATADIR%%/top/gromos43a1.ff/forcefield.itp +%%DATADIR%%/top/gromos43a1.ff/ions.itp +%%DATADIR%%/top/gromos43a1.ff/methanol.itp +%%DATADIR%%/top/gromos43a1.ff/methanol216.gro +%%DATADIR%%/top/gromos43a1.ff/spc.itp +%%DATADIR%%/top/gromos43a1.ff/spce.itp +%%DATADIR%%/top/gromos43a1.ff/tip3p.itp +%%DATADIR%%/top/gromos43a1.ff/tip4p.itp +%%DATADIR%%/top/gromos43a1.ff/watermodels.dat +%%DATADIR%%/top/gromos43a2.ff/aminoacids.c.tdb +%%DATADIR%%/top/gromos43a2.ff/aminoacids.hdb +%%DATADIR%%/top/gromos43a2.ff/aminoacids.n.tdb +%%DATADIR%%/top/gromos43a2.ff/aminoacids.r2b +%%DATADIR%%/top/gromos43a2.ff/aminoacids.rtp +%%DATADIR%%/top/gromos43a2.ff/aminoacids.vsd +%%DATADIR%%/top/gromos43a2.ff/atomtypes.atp +%%DATADIR%%/top/gromos43a2.ff/ff_dum.itp +%%DATADIR%%/top/gromos43a2.ff/ffbonded.itp +%%DATADIR%%/top/gromos43a2.ff/ffnonbonded.itp +%%DATADIR%%/top/gromos43a2.ff/forcefield.doc +%%DATADIR%%/top/gromos43a2.ff/forcefield.itp +%%DATADIR%%/top/gromos43a2.ff/ions.itp +%%DATADIR%%/top/gromos43a2.ff/spc.itp +%%DATADIR%%/top/gromos43a2.ff/spce.itp +%%DATADIR%%/top/gromos43a2.ff/tip3p.itp +%%DATADIR%%/top/gromos43a2.ff/tip4p.itp +%%DATADIR%%/top/gromos43a2.ff/watermodels.dat +%%DATADIR%%/top/gromos45a3.ff/aminoacids.c.tdb +%%DATADIR%%/top/gromos45a3.ff/aminoacids.hdb +%%DATADIR%%/top/gromos45a3.ff/aminoacids.n.tdb +%%DATADIR%%/top/gromos45a3.ff/aminoacids.r2b +%%DATADIR%%/top/gromos45a3.ff/aminoacids.rtp +%%DATADIR%%/top/gromos45a3.ff/aminoacids.vsd +%%DATADIR%%/top/gromos45a3.ff/atomtypes.atp +%%DATADIR%%/top/gromos45a3.ff/ff_dum.itp +%%DATADIR%%/top/gromos45a3.ff/ffbonded.itp +%%DATADIR%%/top/gromos45a3.ff/ffnonbonded.itp +%%DATADIR%%/top/gromos45a3.ff/forcefield.doc +%%DATADIR%%/top/gromos45a3.ff/forcefield.itp +%%DATADIR%%/top/gromos45a3.ff/ions.itp +%%DATADIR%%/top/gromos45a3.ff/spc.itp +%%DATADIR%%/top/gromos45a3.ff/spce.itp +%%DATADIR%%/top/gromos45a3.ff/tip3p.itp +%%DATADIR%%/top/gromos45a3.ff/tip4p.itp +%%DATADIR%%/top/gromos45a3.ff/watermodels.dat +%%DATADIR%%/top/gromos53a5.ff/aminoacids.c.tdb +%%DATADIR%%/top/gromos53a5.ff/aminoacids.hdb +%%DATADIR%%/top/gromos53a5.ff/aminoacids.n.tdb +%%DATADIR%%/top/gromos53a5.ff/aminoacids.r2b +%%DATADIR%%/top/gromos53a5.ff/aminoacids.rtp +%%DATADIR%%/top/gromos53a5.ff/aminoacids.vsd +%%DATADIR%%/top/gromos53a5.ff/atomname2type.n2t +%%DATADIR%%/top/gromos53a5.ff/atomtypes.atp +%%DATADIR%%/top/gromos53a5.ff/ff_dum.itp +%%DATADIR%%/top/gromos53a5.ff/ffbonded.itp +%%DATADIR%%/top/gromos53a5.ff/ffnonbonded.itp +%%DATADIR%%/top/gromos53a5.ff/forcefield.doc +%%DATADIR%%/top/gromos53a5.ff/forcefield.itp +%%DATADIR%%/top/gromos53a5.ff/ions.itp +%%DATADIR%%/top/gromos53a5.ff/spc.itp +%%DATADIR%%/top/gromos53a5.ff/spce.itp +%%DATADIR%%/top/gromos53a5.ff/tip3p.itp +%%DATADIR%%/top/gromos53a5.ff/tip4p.itp +%%DATADIR%%/top/gromos53a5.ff/watermodels.dat +%%DATADIR%%/top/gromos53a6.ff/aminoacids.c.tdb +%%DATADIR%%/top/gromos53a6.ff/aminoacids.hdb +%%DATADIR%%/top/gromos53a6.ff/aminoacids.n.tdb +%%DATADIR%%/top/gromos53a6.ff/aminoacids.r2b +%%DATADIR%%/top/gromos53a6.ff/aminoacids.rtp +%%DATADIR%%/top/gromos53a6.ff/aminoacids.vsd +%%DATADIR%%/top/gromos53a6.ff/atomtypes.atp +%%DATADIR%%/top/gromos53a6.ff/ff_dum.itp +%%DATADIR%%/top/gromos53a6.ff/ffbonded.itp +%%DATADIR%%/top/gromos53a6.ff/ffnonbonded.itp +%%DATADIR%%/top/gromos53a6.ff/forcefield.doc +%%DATADIR%%/top/gromos53a6.ff/forcefield.itp +%%DATADIR%%/top/gromos53a6.ff/ions.itp +%%DATADIR%%/top/gromos53a6.ff/spc.itp +%%DATADIR%%/top/gromos53a6.ff/spce.itp +%%DATADIR%%/top/gromos53a6.ff/tip3p.itp +%%DATADIR%%/top/gromos53a6.ff/tip4p.itp +%%DATADIR%%/top/gromos53a6.ff/watermodels.dat %%DATADIR%%/top/gurgle.dat -%%DATADIR%%/top/h2p4o13.itp -%%DATADIR%%/top/h2p8o25.itp -%%DATADIR%%/top/h2po4.itp %%DATADIR%%/top/ha-shift.dat %%DATADIR%%/top/highway.dat %%DATADIR%%/top/ions.itp %%DATADIR%%/top/links.dat -%%DATADIR%%/top/methanol.itp +%%DATADIR%%/top/oplsaa.ff/1propanol.itp +%%DATADIR%%/top/oplsaa.ff/aminoacids.c.tdb +%%DATADIR%%/top/oplsaa.ff/aminoacids.hdb +%%DATADIR%%/top/oplsaa.ff/aminoacids.n.tdb +%%DATADIR%%/top/oplsaa.ff/aminoacids.r2b +%%DATADIR%%/top/oplsaa.ff/aminoacids.rtp +%%DATADIR%%/top/oplsaa.ff/aminoacids.vsd +%%DATADIR%%/top/oplsaa.ff/atomname2type.n2t +%%DATADIR%%/top/oplsaa.ff/atomtypes.atp +%%DATADIR%%/top/oplsaa.ff/ethanol.itp +%%DATADIR%%/top/oplsaa.ff/ffbonded.itp +%%DATADIR%%/top/oplsaa.ff/ffnonbonded.itp +%%DATADIR%%/top/oplsaa.ff/forcefield.doc +%%DATADIR%%/top/oplsaa.ff/forcefield.itp +%%DATADIR%%/top/oplsaa.ff/gbsa.itp +%%DATADIR%%/top/oplsaa.ff/ions.itp +%%DATADIR%%/top/oplsaa.ff/methanol.itp +%%DATADIR%%/top/oplsaa.ff/spc.itp +%%DATADIR%%/top/oplsaa.ff/spce.itp +%%DATADIR%%/top/oplsaa.ff/tip3p.itp +%%DATADIR%%/top/oplsaa.ff/tip4p.itp +%%DATADIR%%/top/oplsaa.ff/tip5p.itp +%%DATADIR%%/top/oplsaa.ff/watermodels.dat %%DATADIR%%/top/phbres.dat %%DATADIR%%/top/ps.m2p %%DATADIR%%/top/random.dat %%DATADIR%%/top/refi_aa.dat +%%DATADIR%%/top/residuetypes.dat +%%DATADIR%%/top/sfactor.dat %%DATADIR%%/top/spc.itp %%DATADIR%%/top/spc216.gro %%DATADIR%%/top/spce.itp @@ -563,14 +958,10 @@ %%DATADIR%%/top/table6-12.xvg %%DATADIR%%/top/table6-8.xvg %%DATADIR%%/top/table6-9.xvg -%%DATADIR%%/top/tfe.itp %%DATADIR%%/top/tip3p.itp %%DATADIR%%/top/tip4p.gro %%DATADIR%%/top/tip4p.itp %%DATADIR%%/top/tip5p.gro -%%DATADIR%%/top/tip5p.itp -%%DATADIR%%/top/urea+h2o.gro -%%DATADIR%%/top/urea.itp %%DATADIR%%/top/vdwradii.dat %%DATADIR%%/top/xlateat.dat %%DATADIR%%/tutor/gmxdemo/cpeptide.pdb @@ -612,6 +1003,24 @@ @dirrm %%DATADIR%%/tutor/methanol @dirrm %%DATADIR%%/tutor/gmxdemo @dirrm %%DATADIR%%/tutor +@dirrm %%DATADIR%%/top/oplsaa.ff +@dirrm %%DATADIR%%/top/gromos53a6.ff +@dirrm %%DATADIR%%/top/gromos53a5.ff +@dirrm %%DATADIR%%/top/gromos45a3.ff +@dirrm %%DATADIR%%/top/gromos43a2.ff +@dirrm %%DATADIR%%/top/gromos43a1.ff +@dirrm %%DATADIR%%/top/gmx2.ff +@dirrm %%DATADIR%%/top/gmx.ff +@dirrm %%DATADIR%%/top/encadv.ff +@dirrm %%DATADIR%%/top/encads.ff +@dirrm %%DATADIR%%/top/charmm27.ff +@dirrm %%DATADIR%%/top/amberGS.ff +@dirrm %%DATADIR%%/top/amber99sb.ff +@dirrm %%DATADIR%%/top/amber99sb-ildn.ff +@dirrm %%DATADIR%%/top/amber99.ff +@dirrm %%DATADIR%%/top/amber96.ff +@dirrm %%DATADIR%%/top/amber94.ff +@dirrm %%DATADIR%%/top/amber03.ff @dirrm %%DATADIR%%/top @dirrm %%DATADIR%%/template @dirrm %%DATADIR%%/html/online @@ -619,4 +1028,6 @@ @dirrm %%DATADIR%%/html @dirrm %%DATADIR%% @dirrm include/gromacs/types +@dirrm include/gromacs/thread_mpi/atomic +@dirrm include/gromacs/thread_mpi @dirrm include/gromacs --------------070003000502090903050405--