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
LoopRemodel.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/LoopRemodel.hh
11
/// @brief Header for parseable class to run loop perturbation or refinement between a given loop between start/end (inclusive)
12
/// @author Jacob Corn (jecorn@u.washington.edu)
13
14
#ifndef INCLUDED_protocols_protein_interface_design_movers_LoopRemodel_hh
15
#define INCLUDED_protocols_protein_interface_design_movers_LoopRemodel_hh
16
17
#include <
core/pose/Pose.fwd.hh
>
18
#include <
protocols/moves/DataMap.fwd.hh
>
19
#include <utility/tag/Tag.fwd.hh>
20
#include <
protocols/moves/Mover.fwd.hh
>
21
#include <
core/types.hh
>
22
// AUTO-REMOVED #include <core/scoring/ScoreFunction.hh>
23
#include <
core/fragment/FragSet.fwd.hh
>
24
// AUTO-REMOVED #include <protocols/loops/Loops.hh>
25
#include <
protocols/protein_interface_design/movers/LoopRemodel.fwd.hh
>
26
27
#include <
protocols/filters/Filter.fwd.hh
>
28
29
#include <
protocols/loops/Loops.fwd.hh
>
30
#include <utility/vector1.hh>
31
32
//Auto Headers
33
#include <
protocols/simple_moves/DesignRepackMover.hh
>
34
35
36
namespace
protocols {
37
namespace
protein_interface_design {
38
namespace
movers {
39
40
class
LoopRemodel
:
public
simple_moves::DesignRepackMover
41
{
42
public
:
43
LoopRemodel
();
44
LoopRemodel
(
45
std::string
const
protocol,
46
core::Size
const
loop_start,
47
core::Size
const
loop_end,
48
core::Size
const
cycles,
49
bool
const
auto_loops,
50
//bool const design,
51
bool
const
perturb
,
52
bool
const
refine
,
53
bool
const
hurry
,
54
core::scoring::ScoreFunctionOP
hires_score,
55
core::scoring::ScoreFunctionOP
lores_score,
56
protocols::loops::LoopsCOP
loops,
57
core::fragment::FragSetOP
frag1,
58
core::fragment::FragSetOP
frag3,
59
core::fragment::FragSetOP
frag9
60
);
61
// various setters and getters
62
bool
perturb
(){
return
perturb_
; }
63
void
perturb
(
bool
const
setting ) {
perturb_
= setting; }
64
bool
refine
(){
return
refine_
; }
65
void
refine
(
bool
const
setting ) {
refine_
= setting; }
66
bool
hurry
(){
return
hurry_
; }
67
void
hurry
(
bool
const
setting ) {
hurry_
= setting; }
68
69
70
71
protocols::moves::MoverOP
clone
()
const
;
72
protocols::moves::MoverOP
fresh_instance
()
const
{
return
protocols::moves::MoverOP
(
new
LoopRemodel
); }
73
void
apply
(
core::pose::Pose
& pose );
74
virtual
std::string
get_name
()
const
;
75
void
parse_my_tag
(
utility::tag::TagPtr
const
tag,
protocols::moves::DataMap
& data,
protocols::filters::Filters_map
const
&,
protocols::moves::Movers_map
const
&,
core::pose::Pose
const
& );
76
virtual
~LoopRemodel
();
77
private
:
78
std::string
protocol_
;
79
core::scoring::ScoreFunctionOP
hires_score_
,
lores_score_
;
80
core::Size
loop_start_
,
loop_end_
,
cycles_
;
81
bool
auto_loops_
,
perturb_
,
refine_
,
hurry_
;
// design_,
82
protocols::loops::LoopsOP
loops_
;
83
core::fragment::FragSetOP
frag1_
;
84
core::fragment::FragSetOP
frag3_
;
85
core::fragment::FragSetOP
frag9_
;
86
87
bool
pick_loop_frags
(
protocols::loops::LoopsCOP
loops,
std::string
const
full_seqeuence,
std::string
const
full_ss );
88
};
89
90
}
// movers
91
}
// protein_interface_design
92
}
// protocols
93
94
95
#endif
/*INCLUDED_protocols_protein_interface_design_movers_LoopRemodel_HH*/
Generated on Sat Jun 1 2013 12:05:32 for Rosetta 3.5 by
1.8.4