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
rna
RNA_HelixAssembler.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 loopRNA_minimizer.hh
11
/// @brief
12
/// @detailed
13
///
14
/// @author Rhiju Das
15
16
17
#ifndef INCLUDED_protocols_rna_RNA_HelixAssembler_hh
18
#define INCLUDED_protocols_rna_RNA_HelixAssembler_hh
19
20
#include <
protocols/moves/Mover.hh
>
21
#include <
core/pose/Pose.fwd.hh
>
22
#include <
core/chemical/ResidueTypeSet.fwd.hh
>
23
#include <
core/scoring/ScoreFunction.fwd.hh
>
24
#include <
protocols/rna/RNA_IdealCoord.fwd.hh
>
25
#include <
protocols/rna/RNA_IdealCoord.hh
>
26
27
#include <
core/types.hh
>
28
29
//// C++ headers
30
// AUTO-REMOVED #include <cstdlib>
31
#include <string>
32
33
#include <utility/vector1.hh>
34
35
36
37
namespace
protocols {
38
namespace
rna {
39
40
/// @brief The RNA de novo structure modeling protocol
41
class
RNA_HelixAssembler
:
public
protocols::moves::Mover
{
42
public
:
43
/// @brief Construct the protocol object
44
RNA_HelixAssembler
();
45
46
/// @brief Clone this object
47
virtual
protocols::moves::MoverOP
clone
()
const
;
48
49
/// @brief Apply the loop-rebuild protocol to the input pose
50
using
protocols::moves::Mover::apply
;
51
void
apply
(
core::pose::Pose
& pose );
52
virtual
std::string
get_name
()
const
;
53
54
/// @brief Apply the loop-rebuild protocol to the input pose
55
void
apply
(
core::pose::Pose
& pose,
std::string
const
& sequence );
56
57
void
random_perturbation
(
bool
const
& setting ) {
random_perturbation_
= setting; }
58
59
void
60
set_minimize_all
(
bool
const
& setting ) {
minimize_all_
= setting; }
61
62
void
63
set_scorefxn
(
core::scoring::ScoreFunctionOP
setting );
64
65
void
66
use_phenix_geo
(
bool
const
setting );
67
68
void
set_model_and_remove_capping_residues
(
bool
setting ){
model_and_remove_capping_residues_
= setting; }
69
70
private
:
71
72
void
73
set_Aform_torsions
(
core::pose::Pose
& pose,
Size
const
& n );
74
75
76
void
77
build_on_base_pair
(
core::pose::Pose
& pose,
Size
const
& n,
char
const
& seq1,
char
const
& seq2 );
78
79
void
80
minimize_base_step
(
core::pose::Pose
& pose,
Size
const
n );
81
82
void
83
put_constraints_on_base_step
(
core::pose::Pose
& pose,
Size
const
& n );
84
85
void
86
get_rid_of_capping_base_pairs
(
core::pose::Pose
& pose );
87
88
private
:
89
90
bool
verbose_
;
91
bool
random_perturbation_
;
92
bool
minimize_all_
;
93
bool
use_phenix_geo_
;
94
std::string
const
ideal_jump
;
95
96
core::chemical::ResidueTypeSetCAP
rsd_set
;
97
98
core::Real
const
ALPHA_A_FORM
;
99
core::Real
const
BETA_A_FORM
;
100
core::Real
const
GAMMA_A_FORM
;
101
core::Real
const
DELTA_A_FORM
;
102
core::Real
const
EPSILON_A_FORM
;
103
core::Real
const
ZETA_A_FORM
;
104
core::Real
const
CHI_A_FORM
;
105
core::Real
const
NU2_A_FORM
;
106
core::Real
const
NU1_A_FORM
;
107
108
core::Real
perturb_amplitude_
;
109
110
core::scoring::ScoreFunctionOP
scorefxn
;
111
112
protocols::rna::RNA_IdealCoord
ideal_coord_
;
113
114
bool
model_and_remove_capping_residues_
;
115
116
};
// class RNA_HelixAssembler
117
118
119
120
}
//rna
121
}
// protocols
122
123
#endif
Generated on Sat Jun 1 2013 12:09:57 for Rosetta 3.5 by
1.8.4