Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ResidueScoresFeatures.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/ResidueScoresFeatures.hh
11 /// @brief report residue scores to features Statistics Scientific Benchmark
12 /// @author Matthew O'Meara (mattjomeara@gmail.com
13 
14 #ifndef INCLUDED_protocols_features_ResidueScoresFeatures_hh
15 #define INCLUDED_protocols_features_ResidueScoresFeatures_hh
16 
17 // Unit Headers
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>
30 #include <utility/vector1.fwd.hh>
31 #include <utility/tag/Tag.fwd.hh>
32 
33 // C++ Headers
34 #include <string>
35 
37 #include <utility/vector1.hh>
38 
39 
40 namespace protocols{
41 namespace features{
42 
44 public:
46 
49 
51 
52  virtual ~ResidueScoresFeatures();
53 
54  ///@brief return string with class name
56  type_name() const;
57 
58  ///@brief generate the table schemas and write them to the database
59  void
61  utility::sql_database::sessionOP db_session) const;
62 
63 private:
64  ///@brief generate the residue_scores_1b table schema
65  void
67  utility::sql_database::sessionOP db_session) const;
68 
69  ///@brief generate the residue_scores_2b table schema
70  void
72  utility::sql_database::sessionOP db_session) const;
73 
74  ///@brief generate the residue_scores_2b table schema
75  void
77  utility::sql_database::sessionOP db_session) const;
78 
79 public:
80  ///@brief return the set of features reporters that are required to
81  ///also already be extracted by the time this one is used.
84 
85  void
87  utility::tag::TagPtr const tag,
89  protocols::filters::Filters_map const & /*filters*/,
90  protocols::moves::Movers_map const & /*movers*/,
91  core::pose::Pose const & /*pose*/);
92 
93 
94  ///@brief collect all the feature data for the pose
97  core::pose::Pose const & pose,
98  utility::vector1< bool > const & relevant_residues,
99  boost::uuids::uuid struct_id,
100  utility::sql_database::sessionOP db_session);
101 
102 private:
103 
104  void
106  core::pose::Pose const & pose,
107  utility::vector1< bool > const & relevant_residues,
108  boost::uuids::uuid const struct_id,
109  utility::sql_database::sessionOP db_session);
110 
111  void
113  core::pose::Pose const & pose,
114  utility::vector1< bool > const & relevant_residues,
115  Size const batch_id,
116  boost::uuids::uuid const struct_id,
117  utility::sql_database::sessionOP db_session);
118 
119  void
121  core::pose::Pose const & pose,
122  utility::vector1< bool > const & relevant_residues,
123  Size const batch_id,
124  boost::uuids::uuid const struct_id,
125  utility::sql_database::sessionOP db_session);
126 
127  void
129  core::pose::Pose const & pose,
130  utility::vector1< bool > const & relevant_residues,
131  Size const batch_id,
132  boost::uuids::uuid const struct_id,
133  utility::sql_database::sessionOP db_session);
134 
135 
136 private:
137 
139 
140 };
141 
142 } // namespace
143 } // namespace
144 
145 #endif // include guard