Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PartialThreadingMover.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/comparative_modeling/PartialThreadingMover.hh
11 /// @brief
12 /// @author James Thompson
13 
14 // libRosetta headers
15 
16 #ifndef INCLUDED_protocols_comparative_modeling_PartialThreadingMover_HH
17 #define INCLUDED_protocols_comparative_modeling_PartialThreadingMover_HH
18 
20 
21 #include <core/types.hh>
22 #include <core/pose/Pose.hh>
23 
27 
28 #include <string>
29 
30 #include <utility/vector1.hh>
31 
32 
33 namespace protocols {
34 namespace comparative_modeling {
35 
37 
38 public:
39 
40  /// @brief align describes the association between the query and template
41  /// sequences, template_pose is the conformation from which to build a
42  /// threading model.
46  );
47 
49 
50  /// @brief Threads the given Pose onto the template_pose with the
51  /// SequenceAlignment provided.
52  virtual void apply( core::pose::Pose & query_pose );
53 
54  virtual std::string get_name() const;
55 
56  void parse_my_tag(
57  TagPtr const tag,
59  protocols::filters::Filters_map const & filters,
60  protocols::moves::Movers_map const & movers,
61  Pose const & pose
62  );
63 
64 }; // PartialThreadingMover
65 
66 } // comparative_modeling
67 } // protocols
68 
69 #endif