Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LoopRemodel.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/protein_interface_design/movers/LoopRemodel.hh
11 /// @brief Header for parseable class to run loop perturbation or refinement between a given loop between start/end (inclusive)
12 /// @author Jacob Corn (jecorn@u.washington.edu)
13 
14 #ifndef INCLUDED_protocols_protein_interface_design_movers_LoopRemodel_hh
15 #define INCLUDED_protocols_protein_interface_design_movers_LoopRemodel_hh
16 
17 #include <core/pose/Pose.fwd.hh>
19 #include <utility/tag/Tag.fwd.hh>
21 #include <core/types.hh>
22 // AUTO-REMOVED #include <core/scoring/ScoreFunction.hh>
24 // AUTO-REMOVED #include <protocols/loops/Loops.hh>
26 
28 
30 #include <utility/vector1.hh>
31 
32 //Auto Headers
34 
35 
36 namespace protocols {
37 namespace protein_interface_design {
38 namespace movers {
39 
41 {
42 public:
43  LoopRemodel();
45  std::string const protocol,
46  core::Size const loop_start,
47  core::Size const loop_end,
48  core::Size const cycles,
49  bool const auto_loops,
50  //bool const design,
51  bool const perturb,
52  bool const refine,
53  bool const hurry,
60  );
61  // various setters and getters
62  bool perturb(){ return perturb_; }
63  void perturb( bool const setting ) { perturb_ = setting; }
64  bool refine(){ return refine_; }
65  void refine( bool const setting ) { refine_ = setting; }
66  bool hurry(){ return hurry_; }
67  void hurry( bool const setting ) { hurry_ = setting; }
68 
69 
70 
73  void apply( core::pose::Pose & pose );
74  virtual std::string get_name() const;
76  virtual ~LoopRemodel();
77 private:
81  bool auto_loops_, perturb_, refine_, hurry_; // design_,
86 
87  bool pick_loop_frags( protocols::loops::LoopsCOP loops, std::string const full_seqeuence, std::string const full_ss );
88 };
89 
90 } // movers
91 } // protein_interface_design
92 } // protocols
93 
94 
95 #endif /*INCLUDED_protocols_protein_interface_design_movers_LoopRemodel_HH*/