You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,12 +34,14 @@ The features where support is planned are planned to be included in the 1.0 rele
34
34
* The crate has many ways of iterating over the PDB structure to allow for convenient access and control over the performance.
35
35
36
36
## Latest update
37
-
### v0.8.0 'All the hierarchy'
38
-
* Added support for residue serial numbers over 9999 and atom serial numbers over 99999 for PDB files. (Thanks to DocKDE)
39
-
* Changed argument type of `save_pdb` from `PDB` to `&PDB`. (Thanks to DocKDE)
40
-
* Allow lack of chain name in PDB files. (Thanks to DocKDE)
41
-
* Added mutable structs to extend the use of `AtomWithHierarchy` alongside a refactor which created a struct for every hierarchy level. See the docs for more information.
42
-
* Removed `Atom.pos_array()` and moved the `rstar::rtree` to use `(f64, f64, f64)` instead of `[f64; 3]`. This was made possible by the adoption of tuples as points in rstar.
37
+
### v0.9.0 'Structured search'
38
+
* Added `find` method on all levels in the PDB, this should allow for human friendly atom(s) searching.
* Added `atom.overlaps_bound()` which uses covalent bond radii instead of unbound radii. (Thanks to raised issue)
42
+
* Extended `atomic_number` to take the first character of the name if this is one of "CHONS" and the element is unset and the name is not an element name.
43
+
* Updated covalent bond radii to work in Å as well (was picometers).
44
+
* Respecified the dependencies versions to allow cargo to more often reuse dependencies in complex projects.
43
45
44
46
Also see [changelog](https://github.com/douweschulte/pdbtbx/blob/master/changelog.md).
Copy file name to clipboardExpand all lines: changelog.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
# Changelog
2
2
All versions are properly annotated on [github](https://github.com/douweschulte/pdbtbx/releases) so there the source code for each version can be retrieved.
3
3
4
-
### upcoming
5
-
* Implemented `find` method on all levels in the PDB, this should allow for human friendly atom(s) searching.
4
+
### v0.9.0 'Structured search'
5
+
* Added `find` method on all levels in the PDB, this should allow for human friendly atom(s) searching.
* Added `atom.overlaps_bound()` which uses covalent bond radii instead of unbound radii. (Thanks to raised issue)
8
9
* Extended `atomic_number` to take the first character of the name if this is one of "CHONS" and the element is unset and the name is not an element name.
9
-
* Respecified the dependencies versions to allow cargo to more often reuse dependencies in complex projects.
10
10
* Updated covalent bond radii to work in Å as well (was picometers).
11
-
* Added `atom.overlaps_bound()` which uses covalent bond radii instead of unbound radii. (Thanks to raised issue)
11
+
* Respecified the dependencies versions to allow cargo to more often reuse dependencies in complex projects.
12
12
13
13
### v0.8.0 'All the hierarchy'
14
14
* Added support for residue serial numbers over 9999 and atom serial numbers over 99999 for PDB files. (Thanks to DocKDE)
0 commit comments