Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RNA_HelixAssembler.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 loopRNA_minimizer.hh
11 /// @brief
12 /// @detailed
13 ///
14 /// @author Rhiju Das
15 
16 
17 #ifndef INCLUDED_protocols_rna_RNA_HelixAssembler_hh
18 #define INCLUDED_protocols_rna_RNA_HelixAssembler_hh
19 
20 #include <protocols/moves/Mover.hh>
21 #include <core/pose/Pose.fwd.hh>
26 
27 #include <core/types.hh>
28 
29 //// C++ headers
30 // AUTO-REMOVED #include <cstdlib>
31 #include <string>
32 
33 #include <utility/vector1.hh>
34 
35 
36 
37 namespace protocols {
38 namespace rna {
39 
40 /// @brief The RNA de novo structure modeling protocol
42 public:
43  /// @brief Construct the protocol object
45 
46  /// @brief Clone this object
47  virtual protocols::moves::MoverOP clone() const;
48 
49  /// @brief Apply the loop-rebuild protocol to the input pose
51  void apply( core::pose::Pose & pose );
52  virtual std::string get_name() const;
53 
54  /// @brief Apply the loop-rebuild protocol to the input pose
55  void apply( core::pose::Pose & pose, std::string const & sequence );
56 
57  void random_perturbation( bool const & setting ) { random_perturbation_ = setting; }
58 
59  void
60  set_minimize_all( bool const & setting ) { minimize_all_ = setting; }
61 
62  void
64 
65  void
66  use_phenix_geo( bool const setting );
67 
69 
70 private:
71 
72  void
73  set_Aform_torsions( core::pose::Pose & pose, Size const & n );
74 
75 
76  void
77  build_on_base_pair( core::pose::Pose & pose, Size const & n, char const & seq1, char const & seq2 );
78 
79  void
80  minimize_base_step( core::pose::Pose & pose, Size const n );
81 
82  void
84 
85  void
87 
88 private:
89 
90  bool verbose_;
95 
97 
107 
109 
111 
113 
115 
116 }; // class RNA_HelixAssembler
117 
118 
119 
120 } //rna
121 } // protocols
122 
123 #endif