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
LoopMoverFromCommandLine.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/movers/LoopMoverFromCommandLine.hh
11
/// @brief Header for parseable class to build loops from command line
12
/// @author Jordan Willis(Jordan.r.willis@vanderbilt.edu)
13
14
#ifndef INCLUDED_protocols_protein_interface_design_movers_LoopMoverFromCommandLine_HH
15
#define INCLUDED_protocols_protein_interface_design_movers_LoopMoverFromCommandLine_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
// AUTO-REMOVED #include <core/fragment/FragSet.fwd.hh>
24
// AUTO-REMOVED #include <protocols/loops/Loops.hh>
25
#include <
protocols/protein_interface_design/movers/LoopMoverFromCommandLine.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
LoopMoverFromCommandLine
:
public
protocols::simple_moves::DesignRepackMover
41
{
42
public
:
43
LoopMoverFromCommandLine
();
44
LoopMoverFromCommandLine
(
45
std::string
const
protocol,
46
bool
const
perturb
,
47
bool
const
refine
,
48
core::scoring::ScoreFunctionOP
& hires_score,
49
core::scoring::ScoreFunctionOP
& lores_score,
50
std::string
const
loop_file_name,
51
protocols::loops::LoopsCOP
loops
52
);
53
// various setters and getters
54
bool
perturb
()
const
{
return
perturb_
;}
55
void
perturb
(
bool
const
setting ) {
perturb_
= setting; }
56
bool
refine
()
const
{
return
refine_
; }
57
void
refine
(
bool
const
setting ) {
refine_
= setting; }
58
void
refine
(
std::string
const
setting ){
string_refine_
= setting; }
59
// void string_refine( std::string const setting ){ string_refine_ = setting;}
60
std::string
string_refine
()
const
{
return
string_refine_
; }
61
void
intermedrelax
(
std::string
const
setting ){
intermedrelax_
= setting;}
62
std::string
intermedrelax
()
const
{
return
intermedrelax_
; }
63
void
relax
(
std::string
const
setting ){
relax_
= setting; }
64
std::string
relax
()
const
{
return
relax_
; }
65
void
remodel
(
std::string
const
setting ){
remodel_
= setting; }
66
std::string
remodel
()
const
{
return
remodel_
; }
67
protocols::moves::MoverOP
clone
()
const
;
68
protocols::moves::MoverOP
fresh_instance
()
const
{
return
protocols::moves::MoverOP
(
new
LoopMoverFromCommandLine
); }
69
void
apply
(
core::pose::Pose
& pose );
70
virtual
std::string
get_name
()
const
;
71
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
& );
72
virtual
~LoopMoverFromCommandLine
();
73
74
private
:
75
std::string
protocol_
;
76
core::scoring::ScoreFunctionOP
hires_score_
,
lores_score_
;
77
bool
perturb_
,
refine_
;
78
std::string
loop_file_name_
;
79
protocols::loops::LoopsOP
loops_
;
80
std::string
intermedrelax_
,
remodel_
,
relax_
,
string_refine_
;
81
};
82
83
}
//moves
84
}
//protocols
85
}
86
87
#endif
Generated on Sat Jun 1 2013 12:05:23 for Rosetta 3.5 by
1.8.4