Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SwapSegment.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/SwapSegment.hh
11 /// @author Eva-Maria Strauch (evas01@u.washington.edu)
12 
13 #ifndef INCLUDED_protocols_seeded_abinitio_SwapSegment_hh
14 #define INCLUDED_protocols_seeded_abinitio_SwapSegment_hh
15 
16 #include <core/types.hh>
17 #include <core/pose/Pose.fwd.hh>
18 #include <utility/tag/Tag.fwd.hh>
19 #include <protocols/moves/Mover.hh>
23 #include <protocols/loops/Loops.hh>
25 #include <utility/vector1.hh>
26 
27 namespace protocols {
28 namespace seeded_abinitio {
29 
31  public:
33 
34  SwapSegment();
35 
36  void apply( core::pose::Pose & pose );
37 
38  virtual std::string get_name() const;
39  virtual protocols::moves::MoverOP clone() const;
41 
42  void parse_my_tag( utility::tag::TagPtr const tag,
46  core::pose::Pose const & );
47 
48 
49  virtual ~SwapSegment();
50 
51  private:
53  core::pose::Pose & pose,
55  protocols::loops::Loops & seeds);
56 
57  void swap_segment(
58  core::pose::Pose & pose,
60  protocols::loops::Loops & seeds);
61 
62  void swap_chain(
63  core::pose::Pose & pose,
64  core::pose::PoseOP & target_chain,
65  core::Size chain_to_swap);
66 
68 
70 
72 
73  ///input pdb that contains the segments that should be swapped
75 
76  ///check for the segments
78 
80 
81  ///chain that contains the seed in the seed_pdb
83 
84  ///chain in which the segments should be swapped/side chain replaced
86 
88 
89  ///switch to determine what numbering needs to be used since
90  ///parse time is different from computing time and if the pose has changed, numbering will be off
92 };
93 
94 }
95 }
96 
97 #endif