Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SeedFoldTree.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 protocols/seeded_abinitio/SeedFoldTree.cc
11 /// @brief
12 /// @author Eva-Maria Strauch (evas01@u.washington.edu)
13 
14 #ifndef INCLUDED_protocols_seeded_abinitio_SeedFoldTree_hh
15 #define INCLUDED_protocols_seeded_abinitio_SeedFoldTree_hh
16 
17 #include <core/types.hh>
18 #include <core/pose/Pose.hh>
19 #include <utility/tag/Tag.fwd.hh>
21 #include <protocols/moves/Mover.hh>
26 #include <utility/string_util.hh>
28 #include <protocols/loops/Loops.hh>
29 #include <utility/vector1.hh>
30 #include <set>
31 
32 namespace protocols {
33 namespace seeded_abinitio {
34 
36 {
37 public:
38  SeedFoldTree();
40  virtual ~SeedFoldTree();
43  void apply( core::pose::Pose & pose );
44  virtual std::string get_name() const;
45  virtual protocols::moves::MoverOP clone() const;
47 
49  void scorefxn( core::scoring::ScoreFunctionOP scorefxn );
52 
53  std::set< core::Size > get_folding_verteces();
54 
55  void parse_my_tag( utility::tag::TagPtr const tag,
59  core::pose::Pose const & );
60 
61 
63  core::pose::PoseOP & seed_target_chain,
64  std::string secstr,
66  bool protein_not_folded_yet );
67 
68  bool ddg_based();
69  void ddg_based( bool ddgb );
72  bool anchor_specified();
73 
74 private:
75  /// newly generated foldtree OP
77 
78  /// is there a second target chain to add
79  bool add_target_; //= false; not implemented
80 
81  ///check whether there is a second target chain loaded
82  bool pdb_contains_target_;// = false;
83 
84  ///is the input pose submitted with the target
85  bool twochains_;
86 
87  ///vector containing all cutpoints
89 
90  ///seed info
92 
93  /// for manual set up
95 
96  /// anchor residues
99 
100  /// should the jump atoms be computed based on ddG
102 
103  /// scorefunction for ala scan
105 
106  //utility::vector1<core::Size> manual_jumps;
112  std::set< core::Size > folding_verteces_;
113  };
114  }//end seeded_abinitio
115 }//end protocols
116 
117 #endif
118