Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DnaInterfaceMultiStateDesign.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 DnaInterfaceMultiStateDesign.hh
11 /// @brief
12 /// @author ashworth
13 
14 #ifndef INCLUDED_protocols_dna_DnaInterfaceMultiStateDesign_hh
15 #define INCLUDED_protocols_dna_DnaInterfaceMultiStateDesign_hh
16 
19 
22 
25 // AUTO-REMOVED #include <protocols/genetic_algorithm/GeneticAlgorithm.hh>
26 
27 #include <core/pose/Pose.fwd.hh>
29 #include <utility/tag/Tag.fwd.hh>
30 
32 #include <utility/vector0.hh>
33 #include <utility/vector1.hh>
34 
35 
36 namespace protocols {
37 namespace dna {
38 
39 ///@brief wraps DNA-interface specific considerations around the general multistate design / genetic algorithm framework
40 // could also derive from DnaInterfacePacker(?)
42 public:
46 
47 public:
50  virtual void apply( Pose & );
51  virtual std::string get_name() const;
53  void copy_targeted_dna( DnaDesignDefOPs const & );
54  void output_results( Pose & );
55 
56  ///@brief parse XML (specifically in the context of the parser/scripting scheme)
57  virtual void parse_my_tag(
58  TagPtr const,
61  moves::Movers_map const &,
62  Pose const & );
63  ///@brief required in the context of the parser/scripting scheme
64  virtual moves::MoverOP fresh_instance() const;
65  ///@brief required in the context of the parser/scripting scheme
66  virtual moves::MoverOP clone() const;
67 
68 private:
69  void initialize( Pose & );
70 
72 
73  void run();
74  void add_dna_states( Pose const & , PackerTaskCOP );
75 
76 private:
78  // direct use of MultiStatePacker is only for outputting results
79  // (GeneticAlgorithm also holds pointer to it and uses it heavily)
83  // option flags/parameters: constructor defaults to command line options
84  // parse_my_tag method may change them
87  // checkpointing options
91 
92 };
93 
94 } // namespace dna
95 } // namespace protocols
96 
97 #endif