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
DesignMinimizeHbonds.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/DesignMinimizeHbonds.hh
11
/// @author Sarel Fleishman (sarelf@u.washington.edu), Jacob Corn (jecorn@u.washington.edu)
12
13
#ifndef INCLUDED_protocols_protein_interface_design_movers_DesignMinimizeHbonds_hh
14
#define INCLUDED_protocols_protein_interface_design_movers_DesignMinimizeHbonds_hh
15
#include <
core/types.hh
>
16
#include <
core/pose/Pose.fwd.hh
>
17
#include <utility/tag/Tag.fwd.hh>
18
#include <
protocols/filters/Filter.fwd.hh
>
19
#include <
protocols/moves/Mover.fwd.hh
>
20
// AUTO-REMOVED #include <core/scoring/ScoreFunction.hh>
21
22
#include <utility/vector1.hh>
23
24
//Auto Headers
25
#include <
protocols/simple_moves/DesignRepackMover.hh
>
26
27
28
29
namespace
protocols {
30
namespace
protein_interface_design {
31
namespace
movers {
32
33
/// @brief used to design a protein to hbond preferentially to a set of target residues on the partner.
34
/// Hbonds involving backbone or sidechain on the target can be counted, and whether to design donors or
35
/// acceptors can also be defined.
36
class
DesignMinimizeHbonds
:
public
simple_moves::DesignRepackMover
37
{
38
public
:
39
typedef
core::scoring::ScoreFunctionOP
ScoreFunctionOP
;
40
typedef
core::scoring::ScoreFunctionCOP
ScoreFunctionCOP
;
41
typedef
core::scoring::ScoreFunction
ScoreFunction
;
42
typedef
core::pose::Pose
Pose
;
43
public
:
44
DesignMinimizeHbonds
();
45
DesignMinimizeHbonds
(
ScoreFunctionCOP
scorefxn_repack
,
ScoreFunctionCOP
scorefxn_minimize
,
46
utility::vector1< core::Size >
const
target_residues,
bool
const
donors,
bool
const
acceptors,
47
bool
const
bb_hbond,
bool
const
sc_hbond,
core::Real
const
hbond_energy_threshold,
48
core::Real
interface_distance_cutoff=8.0,
49
bool
const
repack_partner1=
true
,
bool
const
repack_partner2=
false
,
bool
const
repack_non_ala =
true
);
50
DesignMinimizeHbonds
(
ScoreFunctionOP
scorefxn_repack
,
ScoreFunctionOP
scorefxn_minimize
,
51
core::Size
const
target_residue,
bool
const
donors,
bool
const
acceptors,
52
bool
const
bb_hbond,
bool
const
sc_hbond,
core::Real
const
hbond_energy_threshold,
53
core::Real
interface_distance_cutoff=8.0,
54
bool
const
repack_partner1=
true
,
bool
const
repack_partner2=
false
,
bool
const
repack_non_ala=
true
);
55
virtual
~DesignMinimizeHbonds
();
56
void
apply
(
Pose
& pose );
57
virtual
std::string
get_name
()
const
;
58
protocols::moves::MoverOP
clone
()
const
;
59
protocols::moves::MoverOP
fresh_instance
()
const
{
return
protocols::moves::MoverOP
(
new
DesignMinimizeHbonds
); }
60
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
& );
61
private
:
62
bool
donors_
,
acceptors_
;
63
bool
bb_hbond_
,
sc_hbond_
;
64
core::Real
hbond_energy_threshold_
,
interface_distance_cutoff_
;
65
};
66
67
}
// movers
68
}
// protein_interface_design
69
}
// protocols
70
71
72
#endif
/*INCLUDED_protocols_protein_interface_design_movers_DesignMinimizeHbonds_HH*/
Generated on Sat Jun 1 2013 12:04:40 for Rosetta 3.5 by
1.8.4