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
filters
BindingStrainFilter.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 sw=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/filters/BindingStrainFilter.hh
11
/// @brief Reports the rotameric energy strain upon binding, by separating the monomers, repacking, minimizing, and measuring the energy difference from the bound but separated state
12
/// @author Sarel Fleishman (sarelf@uw.edu)
13
14
#ifndef INCLUDED_protocols_protein_interface_design_filters_BindingStrainFilter_hh
15
#define INCLUDED_protocols_protein_interface_design_filters_BindingStrainFilter_hh
16
17
18
// Project Headers
19
#include <
protocols/filters/Filter.hh
>
20
#include <
core/pose/Pose.fwd.hh
>
21
#include <utility/tag/Tag.fwd.hh>
22
#include <
protocols/moves/DataMap.fwd.hh
>
23
#include <
protocols/protein_interface_design/filters/BindingStrainFilter.fwd.hh
>
24
#include <
protocols/moves/Mover.fwd.hh
>
25
#include <
core/pack/task/TaskFactory.fwd.hh
>
26
#include <
core/scoring/ScoreFunction.fwd.hh
>
27
28
#include <utility/vector1.hh>
29
30
// Unit headers
31
32
namespace
protocols {
33
namespace
protein_interface_design{
34
namespace
filters {
35
36
class
BindingStrainFilter
:
public
protocols::filters::Filter
37
{
38
private
:
39
typedef
protocols::filters::Filter
parent
;
40
public
:
41
/// @brief default ctor
42
BindingStrainFilter
();
43
///@brief Constructor with a single target residue
44
virtual
bool
apply
(
core::pose::Pose
const
& pose )
const
;
45
virtual
void
report
( std::ostream & out,
core::pose::Pose
const
& pose )
const
;
46
virtual
core::Real
report_sm
(
core::pose::Pose
const
& pose )
const
;
47
virtual
protocols::filters::FilterOP
clone
()
const
;
48
virtual
protocols::filters::FilterOP
fresh_instance
()
const
;
49
core::Real
compute
(
core::pose::Pose
const
& pose )
const
;
50
virtual
~BindingStrainFilter
();
51
void
parse_my_tag
(
utility::tag::TagPtr
const
tag,
52
protocols::moves::DataMap
&,
53
protocols::filters::Filters_map
const
&,
54
protocols::moves::Movers_map
const
&,
55
core::pose::Pose
const
& );
56
core::Size
jump
()
const
;
57
void
jump
(
core::Size
const
j );
58
protocols::moves::MoverOP
relax_mover
()
const
;
59
void
relax_mover
(
protocols::moves::MoverOP
const
mover );
60
core::scoring::ScoreFunctionOP
scorefxn
()
const
;
61
void
scorefxn
(
core::scoring::ScoreFunctionOP
scorefxn
);
62
core::pack::task::TaskFactoryOP
task_factory
()
const
;
63
void
task_factory
(
core::pack::task::TaskFactoryOP
task );
64
core::Real
threshold
()
const
;
65
void
threshold
(
core::Real
const
t
);
66
private
:
67
core::pack::task::TaskFactoryOP
task_factory_
;
// what to repack?
68
core::scoring::ScoreFunctionOP
scorefxn_
;
69
protocols::moves::MoverOP
relax_mover_
;
// potentially useful for minimizing after separation
70
core::Size
jump_
;
// dflt 1; which jump to separate
71
core::Real
threshold_
;
// dflt 3; how much strain to allow?
72
void
unbind
(
core::pose::Pose
& )
const
;
//utility function for unbinding the pose
73
};
74
75
}
// filters
76
}
//protein_interface_design
77
}
// protocols
78
79
#endif //INCLUDED_protocols_Filters_BindingStrainFilter_HH_
80
Generated on Sat Jun 1 2013 12:03:11 for Rosetta 3.5 by
1.8.4