Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MinimizeBackbone.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 core/pack/task/ResfileReader.hh
11 /// @brief header of classes for resfile options
12 /// @author Gordon Lemmon
13 
14 #ifndef INCLUDED_protocols_ligand_docking_MinimizeBackbone_hh
15 #define INCLUDED_protocols_ligand_docking_MinimizeBackbone_hh
16 
17 // Unit Headers
21 
22 // Package Headers
25 // AUTO-REMOVED #include <core/id/AtomID.hh>
26 
27 //// Project Headers
28 #include <protocols/moves/Mover.hh>
29 
30 //// Scripter Headers
31 #include <utility/tag/Tag.fwd.hh>
34 
35 #include <core/id/AtomID.fwd.hh>
37 #include <utility/vector1.hh>
38 
39 ///////////////////////////////////////////////////////////////////////
40 
41 namespace protocols {
42 namespace ligand_docking {
43 
44 ///@brief
46 {
47 public:
49  MinimizeBackbone(InterfaceBuilderOP interface_builder);
50  virtual ~MinimizeBackbone();
51  MinimizeBackbone(MinimizeBackbone const & that);
52 
53  virtual void apply( core::pose::Pose & pose );
54 
55  virtual protocols::moves::MoverOP clone() const;
57  virtual std::string get_name() const;
58 
59  void parse_my_tag(
60  utility::tag::TagPtr const tag,
64  core::pose::Pose const &
65  );
66 
67 private:
68  // map of ligand chains to minimize backbone around and how much minimization around each chain
69  // Real is the Size of one standard deviation. For restraints placed on C-alphas
71 
73  ligand_options::Interface const & interface,
74  core::pose::Pose & pose
75  );
76 
80  ligand_options::Interface const & interface,
81  core::pose::Pose & pose
82  )const;
83 
87  ligand_options::Interface const & interface,
88  core::pose::Pose & pose
89  );
90 
93  core::kinematics::Edge const & edge,
94  ligand_options::Interface const & interface,
95  core::pose::Pose & pose
96  );
97 
98  std::map<core::Size, core::Size> find_attach_pts(
99  const ligand_options::Interface interface,
100  core::pose::Pose const & pose
101  ) const;
102 
103  void
105  ligand_options::Interface const & interface,
106  core::pose::Pose & pose
107  );
109  ligand_options::Interface const & interface,
110  core::pose::Pose & pose,
111  core::Size residue_id,
112  core::id::AtomID const & fixed_pt
113  );
114 };
115 
117  ligand_options::Interface & interface,
118  core::pose::Pose const & pose
119 );
120 
123  const ligand_options::Interface & interface,
124  core::pose::Pose & pose
125 );
126 
128  core::Size const jump_id,
129  ligand_options::Interface const interface,
130  core::pose::Pose const & pose
131 );
132 
135  int const & start,
136  int const & stop,
137  std::map<core::Size, core::Size > const jump_to_attach
138 );
139 
140 
141 } //namespace ligand_docking
142 } //namespace protocols
143 
144 #endif