Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updates and fixes #29

Merged
merged 2 commits into from
Feb 2, 2018
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
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ modification, separation, for any purpose and without a charge.
:scale: 100%
:target: https://alchemtest.readthedocs.io/en/latest/

.. |doi| image:: https://zenodo.org/badge/XXXXX.svg
.. |doi| image:: https://zenodo.org/badge/83470847.svg
:alt: Zenodo DOI
:scale: 100%
:target: https://zenodo.org/badge/latestdoi/XXXXX
:target: https://zenodo.org/badge/latestdoi/83470847

17 changes: 15 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,22 @@
# built documents.
#
# The short X.Y version.
version = u'0.1.0-dev'
#version = u'0.2'
# The full version, including alpha/beta/rc tags.
release = u'0.1.0-dev'
#release = u'0.2.0'

# automatically get the version information (requires that
# alchemtest is installed)
# We always display the full release string; if something else is
# desired, see the commented out code

from alchemtest._version import get_versions
release = get_versions()['version']
del get_versions

version = release
#version = release.split("+")[0] # only major.minor.patch
#version = "."join(release.split(".")[:2]) # only major.minor

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
6 changes: 6 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
alchemtest: the simple alchemistry test set
===========================================

|doi|

**alchemtest** is a collection of test datasets for alchemical free energy
calculations. The datasets come from a variety of software packages, primarily
molecular dynamics engines, and are used as the test set for `alchemlyb`_. The
Expand All @@ -23,6 +25,10 @@ suite it may contain bugs. Please raise any issues or questions in the
`Issue Tracker`_. `Contributions of data sets`_ and code in the form
of pull requests are very welcome.

.. |doi| image:: https://zenodo.org/badge/83470847.svg
:alt: Zenodo DOI
:scale: 100%
:target: https://zenodo.org/badge/latestdoi/83470847

.. _`alchemlyb`: https://github.com/alchemistry/alchemlyb
.. _`open license`:
Expand Down
4 changes: 2 additions & 2 deletions src/alchemtest/namd/access.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ def load_tyr2ala():
"""

module_path = dirname(__file__)
data = {'forward': glob(join(module_path, 'tyr2ala/in-aqua/forward/*.fepout')),
'backward': glob(join(module_path, 'tyr2ala/in-aqua/backward/*.fepout'))}
data = {'forward': glob(join(module_path, 'tyr2ala/in-aqua/forward/*.fepout.bz2')),
'backward': glob(join(module_path, 'tyr2ala/in-aqua/backward/*.fepout.bz2'))}

with open(join(module_path, 'tyr2ala', 'descr.rst')) as rst_file:
fdescr = rst_file.read()
Expand Down
5 changes: 3 additions & 2 deletions src/alchemtest/namd/tyr2ala/descr.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@ Data Set Characteristics:
:License: `CC0 <https://creativecommons.org/publicdomain/zero/1.0/>`_
Public Domain Dedication

This dataset was generated using the `NAMD <http://www.ambermd.org/>`_
molecular dynamics engine.
This dataset was generated using the `NAMD
<http://http://www.ks.uiuc.edu/Research/namd/>`_ molecular dynamics
engine.