Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "gmxtop"
version = "0.0.1"
version = "0.0.2"
description = "Read and write GROMACS topology files and alter associated force fields parameters."
license-files = ["LICEN[CS]E*"]
authors = [{ name = "graeter-group"}]
Expand Down
1 change: 1 addition & 0 deletions src/gmxtop/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@
"N3": 4,
"P": 4,
"SO": 4,
"CX": 4,
}

AA3 = [
Expand Down
20 changes: 20 additions & 0 deletions tests/test_files/assets/amber14sb.ff/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
## Process this file with automake to produce Makefile.in
#
# Don't edit - this file is generated automatically from Makefile.am
#
topoldir = ${pkgdatadir}/top/amber14sb.ff

topol_DATA = \
aminoacids.arn aminoacids.vsd \
aminoacids.c.tdb atomtypes.atp ffnonbonded.itp \
aminoacids.hdb forcefield.doc dna.rtp dna.r2b dna.arn dna.hdb \
aminoacids.n.tdb forcefield.itp rna.rtp rna.r2b rna.arn rna.hdb \
aminoacids.r2b ffbonded.itp tip3p.itp urea.itp \
aminoacids.rtp ions.itp tip4p.itp \
tip4pew.itp tip5p.itp watermodels.dat gbsa.itp \
spc.itp spce.itp

EXTRA_DIST = ${topol_DATA}

CLEANFILES = *~ \\\#*

Loading