Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Aligner.hh
Go to the documentation of this file.
1 // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
2 // vi: set ts=2 noet:
3 //
4 // (c) Copyright Rosetta Commons Member Institutions.
5 // (c) This file is part of the Rosetta software suite and is made available under license.
6 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
7 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
8 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
9 
10 /// @file Aligner.hh
11 /// @brief class definition for a class that aligns two Sequence objects using an
12 /// dynamic programming and an arbitrary scoring scheme.
13 /// @author James Thompson
14 
15 #ifndef INCLUDED_core_sequence_Aligner_hh
16 #define INCLUDED_core_sequence_Aligner_hh
17 
18 #include <core/types.hh>
19 
21 
24 
25 #include <utility/pointer/ReferenceCount.hh>
26 
28 
29 namespace core {
30 namespace sequence {
31 
33 
34 public:
35 
36  /// @brief ctor
37  Aligner() {}
38 
39  /// @brief dtor
40  virtual ~Aligner() {}
41 
42  virtual
44  SequenceOP seq_y,
45  SequenceOP seq_x,
47  ) = 0;
48 
49  void validate_input(
50  SequenceOP seq_y,
51  SequenceOP seq_x,
53  );
54 
56  SequenceOP seq_x,
57  SequenceOP seq_y,
60  );
61 
62 }; // class Aligner
63 
64 } // sequence
65 } // core
66 
67 #endif