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
LoopLengthChange.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/LoopLengthChange.hh
11
/// @author Sarel Fleishman (sarelf@u.washington.edu)
12
13
#ifndef INCLUDED_protocols_protein_interface_design_movers_LoopLengthChange_hh
14
#define INCLUDED_protocols_protein_interface_design_movers_LoopLengthChange_hh
15
#include <
protocols/protein_interface_design/movers/LoopLengthChange.fwd.hh
>
16
#include <
core/types.hh
>
17
#include <
core/pose/Pose.fwd.hh
>
18
#include <utility/tag/Tag.fwd.hh>
19
#include <
protocols/filters/Filter.fwd.hh
>
20
#include <
protocols/moves/Mover.hh
>
21
#include <
protocols/moves/DataMap.fwd.hh
>
22
23
#include <utility/vector1.hh>
24
25
26
namespace
protocols {
27
namespace
protein_interface_design {
28
namespace
movers {
29
30
/// @brief designs alanine residues in place of the residue identities at the interface. Retains interface glycines and prolines.
31
class
LoopLengthChange
:
public
protocols::moves::Mover
32
{
33
public
:
34
typedef
core::pose::Pose
Pose
;
35
public
:
36
LoopLengthChange
();
37
void
apply
(
Pose
& pose );
38
virtual
std::string
get_name
()
const
;
39
protocols::moves::MoverOP
clone
()
const
;
40
protocols::moves::MoverOP
fresh_instance
()
const
{
return
protocols::moves::MoverOP
(
new
LoopLengthChange
); }
41
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
& );
42
virtual
~LoopLengthChange
();
43
void
loop_start
(
core::Size
const
loop_start
);
44
void
loop_end
(
core::Size
const
loop_end
);
45
core::Size
loop_start
()
const
;
46
core::Size
loop_end
()
const
;
47
void
delta
(
int
const
d );
48
int
delta
()
const
;
49
private
:
50
core::Size
loop_start_
,
loop_end_
;
51
int
delta_
;
// delta_: by how much to change
52
};
53
54
55
}
// movers
56
}
// protein_interface_design
57
}
// protocols
58
59
60
#endif
/*INCLUDED_protocols_protein_interface_design_movers_LoopLengthChange_HH*/
Generated on Sat Jun 1 2013 12:05:20 for Rosetta 3.5 by
1.8.4