Chemistry::Pattern::Atom - An atom that knows how to match


Chemistry-Pattern documentation Contained in the Chemistry-Pattern distribution.

Index


Code Index:

NAME

Top

Chemistry::Pattern::Atom - An atom that knows how to match

SYNOPSIS

Top

    my $patt_atom = Chemistry::Pattern::Atom->new(symbol => C);
    $patt_atom->test_sub( sub {
        my ($what, $where) = @_; 
        $where->bonds == 3 ? 1 : 0; # only match atoms with three bonds
    });

DESCRIPTION

Top

Objects of this class represent atoms in a pattern. This is a subclass of Chemistry::Atom. In addition to the properties of regular atoms, pattern atoms have a method for testing if they match an atom in a molecule. By default, a pattern atom matches an atom if they have the same symbol. It is possible to substitute this by an arbitrary criterion by providing a custom test subroutine.

METHODS

Top

$patt_atom->test($atom)

Tests if the pattern atom matches the atom given by $atom. Returns true or false.

$patt_atom->test_sub(\&my_test_sub)

Specify an arbitrary test subroutine to be used instead of the default one. &my_test_sub must take two parameters; the first one is the pattern atom and the second is the atom to match. It must return true if there is a match.

$patt_atom->map_to([$atom])

Returns or sets the atom that is considered to be matched by $patt_atom.

VERSION

Top

0.27

SEE ALSO

Top

Chemistry::Pattern

The PerlMol website http://www.perlmol.org/

AUTHOR

Top

Ivan Tubert-Brohman <itub@cpan.org>

COPYRIGHT

Top


Chemistry-Pattern documentation Contained in the Chemistry-Pattern distribution.
package Chemistry::Pattern::Atom;
$VERSION = '0.27';
# $Id: Atom.pm,v 1.12 2009/05/10 20:56:06 itubert Exp $

use 5.006;
use strict;
use Carp;
use base qw(Chemistry::Atom);

our $Debug = 0;

sub test {
    my ($what, $where) = @_;
    #print "\t\ttesting $where against $what\n";
    #print $where->print, $what->print;
    if ($what->test_sub) {
        #print "\t\thave a test sub\n";
        return $what->test_sub->($what, $where);
    } else {
        #print "\t\tdon't have a test sub\n";
        return $what->symbol eq $where->symbol;
    }
}

Chemistry::Obj::accessor('test_sub');


Chemistry::Obj::accessor('map_to');

1;