Skip to content

Commit 98c586a

Browse files
committed
1.0.2 docs
1 parent 22130b8 commit 98c586a

File tree

3 files changed

+34
-4
lines changed

3 files changed

+34
-4
lines changed

README.rst

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ atomium
33

44
|travis| |coveralls| |pypi| |version| |commit| |downloads|
55

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

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

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

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

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

287+
Any operation which involves identifying nearby structures or atoms can be sped
288+
up - dramatically in the case of very large structures - by calling
289+
``Model.optimise_distances`` on the ``Model`` first. This
290+
prevents atomium from having to compare every atom with every other atom every
291+
time a proximity check is made.
292+
287293
The ``Atom`` objects themselves have their own useful properties.
288294

289295
>>> pdb1.model.atom(97)
@@ -371,6 +377,15 @@ results.
371377
Changelog
372378
---------
373379

380+
Release 1.0.2
381+
~~~~~~~~~~~~~
382+
383+
`1 October 2019`
384+
385+
* Added distance optimiser for proximity checks.
386+
* Improved test coverage.
387+
388+
374389
Release 1.0.1
375390
~~~~~~~~~~~~~
376391

docs/source/changelog.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changelog
22
---------
33

4+
Release 1.0.2
5+
~~~~~~~~~~~~~
6+
7+
`1 October 2019`
8+
9+
* Added distance optimiser for proximity checks.
10+
* Improved test coverage.
11+
12+
413
Release 1.0.1
514
~~~~~~~~~~~~~
615

docs/source/overview.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,12 @@ that same distance, rotate it and translate it through space, see where its new
183183
center of mass is, and then finally get its RMSD with the other similar ligand
184184
in the model.
185185

186+
Any operation which involves identifying nearby structures or atoms can be sped
187+
up - dramatically in the case of very large structures - by calling
188+
:py:meth:`~.Model.optimise_distances` on the :py:class:`.Model` first. This
189+
prevents atomium from having to compare every atom with every other atom every
190+
time a proximity check is made.
191+
186192
The :py:class:`.Atom` objects themselves have their own useful properties.
187193

188194
>>> pdb1.model.atom(97)

0 commit comments

Comments
 (0)