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
simple_moves
HelicalPeptideLengthMover.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/simple_moves/HelicalPeptideLengthMover.hh
11
/// @brief Definition of classes for changing the length of a helical peptide that's connected to the rest of the pose by a jump
12
/// @author Jacob Corn
13
14
#ifndef INCLUDED_protocols_simple_moves_HelicalPeptideLengthMover_hh
15
#define INCLUDED_protocols_simple_moves_HelicalPeptideLengthMover_hh
16
17
// Unit Headers
18
#include <
protocols/simple_moves/HelicalPeptideLengthMover.fwd.hh
>
19
#include <
core/conformation/Residue.fwd.hh
>
20
21
// Package headers
22
#include <
protocols/moves/Mover.hh
>
23
24
// Project headers
25
#include <
core/pose/Pose.fwd.hh
>
26
27
// ObjexxFCL Headers
28
29
// C++ Headers
30
31
// Utility Headers
32
33
namespace
protocols {
34
namespace
simple_moves {
35
36
enum
residue_addition_type
{
37
append
=1,
38
prepend
,
39
insert
40
};
41
42
43
class
HelicalPeptideLengthMover
:
public
protocols::moves::Mover
{
44
public
:
45
HelicalPeptideLengthMover
(
core::Size
const
seqpos,
std::string
const
resname,
residue_addition_type
const
addition_type );
46
47
virtual
void
apply
(
core::pose::Pose
& pose );
48
virtual
protocols::moves::MoverOP
clone
()
const
{
49
return
(
new
protocols::simple_moves::HelicalPeptideLengthMover
(
seqpos_
,
resname_
,
addition_type_
) );
50
}
51
52
private
:
53
// private variables
54
core::Size
seqpos_
;
55
std::string
resname_
;
56
residue_addition_type
addition_type_
;
57
58
// private fxns
59
core::conformation::ResidueCOP
create_residue_from_resname_
(
std::string
const
resname );
60
void
add_residue_
(
core::pose::Pose
& pose,
core::Size
const
seqpos,
core::conformation::ResidueCOP
residue,
residue_addition_type
const
append_prepend );
61
62
};
// HelicalPeptideLengthMover
63
64
}
// moves
65
}
// protocols
66
67
68
#endif
Generated on Sat Jun 1 2013 12:16:04 for Rosetta 3.5 by
1.8.4