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
protocols
features
RotamerRecoveryFeatures.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 protocols/features/RotamerRecoveryFeatures.hh
11
/// @brief report Rotamer Recovery Statistics Scientific Benchmark
12
/// @author Matthew O'Meara
13
14
#ifndef INCLUDED_protocols_features_RotamerRecoveryFeatures_hh
15
#define INCLUDED_protocols_features_RotamerRecoveryFeatures_hh
16
17
// Unit Headers
18
#include <
protocols/features/FeaturesReporter.hh
>
19
#include <
protocols/features/RotamerRecoveryFeatures.fwd.hh
>
20
21
//External
22
#include <boost/uuid/uuid.hpp>
23
24
// Project Headers
25
#include <
core/types.hh
>
26
#include <
core/pose/Pose.fwd.hh
>
27
#include <
core/pack/task/TaskFactory.hh
>
28
#include <
protocols/filters/Filter.fwd.hh
>
29
#include <
protocols/moves/Mover.fwd.hh
>
30
#include <
protocols/moves/DataMap.fwd.hh
>
31
#include <utility/vector1.fwd.hh>
32
33
// C++ Headers
34
#include <string>
35
36
#include <
core/scoring/ScoreFunction.fwd.hh
>
37
#include <utility/vector1.hh>
38
39
//Auto Headers
40
#include <
protocols/rotamer_recovery/RRComparer.fwd.hh
>
41
#include <
protocols/rotamer_recovery/RRProtocol.fwd.hh
>
42
43
44
45
namespace
protocols{
46
namespace
features{
47
48
class
RotamerRecoveryFeatures
:
public
protocols::features::FeaturesReporter
{
49
public
:
50
RotamerRecoveryFeatures
();
51
52
RotamerRecoveryFeatures
(
53
core::scoring::ScoreFunctionOP
scfxn);
54
55
RotamerRecoveryFeatures
(
56
RotamerRecoveryFeatures
const
& src);
57
58
virtual
~RotamerRecoveryFeatures
();
59
60
///@brief return string with class name
61
std::string
62
type_name
()
const
;
63
64
///@brief generate the table schemas and write them to the database
65
void
66
write_schema_to_db
(
67
utility::sql_database::sessionOP db_session)
const
;
68
69
///@brief return the set of features reporters that are required to
70
///also already be extracted by the time this one is used.
71
utility::vector1<std::string>
72
features_reporter_dependencies
()
const
;
73
74
void
75
initialize_task_factory
(
76
core::pack::task::TaskFactoryOP
task_factory);
77
78
void
79
parse_my_tag
(
80
utility::tag::TagPtr
const
tag,
81
protocols::moves::DataMap
& data,
82
protocols::filters::Filters_map
const
&
/*filters*/
,
83
protocols::moves::Movers_map
const
& movers,
84
core::pose::Pose
const
&
/*pose*/
);
85
86
///@brief collect all the feature data for the pose
87
core::Size
88
report_features
(
89
core::pose::Pose
const
& pose,
90
utility::vector1< bool >
const
& relevant_residues,
91
boost::uuids::uuid struct_id,
92
utility::sql_database::sessionOP db_session);
93
94
private
:
95
core::scoring::ScoreFunctionOP
scfxn_
;
96
protocols::rotamer_recovery::RRProtocolOP
protocol_
;
97
protocols::rotamer_recovery::RRComparerOP
comparer_
;
98
core::pack::task::TaskFactoryOP
task_factory_
;
99
100
};
101
102
}
// namespace
103
}
// namespace
104
105
#endif // include guard
Generated on Sat Jun 1 2013 11:49:23 for Rosetta 3.5 by
1.8.4