Chemistry::Ring::Find(3pm) | User Contributed Perl Documentation | Chemistry::Ring::Find(3pm) |
Chemistry::Ring::Find - Find the rings (cycles) in a molecule
use Chemistry::Ring::Find ':all'; # find the smallest ring containing $atom my $ring = find_ring($atom); # find all the rings containing $bond my @rings = find_ring($bond, all => 1); # see below for more options # find the six 4-atom rings in cubane @rings = find_rings($cubane); # find a cubane SSSR with five rings @rings = find_rings($cubane, sssr => 1);
The Chemistry::Ring::Find module implements a breadth-first ring finding algorithm, and it can find all rings that contain a given atom or bond, the Smallest Set of Smallest Rings (SSSR), or the "almost SSSR", which is an unambiguous set of rings for cases such as cubane.The algorithms are based on ideas from:
1) Leach, A. R.; Dolata, D. P.; Prout, P. Automated Conformational Analysis and Structure Generation: Algorithms for Molecular Perception J. Chem. Inf. Comput. Sci. 1990, 30, 316-324
2) Figueras, J. Ring perception using breadth-first search. J. Chem. Inf. Comput. Sci. 1996, 36, 986-991.
Ref. 2 is only used for find_ring, not for find_rings, because it has been shown that the overall SSSR method in ref 2 has bugs. Ref 1 inspired find_rings, which depends on find_ring.
This module is part of the PerlMol project, <http://www.perlmol.org/>.
These functions may be exported explicitly, or all by using the :all tag, but nothing is exported by default.
@rings = find_rings($cubane); # returns SIX four-member rings @rings = find_rings($cubane, sssr => 1); # returns FIVE four-member rings (an unspecified subset of # the six rings above.)
The "all" option in find_ring doesn't quite work as expected. It finds all simple rings and some bridged rings. It never finds fused rings (which is good).
<https://github.com/perlmol/Chemistry-Ring>
Chemistry::Ring
Ivan Tubert-Brohman <itub@cpan.org>
Copyright (c) 2009 Ivan Tubert-Brohman. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
2022-12-18 | perl v5.36.0 |