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
HotspotDisjointedFoldTreeMover.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/HotspotDisjointedFoldTreeMover.hh
11
/// author Sarel Fleishman (sarelf@uw.edu)
12
13
#ifndef INCLUDED_protocols_protein_interface_design_movers_HotspotDisjointedFoldTreeMover_HH
14
#define INCLUDED_protocols_protein_interface_design_movers_HotspotDisjointedFoldTreeMover_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
#include <set>
24
#include <
core/scoring/ScoreFunction.fwd.hh
>
25
26
#include <utility/vector1.hh>
27
28
29
namespace
protocols {
30
namespace
protein_interface_design {
31
namespace
movers {
32
33
class
HotspotDisjointedFoldTreeMover
:
public
protocols::moves::Mover
34
{
35
public
:
36
typedef
core::pose::Pose
Pose
;
37
38
public
:
39
HotspotDisjointedFoldTreeMover
();
40
void
apply
(
core::pose::Pose
& pose );
41
virtual
std::string
get_name
()
const
;
42
void
parse_my_tag
(
utility::tag::TagPtr
const
tag,
43
protocols::moves::DataMap
&,
44
protocols::filters::Filters_map
const
&,
45
protocols::moves::Movers_map
const
&,
46
core::pose::Pose
const
& );
47
48
protocols::moves::MoverOP
clone
()
const
;
49
protocols::moves::MoverOP
fresh_instance
()
const
{
return
protocols::moves::MoverOP
(
new
HotspotDisjointedFoldTreeMover
); }
50
virtual
~HotspotDisjointedFoldTreeMover
();
51
52
void
add_residue
(
core::Size
const
r );
53
std::set< core::Size >
get_residues
()
const
;
54
void
chain
(
core::Size
const
c
);
55
core::Size
chain
()
const
;
56
core::Real
ddG_threshold
()
const
;
57
void
ddG_threshold
(
core::Real
const
);
58
core::scoring::ScoreFunctionOP
scorefxn
()
const
;
59
void
scorefxn
(
core::scoring::ScoreFunctionOP
scorefxn
);
60
void
interface_radius
(
core::Real
const
rad );
61
core::Real
interface_radius
()
const
;
62
core::kinematics::FoldTreeOP
make_disjointed_foldtree
(
core::pose::Pose
const
& pose )
const
;
63
private
:
64
core::Real
ddG_threshold_
;
//dflt 1.0; ala-scan energy above which residues will be considered for the disjointed foldtree
65
std::set< core::Size >
residues_
;
// the list of residues to make disjointed
66
core::Size
chain_
;
//deflt 2; what is the host chain
67
core::Real
interface_radius_
;
//dflt 8 ; value used to look for hotspot residues
68
core::scoring::ScoreFunctionOP
scorefxn_
;
//dflt NULL score12(in rosettascripts)
69
};
70
71
72
}
//movers
73
}
// protein_interface_design
74
}
// protocols
75
76
77
#endif
/*INCLUDED_protocols_protein_interface_design_movers_HotspotDisjointedFoldTreeMover_HH*/
78
Generated on Sat Jun 1 2013 12:04:59 for Rosetta 3.5 by
1.8.4