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
ligand_docking
MinimizeBackbone.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 core/pack/task/ResfileReader.hh
11
/// @brief header of classes for resfile options
12
/// @author Gordon Lemmon
13
14
#ifndef INCLUDED_protocols_ligand_docking_MinimizeBackbone_hh
15
#define INCLUDED_protocols_ligand_docking_MinimizeBackbone_hh
16
17
// Unit Headers
18
#include <
protocols/ligand_docking/MinimizeBackbone.fwd.hh
>
19
#include <
protocols/ligand_docking/ligand_options/Interface.fwd.hh
>
20
#include <
protocols/ligand_docking/InterfaceBuilder.fwd.hh
>
21
22
// Package Headers
23
#include <
core/kinematics/FoldTree.fwd.hh
>
24
#include <
core/kinematics/Edge.fwd.hh
>
25
// AUTO-REMOVED #include <core/id/AtomID.hh>
26
27
//// Project Headers
28
#include <
protocols/moves/Mover.hh
>
29
30
//// Scripter Headers
31
#include <utility/tag/Tag.fwd.hh>
32
#include <
protocols/moves/DataMap.fwd.hh
>
33
#include <
protocols/filters/Filter.fwd.hh
>
34
35
#include <
core/id/AtomID.fwd.hh
>
36
#include <
protocols/loops/Loop.fwd.hh
>
37
#include <utility/vector1.hh>
38
39
///////////////////////////////////////////////////////////////////////
40
41
namespace
protocols {
42
namespace
ligand_docking {
43
44
///@brief
45
class
MinimizeBackbone
:
public
protocols::moves::Mover
46
{
47
public
:
48
MinimizeBackbone
();
49
MinimizeBackbone
(
InterfaceBuilderOP
interface_builder);
50
virtual
~MinimizeBackbone
();
51
MinimizeBackbone
(
MinimizeBackbone
const
& that);
52
53
virtual
void
apply
(
core::pose::Pose
& pose );
54
55
virtual
protocols::moves::MoverOP
clone
()
const
;
56
virtual
protocols::moves::MoverOP
fresh_instance
()
const
;
57
virtual
std::string
get_name
()
const
;
58
59
void
parse_my_tag
(
60
utility::tag::TagPtr
const
tag,
61
protocols::moves::DataMap
&,
62
protocols::filters::Filters_map
const
&,
63
protocols::moves::Movers_map
const
&,
64
core::pose::Pose
const
&
65
);
66
67
private
:
68
// map of ligand chains to minimize backbone around and how much minimization around each chain
69
// Real is the Size of one standard deviation. For restraints placed on C-alphas
70
InterfaceBuilderOP
interface_builder_
;
71
72
void
reorder_foldtree_around_mobile_regions
(
73
ligand_options::Interface
const
& interface,
74
core::pose::Pose
& pose
75
);
76
77
core::kinematics::FoldTreeOP
78
create_fold_tree_with_ligand_jumps_from_attach_pts
(
79
core::kinematics::FoldTreeCAP
,
80
ligand_options::Interface
const
& interface,
81
core::pose::Pose
& pose
82
)
const
;
83
84
core::kinematics::FoldTreeOP
85
create_fold_tree_with_cutpoints
(
86
core::kinematics::FoldTreeCOP
f,
87
ligand_options::Interface
const
& interface,
88
core::pose::Pose
& pose
89
);
90
91
utility::vector1< protocols::loops::Loop >
92
add_cut_points
(
93
core::kinematics::Edge
const
& edge,
94
ligand_options::Interface
const
& interface,
95
core::pose::Pose
& pose
96
);
97
98
std::map<core::Size, core::Size>
find_attach_pts
(
99
const
ligand_options::Interface
interface,
100
core::pose::Pose
const
& pose
101
)
const
;
102
103
void
104
restrain_protein_Calphas
(
105
ligand_options::Interface
const
& interface,
106
core::pose::Pose
& pose
107
);
108
void
restrain_protein_Calpha
(
109
ligand_options::Interface
const
& interface,
110
core::pose::Pose
& pose,
111
core::Size
residue_id,
112
core::id::AtomID
const
& fixed_pt
113
);
114
};
115
116
void
restrict_to_protein_residues
(
117
ligand_options::Interface
& interface,
118
core::pose::Pose
const
& pose
119
);
120
121
void
reorder_with_first_non_mobile_as_root
(
122
core::kinematics::FoldTreeOP
f,
123
const
ligand_options::Interface
& interface,
124
core::pose::Pose
& pose
125
);
126
127
core::Size
find_attach_pt
(
128
core::Size
const
jump_id,
129
ligand_options::Interface
const
interface,
130
core::pose::Pose
const
& pose
131
);
132
133
core::Size
134
find_peptide_attach_pt
(
135
int
const
&
start
,
136
int
const
&
stop
,
137
std::map<core::Size, core::Size >
const
jump_to_attach
138
);
139
140
141
}
//namespace ligand_docking
142
}
//namespace protocols
143
144
#endif
Generated on Sat Jun 1 2013 11:56:07 for Rosetta 3.5 by
1.8.4