Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DesignProteinBackboneAroundDNA.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 DesignProteinBackboneAroundDNA.hh
11 /// @brief performs a round flexible backbone sampling/design. (Interim(?) encapsulation of some loose code in a mover class.)
12 /// @author ashworth
13 
14 #ifndef INCLUDED_protocols_dna_DesignProteinBackboneAroundDNA_hh
15 #define INCLUDED_protocols_dna_DesignProteinBackboneAroundDNA_hh
16 
19 
23 
24 #include <utility/vector1.fwd.hh>
25 
26 #include <string>
27 
28 #include <utility/vector0.hh>
29 #include <utility/vector1.hh>
30 
31 
32 namespace protocols {
33 namespace dna {
34 
35 // conceptually this not really a PackRotamersMover, but deriving this way makes sense on a practical level
37 public:
39 
40 public:
43 
45 
46  void targeted_dna( DnaDesignDefOPs const & );
47  DnaDesignDefOPs const & targeted_dna() const;
48 
49  virtual void apply( Pose & );
50  virtual std::string get_name() const;
51 
52  ///@brief parse XML (specifically in the context of the parser/scripting scheme)
53  virtual void parse_my_tag(
54  TagPtr const,
57  moves::Movers_map const &,
58  Pose const & );
59  ///@brief required in the context of the parser/scripting scheme
60  virtual moves::MoverOP fresh_instance() const;
61  ///@brief required in the context of the parser/scripting scheme
62  virtual moves::MoverOP clone() const;
63 
64 private: // methods
65  void set_loop_info( Pose const &, Loops const & );
66  void ccd( Pose &, loops::LoopsOP const, TaskFactoryCOP );
67  void backrub( Pose &, loops::LoopsOP const, TaskFactoryCOP );
68 
69 private: // data
75 };
76 
77 } // namespace dna
78 } // namespace protocols
79 
80 #endif