Rosetta 3.5
Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
core
sequence
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
20
#include <
core/sequence/ScoringScheme.fwd.hh
>
21
22
#include <
core/sequence/DP_Matrix.hh
>
23
#include <
core/sequence/Sequence.fwd.hh
>
24
25
#include <utility/pointer/ReferenceCount.hh>
26
27
#include <
core/sequence/SequenceAlignment.fwd.hh
>
28
29
namespace
core {
30
namespace
sequence {
31
32
class
Aligner
:
public
utility::pointer::ReferenceCount
{
33
34
public
:
35
36
/// @brief ctor
37
Aligner
() {}
38
39
/// @brief dtor
40
virtual
~Aligner
() {}
41
42
virtual
43
SequenceAlignment
align
(
44
SequenceOP
seq_y,
45
SequenceOP
seq_x,
46
ScoringSchemeOP
ss
47
) = 0;
48
49
void
validate_input
(
50
SequenceOP
seq_y,
51
SequenceOP
seq_x,
52
ScoringSchemeOP
ss
53
);
54
55
SequenceAlignment
traceback
(
56
SequenceOP
seq_x,
57
SequenceOP
seq_y,
58
DP_Matrix
matrix
,
59
CellOP
start
60
);
61
62
};
// class Aligner
63
64
}
// sequence
65
}
// core
66
67
#endif
Generated on Sat Jun 1 2013 11:40:20 for Rosetta 3.5 by
1.8.4