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
PairFeatures.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/PairFeatures.hh
11
/// @brief report residue and atom pair geometry and scores to features Statistics Scientific Benchmark
12
/// @author Matthew O'Meara (mattjomeara@gmail.com)
13
14
#ifndef INCLUDED_protocols_features_PairFeatures_hh
15
#define INCLUDED_protocols_features_PairFeatures_hh
16
17
// Unit Headers
18
#include <
protocols/features/FeaturesReporter.hh
>
19
#include <
protocols/features/PairFeatures.fwd.hh
>
20
21
//External
22
#include <boost/uuid/uuid.hpp>
23
24
// Project Headers
25
#include <
core/pose/Pose.fwd.hh
>
26
#include <
core/types.hh
>
27
#include <utility/vector1.fwd.hh>
28
29
// C++ Headers
30
#include <string>
31
32
#include <utility/vector1.hh>
33
34
35
namespace
protocols{
36
namespace
features{
37
38
class
PairFeatures
:
public
protocols::features::FeaturesReporter
{
39
public
:
40
PairFeatures
();
41
42
PairFeatures
(
PairFeatures
const
& src );
43
44
virtual
~PairFeatures
();
45
46
///@brief return string with class name
47
std::string
48
type_name
()
const
;
49
50
///@brief generate the table schemas and write them to the database
51
void
52
write_schema_to_db
(
53
utility::sql_database::sessionOP db_session)
const
;
54
55
private
:
56
///@brief generate the beta_turns table schema
57
void
58
write_residue_pairs_table_schema
(
59
utility::sql_database::sessionOP db_session)
const
;
60
61
public
:
62
///@brief return the set of features reporters that are required to
63
///also already be extracted by the time this one is used.
64
utility::vector1<std::string>
65
features_reporter_dependencies
()
const
;
66
67
///@brief collect all the feature data for the pose
68
core::Size
69
report_features
(
70
core::pose::Pose
const
& pose,
71
utility::vector1< bool >
const
& relevant_residues,
72
boost::uuids::uuid struct_id,
73
utility::sql_database::sessionOP db_session);
74
75
void
76
report_residue_pairs
(
77
core::pose::Pose
const
& pose,
78
utility::vector1< bool >
const
& relevant_residues,
79
boost::uuids::uuid
const
struct_id,
80
utility::sql_database::sessionOP db_session);
81
82
};
83
84
}
// namespace
85
}
// namespace
86
87
#endif // include guard
Generated on Sat Jun 1 2013 11:49:11 for Rosetta 3.5 by
1.8.4