Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
EnzdesSeqRecoveryCache.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 .hh file for enzdes sequence recovery cache
11 /// @brief
12 /// @author sinibjelic@gmail.com
13 
14 #ifndef INCLUDED_protocols_toolbox_match_enzdes_util_EnzdesSeqRecoveryCache_hh
15 #define INCLUDED_protocols_toolbox_match_enzdes_util_EnzdesSeqRecoveryCache_hh
16 
17 //unit headers
19 
20 //package headers
21 
22 //project headers
23 // AUTO-REMOVED #include <core/pose/Pose.hh>
24 // AUTO-REMOVED #include <core/id/SequenceMapping.hh>
25 #include <core/types.hh>
26 
27 //utility headers
28 #include <utility/pointer/ReferenceCount.hh>
29 
30 // C++ headers
31 #include <map>
32 #include <set>
33 
35 #include <core/pose/Pose.fwd.hh>
36 #include <utility/vector1.hh>
37 
38 
39 namespace protocols {
40 namespace toolbox {
41 namespace match_enzdes_util {
42 
44 
45 public:
46 
48 
49  virtual ~EnzdesSeqRecoveryCache();
50 
51  //copy constructor
53 
54  void set_sequence( core::pose::Pose & native_pose);
55 
56  std::map< core::Size, char > get_sequence();
57 
58  void set_designable_residues( std::set< core::Size > des_res );
59 
60  std::set< core::Size > get_designable_residues();
61 
64  core::pose::Pose const & designed_pose
65  ) const;
66 
67  void remap_residues( core::id::SequenceMapping const & smap );
68 
69 private:
70  std::map< core::Size, char > sequence_;
71  std::set< core::Size > designable_residues_;
72 
73 };
74 
75 } //match_enzdes_util
76 } //toolbox
77 } //protocols
78 
79 #endif