Rosetta 3.5
Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
protocols
protein_interface_design
movers
SetAtomTree.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/protein_interface_design/movers/SetAtomTree.hh
11
/// @author Sarel Fleishman (sarelf@u.washington.edu), Jacob Corn (jecorn@u.washington.edu), Eva-Maria Strauch (evas01@u.washington.edu)
12
13
#ifndef INCLUDED_protocols_protein_interface_design_movers_SetAtomTree_hh
14
#define INCLUDED_protocols_protein_interface_design_movers_SetAtomTree_hh
15
16
#include <
core/types.hh
>
17
#include <
core/pose/Pose.fwd.hh
>
18
#include <utility/tag/Tag.fwd.hh>
19
#include <
protocols/filters/Filter.fwd.hh
>
20
#include <
protocols/moves/Mover.hh
>
21
#include <
protocols/moves/DataMap.fwd.hh
>
22
#include <
core/kinematics/FoldTree.fwd.hh
>
23
// AUTO-REMOVED #include <core/conformation/Residue.fwd.hh>
24
25
#include <utility/vector1.hh>
26
27
28
namespace
protocols {
29
namespace
protein_interface_design {
30
namespace
movers {
31
32
/// @brief a mover that sets a user-defined atom tree
33
class
SetAtomTree
:
public
protocols::moves::Mover
34
{
35
public
:
36
SetAtomTree
();
37
/// Commenting out to fix PyRosetta build SetAtomTree( core::kinematics::FoldTreeOP ft );
38
virtual
~SetAtomTree
();
39
/// Commenting out to fix PyRosetta build void fold_tree( core::kinematics::FoldTreeOP ft );
40
/// Commenting out to fix PyRosetta build core::kinematics::FoldTreeOP fold_tree() const;
41
void
apply
(
core::pose::Pose
& pose );
42
virtual
std::string
get_name
()
const
;
43
protocols::moves::MoverOP
clone
()
const
;
44
protocols::moves::MoverOP
fresh_instance
()
const
{
return
protocols::moves::MoverOP
(
new
SetAtomTree
); }
45
void
parse_my_tag
(
utility::tag::TagPtr
const
tag,
protocols::moves::DataMap
&,
protocols::filters::Filters_map
const
&,
protocols::moves::Movers_map
const
&,
core::pose::Pose
const
& );
46
core::kinematics::FoldTreeOP
create_atom_tree
(
core::pose::Pose
const
& pose,
core::Size
const
host_chain,
core::Size
const
resnum,
core::Size
const
anchor_num_ = 0,
std::string
const
connect_to
=
""
,
std::string
connect_from
=
""
);
//if connect_to or connect_from = "" optimal_connection_point is invoked
47
bool
simple_ft
()
const
{
return
simple_ft_
; }
48
void
simple_ft
(
bool
const
s ){
simple_ft_
= s; }
49
void
two_parts_chain1
(
bool
const
t
){
two_parts_chain1_
=
t
; }
50
bool
two_parts_chain1
()
const
{
return
two_parts_chain1_
; }
51
private
:
52
bool
docking_ft_
,
simple_ft_
,
two_parts_chain1_
;
//dflt false; false; false; two-parts-chain1 is intended for cases where chain1 has a cut and we want to optimize the jump between part1 and part2 along with the jump between chain1 and chain2
53
core::Size
jump_
;
//dflt true
54
std::string
resnum_
,
connect_to_
,
anchor_res_
,
connect_from_
;
//as parsed
55
core::Size
host_chain_
;
//dflt 2
56
};
57
58
}
// movers
59
}
// protein_interface_design
60
}
// protocols
61
62
63
#endif
/*INCLUDED_protocols_protein_interface_design_movers_SetAtomTree_HH*/
Generated on Sat Jun 1 2013 12:06:51 for Rosetta 3.5 by
1.8.4