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
enzdes
EnzRepackMinimize.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/enzdes/EnzRepackMinimize.hh
11
/// @author Sagar Khare (khares@uw.edu)
12
13
#ifndef INCLUDED_protocols_enzdes_EnzRepackMinimize_hh
14
#define INCLUDED_protocols_enzdes_EnzRepackMinimize_hh
15
16
// Unit headers
17
#include <
protocols/enzdes/EnzRepackMinimize.fwd.hh
>
18
19
// package headers
20
21
// Project Headers
22
#include <
core/pack/task/PackerTask.fwd.hh
>
23
#include <
core/pack/task/TaskFactory.fwd.hh
>
24
#include <
core/pose/Pose.fwd.hh
>
25
#include <
core/scoring/ScoreFunction.fwd.hh
>
26
#include <
core/types.hh
>
27
28
#include <
protocols/filters/Filter.fwd.hh
>
29
#include <
protocols/moves/DataMap.fwd.hh
>
30
#include <
protocols/moves/Mover.hh
>
31
32
#include <utility/tag/Tag.fwd.hh>
33
34
// C++ headers
35
#include <string>
36
37
#include <utility/vector1.hh>
38
39
40
namespace
protocols {
41
namespace
enzdes {
42
43
class
EnzRepackMinimize
:
public
protocols::moves::Mover
44
{
45
public
:
46
EnzRepackMinimize
();
47
EnzRepackMinimize
(
std::string
const
name
);
48
virtual
~EnzRepackMinimize
();
49
50
/// @brief turns on constraint score terms in case the pose
51
/// has an enzdes cst cache
52
void
ensure_scofx_cstfication
(
core::pose::Pose
const
& pose);
53
54
void
minimize_in_stages
(
55
core::pose::Pose
& pose,
56
core::pack::task::PackerTaskCOP
task,
57
bool
const
& cstopt,
58
bool
const
& min_sc,
59
bool
const
& min_rb,
60
bool
const
& min_lig);
61
62
//parser stuff
63
void
apply
(
core::pose::Pose
&pose );
64
virtual
std::string
get_name
()
const
;
65
protocols::moves::MoverOP
clone
()
const
;
66
protocols::moves::MoverOP
fresh_instance
()
const
;
67
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
& );
68
69
//managing minimization options
70
void
set_min_rb
(
bool
const
min_rb ) {
min_rb_
= min_rb; }
71
bool
get_min_rb
()
const
{
return
min_rb_
; }
72
void
set_min_sc
(
bool
const
min_sc ) {
min_sc_
= min_sc; }
73
bool
get_min_sc
()
const
{
return
min_sc_
; }
74
void
set_min_lig
(
bool
const
min_lig ) {
min_lig_
= min_lig; }
75
bool
get_min_lig
()
const
{
return
min_lig_
; }
76
void
set_min_bb
(
bool
const
min_bb ) {
min_bb_
= min_bb; }
77
bool
get_min_bb
()
const
{
return
min_bb_
; }
78
79
//design?
80
bool
get_design
()
const
{
return
design_
; }
81
void
set_design
(
bool
const
des ) {
design_
= des; }
82
83
//scorefunctions
84
void
set_scorefxn_repack
(
core::scoring::ScoreFunctionCOP
scorefxn );
85
void
set_scorefxn_minimize
(
core::scoring::ScoreFunctionCOP
scorefxn );
86
core::scoring::ScoreFunctionOP
scorefxn_repack
()
const
;
87
core::scoring::ScoreFunctionOP
scorefxn_minimize
()
const
;
88
89
//task stuff
90
core::pack::task::PackerTaskOP
create_ptask
(
core::pose::Pose
& pose );
91
void
task_factory
(
core::pack::task::TaskFactoryOP
p );
92
93
private
:
94
core::scoring::ScoreFunctionOP
scorefxn_repack_
;
95
core::scoring::ScoreFunctionOP
scorefxn_minimize_
;
96
bool
cst_opt_
;
//do polyala active-site optimization?
97
bool
design_
,
repack_
,
fix_catalytic_
;
// design or only repack?
98
bool
minimize_in_stages_
;
// minimize non-bb dofs followed by bb+rb-dofs?
99
bool
min_rb_
,
min_sc_
,
min_bb_
,
min_lig_
,
minimize_prot_jumps_
,
backrub_
;
100
core::pack::task::PackerTaskOP
task_
;
101
core::pack::task::TaskFactoryOP
task_factory_
;
// sequence positions and residue-level tasks to apply when setup_packer_task is done
102
core::Size
n_cycles_
;
103
};
104
105
}
// enzdes
106
}
// protocols
107
108
#endif
/*INCLUDED_protocols_enzdes_EnzRepackMinimize_HH*/
Generated on Sat Jun 1 2013 11:48:39 for Rosetta 3.5 by
1.8.4