#include <QueryManager.h>
Inheritance diagram for MatchPolicyProteinProtein:


Public Member Functions | |
| MatchPolicyProteinProtein (HashTablePackedProtein &subjectTable) | |
| virtual void | operator() (WordSequence &querySeqFwd, MatchStore &store, MatchAlgorithm &findMatch) |
Protected Attributes | |
| HashTablePackedProtein & | subjectTable_ |
Definition at line 269 of file QueryManager.h.
| MatchPolicyProteinProtein::MatchPolicyProteinProtein | ( | HashTablePackedProtein & | subjectTable | ) |
Definition at line 205 of file QueryManager.cpp.
References MatchPolicy::addMatch_, and MatchPolicy::subjectTable_.
00205 : 00206 subjectTable_( subjectTable ), 00207 MatchPolicy( subjectTable ) 00208 { 00209 00210 subjectTable_.setQueryProtein(); 00211 addMatch_ = new MatchAdderImp(subjectTable_); 00212 }
| void MatchPolicyProteinProtein::operator() | ( | WordSequence & | querySeqFwd, | |
| MatchStore & | store, | |||
| MatchAlgorithm & | findMatch | |||
| ) | [virtual] |
Implements MatchPolicy.
Definition at line 215 of file QueryManager.cpp.
References MatchPolicy::addMatch_, MatchAdder::link(), MatchAdder::setQueryForward(), and MatchPolicy::subjectTable_.
00217 { 00218 00219 addMatch_->link(store); 00220 addMatch_->setQueryForward(); 00221 00222 findMatch( querySeqFwd, *addMatch_, subjectTable_ ); 00223 00224 } // ~QueryManager::doMatch
Here is the call graph for this function:

1.5.2