Skip to content

Commit

Permalink
1.0.2 docs
Browse files Browse the repository at this point in the history
  • Loading branch information
samirelanduk committed Oct 1, 2019
1 parent 22130b8 commit 98c586a
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 4 deletions.
23 changes: 19 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ atomium

|travis| |coveralls| |pypi| |version| |commit| |downloads|

.. |travis| image:: https://api.travis-ci.org/samirelanduk/atomium.svg?branch=1.0.1
.. |travis| image:: https://api.travis-ci.org/samirelanduk/atomium.svg?branch=1.0.2
:target: https://travis-ci.org/samirelanduk/atomium/

.. |coveralls| image:: https://coveralls.io/repos/github/samirelanduk/atomium/badge.svg?branch=1.0.1
.. |coveralls| image:: https://coveralls.io/repos/github/samirelanduk/atomium/badge.svg?branch=1.0.2
:target: https://coveralls.io/github/samirelanduk/atomium/

.. |pypi| image:: https://img.shields.io/pypi/pyversions/atomium.svg
Expand All @@ -15,8 +15,8 @@ atomium
.. |version| image:: https://img.shields.io/pypi/v/atomium.svg
:target: https://pypi.org/project/atomium/

.. |commit| image:: https://img.shields.io/github/last-commit/samirelanduk/atomium/1.0.1.svg
:target: https://github.com/samirelanduk/atomium/tree/1.0.1/
.. |commit| image:: https://img.shields.io/github/last-commit/samirelanduk/atomium/1.0.2.svg
:target: https://github.com/samirelanduk/atomium/tree/1.0.2/

.. |downloads| image:: https://img.shields.io/pypi/dm/atomium.svg
:target: https://pypi.org/project/atomium/
Expand Down Expand Up @@ -284,6 +284,12 @@ that same distance, rotate it and translate it through space, see where its new
center of mass is, and then finally get its RMSD with the other similar ligand
in the model.

Any operation which involves identifying nearby structures or atoms can be sped
up - dramatically in the case of very large structures - by calling
``Model.optimise_distances`` on the ``Model`` first. This
prevents atomium from having to compare every atom with every other atom every
time a proximity check is made.

The ``Atom`` objects themselves have their own useful properties.

>>> pdb1.model.atom(97)
Expand Down Expand Up @@ -371,6 +377,15 @@ results.
Changelog
---------

Release 1.0.2
~~~~~~~~~~~~~

`1 October 2019`

* Added distance optimiser for proximity checks.
* Improved test coverage.


Release 1.0.1
~~~~~~~~~~~~~

Expand Down
9 changes: 9 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
---------

Release 1.0.2
~~~~~~~~~~~~~

`1 October 2019`

* Added distance optimiser for proximity checks.
* Improved test coverage.


Release 1.0.1
~~~~~~~~~~~~~

Expand Down
6 changes: 6 additions & 0 deletions docs/source/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,12 @@ that same distance, rotate it and translate it through space, see where its new
center of mass is, and then finally get its RMSD with the other similar ligand
in the model.

Any operation which involves identifying nearby structures or atoms can be sped
up - dramatically in the case of very large structures - by calling
:py:meth:`~.Model.optimise_distances` on the :py:class:`.Model` first. This
prevents atomium from having to compare every atom with every other atom every
time a proximity check is made.

The :py:class:`.Atom` objects themselves have their own useful properties.

>>> pdb1.model.atom(97)
Expand Down

0 comments on commit 98c586a

Please sign in to comment.