Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
HighResDocker.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_HighResDocker_hh
15 #define INCLUDED_protocols_ligand_docking_HighResDocker_hh
16 
17 // Unit Headers
21 // AUTO-REMOVED #include <protocols/ligand_docking/MinimizeBackbone.hh>
24 
25 // Package Headers
26 #include <core/pose/Pose.fwd.hh>
27 // AUTO-REMOVED #include <protocols/ligand_docking/ResidueTorsionRestraints.fwd.hh>
28 // AUTO-REMOVED #include <core/kinematics/MoveMap.fwd.hh>
31 #include <protocols/moves/Mover.hh>
32 
33 // Project Headers
34 #include <core/types.hh>
35 
36 //// Scripter Headers
37 #include <utility/tag/Tag.fwd.hh>
40 
41 // Utility Headers
42 
43 // STL Headers
44 #include <map>
45 #include <string>
46 // AUTO-REMOVED #include <set>
47 #include <vector>
48 
49 #include <utility/vector1.hh>
50 
51 
52 ///////////////////////////////////////////////////////////////////////
53 
54 namespace protocols {
55 namespace ligand_docking {
56 
58 {
59 public:
60 
61  HighResDocker();
62  virtual ~HighResDocker();
63  HighResDocker(HighResDocker const & that);
64 
65  virtual protocols::moves::MoverOP clone() const;
67  virtual std::string get_name() const;
68 
69  void parse_my_tag(
70  utility::tag::TagPtr const tag,
74  core::pose::Pose const &
75  );
76 
77  void apply(core::pose::Pose & pose);
78 
79 private:
82  std::vector<std::string> chains_;
86 
89  void remove_ligand_tethers(core::pose::Pose pose, TetherLigandOPs ligand_tethers);
90 
92  core::pose::Pose const & pose,
93  core::Size const ligand_residue_id,
95  ) const;
96 
99  core::pose::Pose const & pose,
100  bool all_residues= false
101  ) const;
102 
105  core::pose::Pose const & pose,
106  ligand_options::Interface const allow_repack
107  ) const;
108 
110  create_rigid_body_movers(core::pose::Pose const & pose) const;
111 
113  core::pose::Pose & pose,
115  );
116 };
117 
118 //void setup_native_residue_favoring(core::pose::Pose & pose, core::pack::task::PackerTaskOP task);
119 
120 } //namespace ligand_docking
121 } //namespace protocols
122 
123 #endif