1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692
|
%{
//
// Copyright (C) 2003-2018 Greg Landrum and Rational Discovery LLC
//
// @@ All Rights Reserved @@
//
#include <cstring>
#include <iostream>
#include <vector>
#include <GraphMol/RDKitBase.h>
#include <GraphMol/RDKitQueries.h>
#include <GraphMol/SmilesParse/SmilesParse.h>
#include <GraphMol/SmilesParse/SmilesParseOps.h>
#include <RDGeneral/RDLog.h>
#define YYDEBUG 1
#include "smarts.tab.hpp"
extern int yysmarts_lex(YYSTYPE *,void *, int &);
void
yysmarts_error( const char *input,
std::vector<RDKit::RWMol *> *ms,
RDKit::Atom* &lastAtom,
RDKit::Bond* &lastBond,
void *scanner,int start_token, const char * msg )
{
throw RDKit::SmilesParseException(msg);
}
using namespace RDKit;
namespace {
void yyErrorCleanup(std::vector<RDKit::RWMol *> *molList){
for(std::vector<RDKit::RWMol *>::iterator iter=molList->begin();
iter != molList->end(); ++iter){
delete *iter;
}
molList->clear();
molList->resize(0);
}
}
%}
%define api.pure full
%lex-param {yyscan_t *scanner}
%lex-param {int& start_token}
%parse-param {const char *input}
%parse-param {std::vector<RDKit::RWMol *> *molList}
%parse-param {RDKit::Atom* &lastAtom}
%parse-param {RDKit::Bond* &lastBond}
%parse-param {void *scanner}
%parse-param {int& start_token}
%code provides {
#define YY_DECL int yylex \
(YYSTYPE * yylval_param , yyscan_t yyscanner, int& start_token)
}
%union {
int moli;
RDKit::QueryAtom * atom;
RDKit::QueryBond * bond;
int ival;
}
%token START_MOL START_ATOM START_BOND;
%token <ival> AROMATIC_ATOM_TOKEN ORGANIC_ATOM_TOKEN
%token <atom> ATOM_TOKEN
%token <atom> SIMPLE_ATOM_QUERY_TOKEN COMPLEX_ATOM_QUERY_TOKEN
%token <atom> RINGSIZE_ATOM_QUERY_TOKEN RINGBOND_ATOM_QUERY_TOKEN IMPLICIT_H_ATOM_QUERY_TOKEN
%token <atom> HYB_TOKEN HETERONEIGHBOR_ATOM_QUERY_TOKEN ALIPHATIC ALIPHATICHETERONEIGHBOR_ATOM_QUERY_TOKEN
%token <ival> ZERO_TOKEN NONZERO_DIGIT_TOKEN
%token GROUP_OPEN_TOKEN GROUP_CLOSE_TOKEN SEPARATOR_TOKEN
%token RANGE_OPEN_TOKEN RANGE_CLOSE_TOKEN
%token HASH_TOKEN MINUS_TOKEN PLUS_TOKEN
%token CHIRAL_MARKER_TOKEN CHI_CLASS_TOKEN CHI_CLASS_OH_TOKEN
%token H_TOKEN AT_TOKEN PERCENT_TOKEN
%token ATOM_OPEN_TOKEN ATOM_CLOSE_TOKEN
%token NOT_TOKEN AND_TOKEN OR_TOKEN SEMI_TOKEN BEGIN_RECURSE END_RECURSE
%token COLON_TOKEN UNDERSCORE_TOKEN
%token <bond> BOND_TOKEN
%type <moli> mol branch
%type <atom> atomd simple_atom hydrogen_atom
%type <atom> atom_expr point_query atom_query recursive_query possible_range_query
%type <ival> ring_number nonzero_number number charge_spec digit
%type <bond> bondd bond_expr bond_query
%token EOS_TOKEN
%left SEMI_TOKEN
%left OR_TOKEN
%left AND_TOKEN
%right NOT_TOKEN
%start meta_start
%%
/* --------------------------------------------------------------- */
meta_start: START_MOL mol {
// the molList has already been updated, no need to do anything
}
| START_ATOM atomd {
lastAtom = $2;
}
| START_BOND bond_expr {
lastBond = $2;
}
| meta_start error EOS_TOKEN{
yyclearin;
yyerrok;
yyErrorCleanup(molList);
YYABORT;
}
| meta_start EOS_TOKEN {
YYACCEPT;
}
| error EOS_TOKEN {
yyclearin;
yyerrok;
yyErrorCleanup(molList);
YYABORT;
}
;
/* --------------------------------------------------------------- */
// FIX: mol MINUS DIGIT
mol: atomd {
int sz = molList->size();
molList->resize( sz + 1);
(*molList)[ sz ] = new RWMol();
(*molList)[ sz ]->addAtom($1,true,true);
//delete $1;
$$ = sz;
}
| mol atomd {
RWMol *mp = (*molList)[$$];
Atom *a1 = mp->getActiveAtom();
int atomIdx1=a1->getIdx();
int atomIdx2=mp->addAtom($2,true,true);
QueryBond *newB;
// this is a bit of a hack to try and get nicer "SMILES" from
// a SMARTS molecule:
if(!(a1->getIsAromatic() && $2->getIsAromatic())){
newB = new QueryBond(Bond::SINGLE);
newB->setQuery(makeSingleOrAromaticBondQuery());
} else {
newB = new QueryBond(Bond::AROMATIC);
newB->setQuery(makeSingleOrAromaticBondQuery());
}
newB->setProp(RDKit::common_properties::_unspecifiedOrder,1);
newB->setOwningMol(mp);
newB->setBeginAtomIdx(atomIdx1);
newB->setEndAtomIdx(atomIdx2);
mp->addBond(newB);
delete newB;
//delete $2;
}
| mol bond_expr atomd {
RWMol *mp = (*molList)[$$];
int atomIdx1 = mp->getActiveAtom()->getIdx();
int atomIdx2 = mp->addAtom($3,true,true);
if( $2->getBondType() == Bond::DATIVER ){
$2->setBeginAtomIdx(atomIdx1);
$2->setEndAtomIdx(atomIdx2);
$2->setBondType(Bond::DATIVE);
}else if ( $2->getBondType() == Bond::DATIVEL ){
$2->setBeginAtomIdx(atomIdx2);
$2->setEndAtomIdx(atomIdx1);
$2->setBondType(Bond::DATIVE);
} else {
$2->setBeginAtomIdx(atomIdx1);
$2->setEndAtomIdx(atomIdx2);
}
mp->addBond($2);
delete $2;
}
| mol SEPARATOR_TOKEN atomd {
RWMol *mp = (*molList)[$$];
mp->addAtom($3,true,true);
}
| mol ring_number {
RWMol * mp = (*molList)[$$];
Atom *atom=mp->getActiveAtom();
// this is a bit of a hack to try and get nicer "SMILES" from
// a SMARTS molecule:
QueryBond * newB;
if(!atom->getIsAromatic()){
newB = new QueryBond(Bond::SINGLE);
newB->setQuery(makeSingleOrAromaticBondQuery());
} else {
newB = new QueryBond(Bond::AROMATIC);
newB->setQuery(makeSingleOrAromaticBondQuery());
}
newB->setProp(RDKit::common_properties::_unspecifiedOrder,1);
newB->setOwningMol(mp);
newB->setBeginAtomIdx(atom->getIdx());
mp->setBondBookmark(newB,$2);
mp->setAtomBookmark(atom,$2);
SmilesParseOps::CheckRingClosureBranchStatus(atom,mp);
INT_VECT tmp;
if(atom->hasProp(RDKit::common_properties::_RingClosures)){
atom->getProp(RDKit::common_properties::_RingClosures,tmp);
}
tmp.push_back(-($2+1));
atom->setProp(RDKit::common_properties::_RingClosures,tmp);
}
| mol bond_expr ring_number {
RWMol * mp = (*molList)[$$];
Atom *atom=mp->getActiveAtom();
mp->setBondBookmark($2,$3);
$2->setOwningMol(mp);
$2->setBeginAtomIdx(atom->getIdx());
mp->setAtomBookmark(atom,$3);
SmilesParseOps::CheckRingClosureBranchStatus(atom,mp);
INT_VECT tmp;
if(atom->hasProp(RDKit::common_properties::_RingClosures)){
atom->getProp(RDKit::common_properties::_RingClosures,tmp);
}
tmp.push_back(-($3+1));
atom->setProp(RDKit::common_properties::_RingClosures,tmp);
}
| mol branch {
RWMol *m1_p = (*molList)[$$],*m2_p=(*molList)[$2];
// FIX: handle generic bonds here
SmilesParseOps::AddFragToMol(m1_p,m2_p,Bond::UNSPECIFIED,Bond::NONE,false,true);
delete m2_p;
int sz = molList->size();
if ( sz==$2+1) {
molList->resize( sz-1 );
}
}
;
/* --------------------------------------------------------------- */
branch: GROUP_OPEN_TOKEN mol GROUP_CLOSE_TOKEN { $$ = $2; }
| GROUP_OPEN_TOKEN bond_expr mol GROUP_CLOSE_TOKEN {
// FIX: this needs to handle arbitrary bond_exprs
$$ = $3;
int sz = molList->size();
$2->setOwningMol((*molList)[ sz-1 ]);
$2->setBeginAtomIdx(0);
(*molList)[ sz-1 ]->setBondBookmark($2,ci_LEADING_BOND);
}
;
/* --------------------------------------------------------------- */
atomd: simple_atom
| hydrogen_atom
| ATOM_OPEN_TOKEN atom_expr ATOM_CLOSE_TOKEN
{
$$ = $2;
}
| ATOM_OPEN_TOKEN atom_expr COLON_TOKEN number ATOM_CLOSE_TOKEN
{
$$ = $2;
$$->setProp(RDKit::common_properties::molAtomMapNumber,$4);
}
;
/* --------------------------------------------------------------- */
/*
Some ugliness here around how Hs are handled. This is due to this paragraph
in the SMIRKS docs, of all places:
http://www.daylight.com/dayhtml/doc/theory/theory.smirks.html
Hence, a single change to SMARTS interpretation, for expressions of the form:
[<weight>]H<charge><map>]. In SMARTS, these expressions now are interpreted as
a hydrogen atom, rather than as any atom with one hydrogen attached.
All other SMARTS hydrogen expressions retain their pre-4.51 meanings.
Thanks to John Mayfield for pointing this out.
*/
/* --------------------------------------------------------------- */
hydrogen_atom: ATOM_OPEN_TOKEN H_TOKEN ATOM_CLOSE_TOKEN
{
$$ = new QueryAtom(1);
}
| ATOM_OPEN_TOKEN H_TOKEN COLON_TOKEN number ATOM_CLOSE_TOKEN
{
$$ = new QueryAtom(1);
$$->setProp(RDKit::common_properties::molAtomMapNumber,$4);
}
| ATOM_OPEN_TOKEN number H_TOKEN ATOM_CLOSE_TOKEN {
QueryAtom *newQ = new QueryAtom(1);
newQ->setIsotope($2);
newQ->expandQuery(makeAtomIsotopeQuery($2),Queries::COMPOSITE_AND,true);
$$=newQ;
}
| ATOM_OPEN_TOKEN number H_TOKEN COLON_TOKEN number ATOM_CLOSE_TOKEN {
QueryAtom *newQ = new QueryAtom(1);
newQ->setIsotope($2);
newQ->expandQuery(makeAtomIsotopeQuery($2),Queries::COMPOSITE_AND,true);
newQ->setProp(RDKit::common_properties::molAtomMapNumber,$5);
$$=newQ;
}
| ATOM_OPEN_TOKEN H_TOKEN charge_spec ATOM_CLOSE_TOKEN {
QueryAtom *newQ = new QueryAtom(1);
newQ->setFormalCharge($3);
newQ->expandQuery(makeAtomFormalChargeQuery($3),Queries::COMPOSITE_AND,true);
$$=newQ;
}
| ATOM_OPEN_TOKEN H_TOKEN charge_spec COLON_TOKEN number ATOM_CLOSE_TOKEN {
QueryAtom *newQ = new QueryAtom(1);
newQ->setFormalCharge($3);
newQ->expandQuery(makeAtomFormalChargeQuery($3),Queries::COMPOSITE_AND,true);
newQ->setProp(RDKit::common_properties::molAtomMapNumber,$5);
$$=newQ;
}
| ATOM_OPEN_TOKEN number H_TOKEN charge_spec ATOM_CLOSE_TOKEN {
QueryAtom *newQ = new QueryAtom(1);
newQ->setIsotope($2);
newQ->setFormalCharge($4);
newQ->expandQuery(makeAtomIsotopeQuery($2),Queries::COMPOSITE_AND,true);
newQ->expandQuery(makeAtomFormalChargeQuery($4),Queries::COMPOSITE_AND,true);
$$=newQ;
}
| ATOM_OPEN_TOKEN number H_TOKEN charge_spec COLON_TOKEN number ATOM_CLOSE_TOKEN {
QueryAtom *newQ = new QueryAtom(1);
newQ->setIsotope($2);
newQ->setFormalCharge($4);
newQ->expandQuery(makeAtomIsotopeQuery($2),Queries::COMPOSITE_AND,true);
newQ->expandQuery(makeAtomFormalChargeQuery($4),Queries::COMPOSITE_AND,true);
newQ->setProp(RDKit::common_properties::molAtomMapNumber,$6);
$$=newQ;
}
;
/* --------------------------------------------------------------- */
atom_expr: atom_expr AND_TOKEN atom_expr {
$1->expandQuery($3->getQuery()->copy(),Queries::COMPOSITE_AND,true);
if($1->getChiralTag()==Atom::CHI_UNSPECIFIED) $1->setChiralTag($3->getChiralTag());
SmilesParseOps::ClearAtomChemicalProps($1);
delete $3;
}
| atom_expr OR_TOKEN atom_expr {
$1->expandQuery($3->getQuery()->copy(),Queries::COMPOSITE_OR,true);
if($1->getChiralTag()==Atom::CHI_UNSPECIFIED) $1->setChiralTag($3->getChiralTag());
SmilesParseOps::ClearAtomChemicalProps($1);
$1->setAtomicNum(0);
delete $3;
}
| atom_expr SEMI_TOKEN atom_expr {
$1->expandQuery($3->getQuery()->copy(),Queries::COMPOSITE_AND,true);
if($1->getChiralTag()==Atom::CHI_UNSPECIFIED) $1->setChiralTag($3->getChiralTag());
SmilesParseOps::ClearAtomChemicalProps($1);
delete $3;
}
| atom_expr point_query {
$1->expandQuery($2->getQuery()->copy(),Queries::COMPOSITE_AND,true);
if($1->getChiralTag()==Atom::CHI_UNSPECIFIED) $1->setChiralTag($2->getChiralTag());
if($2->getNumExplicitHs()){
if(!$1->getNumExplicitHs()){
$1->setNumExplicitHs($2->getNumExplicitHs());
$1->setNoImplicit(true);
} else if($1->getNumExplicitHs()!=$2->getNumExplicitHs()){
// conflicting queries...
$1->setNumExplicitHs(0);
$1->setNoImplicit(false);
}
}
if($2->getFormalCharge()){
if(!$1->getFormalCharge()){
$1->setFormalCharge($2->getFormalCharge());
} else if($1->getFormalCharge()!=$2->getFormalCharge()){
// conflicting queries...
$1->setFormalCharge(0);
}
}
delete $2;
}
| point_query
;
point_query: NOT_TOKEN point_query {
$2->getQuery()->setNegation(!($2->getQuery()->getNegation()));
$2->setAtomicNum(0);
SmilesParseOps::ClearAtomChemicalProps($2);
$$ = $2;
}
| recursive_query
| atom_query
;
/* --------------------------------------------------------------- */
recursive_query: BEGIN_RECURSE mol END_RECURSE {
// this is a recursive SMARTS expression
QueryAtom *qA = new QueryAtom();
// FIX: there's maybe a leak here
RWMol *molP = (*molList)[$2];
// close any rings in the molecule:
SmilesParseOps::CloseMolRings(molP,0);
//molP->debugMol(std::cout);
qA->setQuery(new RecursiveStructureQuery(molP));
//std::cout << "qA: " << qA << " " << qA->getQuery() << std::endl;
int sz = molList->size();
if ( sz==$2+1) {
molList->resize( sz-1 );
}
$$ = qA;
}
| BEGIN_RECURSE mol END_RECURSE UNDERSCORE_TOKEN nonzero_number{
// UNDOCUMENTED EXTENSION:
// this is a recursive SMARTS expression with a serial number
// please don't write your own SMARTS that include this extension:
// the RDKit smarts parsing code will automatically insert serial
// numbers for recursive smarts patterns.
QueryAtom *qA = new QueryAtom();
// FIX: there's maybe a leak here
RWMol *molP = (*molList)[$2];
// close any rings in the molecule:
SmilesParseOps::CloseMolRings(molP,0);
//molP->debugMol(std::cout);
qA->setQuery(new RecursiveStructureQuery(molP,$5));
//std::cout << "qA: " << qA << " " << qA->getQuery() << std::endl;
int sz = molList->size();
if ( sz==$2+1) {
molList->resize( sz-1 );
}
$$ = qA;
}
;
/* --------------------------------------------------------------- */
atom_query: simple_atom
| number simple_atom {
$2->setIsotope($1);
$2->expandQuery(makeAtomIsotopeQuery($1),Queries::COMPOSITE_AND,true);
$$=$2;
}
| ATOM_TOKEN
| number ATOM_TOKEN {
$2->setIsotope($1);
$2->expandQuery(makeAtomIsotopeQuery($1),Queries::COMPOSITE_AND,true);
$$=$2;
}
| HASH_TOKEN number { $$ = new QueryAtom($2); }
| number HASH_TOKEN number {
$$ = new QueryAtom($3);
$$->setIsotope($1);
$$->expandQuery(makeAtomIsotopeQuery($1),Queries::COMPOSITE_AND,true);
}
| COMPLEX_ATOM_QUERY_TOKEN
| HETERONEIGHBOR_ATOM_QUERY_TOKEN
| ALIPHATICHETERONEIGHBOR_ATOM_QUERY_TOKEN
| RINGSIZE_ATOM_QUERY_TOKEN
| RINGBOND_ATOM_QUERY_TOKEN
| IMPLICIT_H_ATOM_QUERY_TOKEN
| COMPLEX_ATOM_QUERY_TOKEN number {
static_cast<ATOM_EQUALS_QUERY *>($1->getQuery())->setVal($2);
}
| HETERONEIGHBOR_ATOM_QUERY_TOKEN number {
$1->setQuery(makeAtomNumHeteroatomNbrsQuery($2));
}
| ALIPHATICHETERONEIGHBOR_ATOM_QUERY_TOKEN number {
$1->setQuery(makeAtomNumAliphaticHeteroatomNbrsQuery($2));
}
| RINGSIZE_ATOM_QUERY_TOKEN number {
$1->setQuery(makeAtomMinRingSizeQuery($2));
}
| RINGBOND_ATOM_QUERY_TOKEN number {
$1->setQuery(makeAtomRingBondCountQuery($2));
}
| IMPLICIT_H_ATOM_QUERY_TOKEN number {
$1->setQuery(makeAtomImplicitHCountQuery($2));
}
| possible_range_query RANGE_OPEN_TOKEN MINUS_TOKEN number RANGE_CLOSE_TOKEN {
ATOM_EQUALS_QUERY *oq = static_cast<ATOM_EQUALS_QUERY *>($1->getQuery());
ATOM_GREATEREQUAL_QUERY *nq = makeAtomSimpleQuery<ATOM_GREATEREQUAL_QUERY>($4,oq->getDataFunc(),
std::string("greater_")+oq->getDescription());
$1->setQuery(nq);
}
| possible_range_query RANGE_OPEN_TOKEN number MINUS_TOKEN RANGE_CLOSE_TOKEN {
ATOM_EQUALS_QUERY *oq = static_cast<ATOM_EQUALS_QUERY *>($1->getQuery());
ATOM_LESSEQUAL_QUERY *nq = makeAtomSimpleQuery<ATOM_LESSEQUAL_QUERY>($3,oq->getDataFunc(),
std::string("less_")+oq->getDescription());
$1->setQuery(nq);
}
| possible_range_query RANGE_OPEN_TOKEN number MINUS_TOKEN number RANGE_CLOSE_TOKEN {
ATOM_EQUALS_QUERY *oq = static_cast<ATOM_EQUALS_QUERY *>($1->getQuery());
ATOM_RANGE_QUERY *nq = makeAtomRangeQuery($3,$5,false,false,
oq->getDataFunc(),
std::string("range_")+oq->getDescription());
$1->setQuery(nq);
}
| number H_TOKEN {
QueryAtom *newQ = new QueryAtom();
newQ->setQuery(makeAtomIsotopeQuery($1));
newQ->setIsotope($1);
newQ->expandQuery(makeAtomHCountQuery(1),Queries::COMPOSITE_AND,true);
newQ->setNumExplicitHs(1);
$$=newQ;
}
| number H_TOKEN number {
QueryAtom *newQ = new QueryAtom();
newQ->setQuery(makeAtomIsotopeQuery($1));
newQ->setIsotope($1);
newQ->expandQuery(makeAtomHCountQuery($3),Queries::COMPOSITE_AND,true);
newQ->setNumExplicitHs($3);
$$=newQ;
}
| H_TOKEN number {
QueryAtom *newQ = new QueryAtom();
newQ->setQuery(makeAtomHCountQuery($2));
newQ->setNumExplicitHs($2);
$$=newQ;
}
| H_TOKEN {
QueryAtom *newQ = new QueryAtom();
newQ->setQuery(makeAtomHCountQuery(1));
newQ->setNumExplicitHs(1);
$$=newQ;
}
| charge_spec {
QueryAtom *newQ = new QueryAtom();
newQ->setQuery(makeAtomFormalChargeQuery($1));
newQ->setFormalCharge($1);
$$=newQ;
}
| AT_TOKEN AT_TOKEN {
QueryAtom *newQ = new QueryAtom();
newQ->setQuery(makeAtomNullQuery());
newQ->setChiralTag(Atom::CHI_TETRAHEDRAL_CW);
$$=newQ;
}
| AT_TOKEN {
QueryAtom *newQ = new QueryAtom();
newQ->setQuery(makeAtomNullQuery());
newQ->setChiralTag(Atom::CHI_TETRAHEDRAL_CCW);
$$=newQ;
}
| HYB_TOKEN
| number {
QueryAtom *newQ = new QueryAtom();
newQ->setQuery(makeAtomIsotopeQuery($1));
$$=newQ;
}
;
possible_range_query : COMPLEX_ATOM_QUERY_TOKEN
| HETERONEIGHBOR_ATOM_QUERY_TOKEN {
$1->setQuery(makeAtomNumHeteroatomNbrsQuery(0));
}
| ALIPHATICHETERONEIGHBOR_ATOM_QUERY_TOKEN {
$1->setQuery(makeAtomNumAliphaticHeteroatomNbrsQuery(0));
}
| RINGSIZE_ATOM_QUERY_TOKEN {
$1->setQuery(makeAtomMinRingSizeQuery(5)); // this is going to be ignored anyway
}
| RINGBOND_ATOM_QUERY_TOKEN {
$1->setQuery(makeAtomRingBondCountQuery(0));
}
| IMPLICIT_H_ATOM_QUERY_TOKEN {
$1->setQuery(makeAtomImplicitHCountQuery(0));
}
;
/* --------------------------------------------------------------- */
simple_atom: ORGANIC_ATOM_TOKEN {
//
// This construction (and some others) may seem odd, but the
// SMARTS definition requires that an atom which is aliphatic on
// input (i.e. something in the "organic subset" that is given with
// a capital letter) only match aliphatic atoms.
//
// The following rule applies a similar logic to aromatic atoms.
//
$$ = new QueryAtom($1);
$$->setQuery(makeAtomTypeQuery($1,false));
}
| AROMATIC_ATOM_TOKEN {
$$ = new QueryAtom($1);
$$->setIsAromatic(true);
$$->setQuery(makeAtomTypeQuery($1,true));
}
| SIMPLE_ATOM_QUERY_TOKEN
;
/* --------------------------------------------------------------- */
bond_expr:bond_expr AND_TOKEN bond_expr {
$1->expandQuery($3->getQuery()->copy(),Queries::COMPOSITE_AND,true);
delete $3;
}
| bond_expr OR_TOKEN bond_expr {
$1->expandQuery($3->getQuery()->copy(),Queries::COMPOSITE_OR,true);
delete $3;
}
| bond_expr SEMI_TOKEN bond_expr {
$1->expandQuery($3->getQuery()->copy(),Queries::COMPOSITE_AND,true);
delete $3;
}
| bond_query
;
bond_query: bondd
| bond_query bondd {
$1->expandQuery($2->getQuery()->copy(),Queries::COMPOSITE_AND,true);
delete $2;
}
;
/* --------------------------------------------------------------- */
bondd: BOND_TOKEN
| MINUS_TOKEN {
QueryBond *newB= new QueryBond();
newB->setBondType(Bond::SINGLE);
newB->setQuery(makeBondOrderEqualsQuery(Bond::SINGLE));
$$ = newB;
}
| HASH_TOKEN {
QueryBond *newB= new QueryBond();
newB->setBondType(Bond::TRIPLE);
newB->setQuery(makeBondOrderEqualsQuery(Bond::TRIPLE));
$$ = newB;
}
| COLON_TOKEN {
QueryBond *newB= new QueryBond();
newB->setBondType(Bond::AROMATIC);
newB->setQuery(makeBondOrderEqualsQuery(Bond::AROMATIC));
$$ = newB;
}
| AT_TOKEN {
QueryBond *newB= new QueryBond();
newB->setQuery(makeBondIsInRingQuery());
$$ = newB;
}
| NOT_TOKEN bondd {
$2->getQuery()->setNegation(!($2->getQuery()->getNegation()));
$$ = $2;
}
;
/* --------------------------------------------------------------- */
charge_spec: PLUS_TOKEN PLUS_TOKEN { $$=2; }
| PLUS_TOKEN number { $$=$2; }
| PLUS_TOKEN { $$=1; }
| MINUS_TOKEN MINUS_TOKEN { $$=-2; }
| MINUS_TOKEN number { $$=-$2; }
| MINUS_TOKEN { $$=-1; }
;
/* --------------------------------------------------------------- */
ring_number: digit
| PERCENT_TOKEN NONZERO_DIGIT_TOKEN digit { $$ = $2*10+$3; }
| PERCENT_TOKEN GROUP_OPEN_TOKEN digit GROUP_CLOSE_TOKEN { $$ = $3; }
| PERCENT_TOKEN GROUP_OPEN_TOKEN digit digit GROUP_CLOSE_TOKEN { $$ = $3*10+$4; }
| PERCENT_TOKEN GROUP_OPEN_TOKEN digit digit digit GROUP_CLOSE_TOKEN { $$ = $3*100+$4*10+$5; }
| PERCENT_TOKEN GROUP_OPEN_TOKEN digit digit digit digit GROUP_CLOSE_TOKEN { $$ = $3*1000+$4*100+$5*10+$6; }
| PERCENT_TOKEN GROUP_OPEN_TOKEN digit digit digit digit digit GROUP_CLOSE_TOKEN { $$ = $3*10000+$4*1000+$5*100+$6*10+$7; }
;
/* --------------------------------------------------------------- */
number: ZERO_TOKEN
| nonzero_number
;
/* --------------------------------------------------------------- */
nonzero_number: NONZERO_DIGIT_TOKEN
| nonzero_number digit { $$ = $1*10 + $2; }
;
digit: NONZERO_DIGIT_TOKEN
| ZERO_TOKEN
;
%%
|