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
seeded_abinitio
SeedFoldTree.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/seeded_abinitio/SeedFoldTree.cc
11
/// @brief
12
/// @author Eva-Maria Strauch (evas01@u.washington.edu)
13
14
#ifndef INCLUDED_protocols_seeded_abinitio_SeedFoldTree_hh
15
#define INCLUDED_protocols_seeded_abinitio_SeedFoldTree_hh
16
17
#include <
core/types.hh
>
18
#include <
core/pose/Pose.hh
>
19
#include <utility/tag/Tag.fwd.hh>
20
#include <
protocols/filters/Filter.fwd.hh
>
21
#include <
protocols/moves/Mover.hh
>
22
#include <
protocols/moves/DataMap.fwd.hh
>
23
#include <
core/kinematics/FoldTree.fwd.hh
>
24
#include <
core/conformation/Residue.fwd.hh
>
25
#include <
core/scoring/ScoreFunction.fwd.hh
>
26
#include <utility/string_util.hh>
27
#include <
protocols/loops/Loops.fwd.hh
>
28
#include <
protocols/loops/Loops.hh
>
29
#include <utility/vector1.hh>
30
#include <set>
31
32
namespace
protocols {
33
namespace
seeded_abinitio {
34
35
class
SeedFoldTree
:
public
protocols::moves::Mover
36
{
37
public
:
38
SeedFoldTree
();
39
SeedFoldTree
(
core::kinematics::FoldTreeOP
ft );
40
virtual
~SeedFoldTree
();
41
void
fold_tree
(
core::kinematics::FoldTreeOP
ft );
42
core::kinematics::FoldTreeOP
fold_tree
()
const
;
43
void
apply
(
core::pose::Pose
& pose );
44
virtual
std::string
get_name
()
const
;
45
virtual
protocols::moves::MoverOP
clone
()
const
;
46
virtual
protocols::moves::MoverOP
fresh_instance
()
const
;
47
48
core::scoring::ScoreFunctionOP
scorefxn
()
const
;
49
void
scorefxn
(
core::scoring::ScoreFunctionOP
scorefxn );
50
utility::vector1 < core::Size >
get_cutpoints
();
51
core::Size
best_by_ala_scan
(
core::Size
start
,
core::Size
end
,
core::pose::PoseOP
& ts_pose );
52
53
std::set< core::Size >
get_folding_verteces
();
54
55
void
parse_my_tag
(
utility::tag::TagPtr
const
tag,
56
protocols::moves::DataMap
&,
57
protocols::filters::Filters_map
const
&,
58
protocols::moves::Movers_map
const
&,
59
core::pose::Pose
const
& );
60
61
62
core::kinematics::FoldTreeOP
set_foldtree
(
63
core::pose::PoseOP
& seed_target_chain,
64
std::string
secstr,
65
protocols::loops::Loops
& loops,
66
bool
protein_not_folded_yet );
67
68
bool
ddg_based
();
69
void
ddg_based
(
bool
ddgb );
70
void
set_anchor_res
(
utility::vector1< core::Size >
anchor );
71
void
anchor_specified
(
bool
anchor_specified
);
72
bool
anchor_specified
();
73
74
private
:
75
/// newly generated foldtree OP
76
core::kinematics::FoldTreeOP
fold_tree_
;
77
78
/// is there a second target chain to add
79
bool
add_target_
;
//= false; not implemented
80
81
///check whether there is a second target chain loaded
82
bool
pdb_contains_target_
;
// = false;
83
84
///is the input pose submitted with the target
85
bool
twochains_
;
86
87
///vector containing all cutpoints
88
utility::vector1<Size>
cut_points_
;
89
90
///seed info
91
protocols::loops::Loops
all_seeds_
;
92
93
/// for manual set up
94
bool
set_jumps_manually
;
95
96
/// anchor residues
97
utility::vector1< core::Size >
anchors_
;
98
bool
anchor_specified_
;
99
100
/// should the jump atoms be computed based on ddG
101
bool
ddg_based_
;
102
103
/// scorefunction for ala scan
104
core::scoring::ScoreFunctionOP
scorefxn_
;
105
106
//utility::vector1<core::Size> manual_jumps;
107
utility::vector1< std::pair< Size, Size >
>
manual_jump_pairs_
;
108
core::pose::PoseOP
template_pdb_
;
109
core::pose::PoseOP
target_chain_
;
110
core::pose::PoseOP
seeds_only_
;
111
core::pose::PoseOP
only_seeds_chain_
;
112
std::set< core::Size >
folding_verteces_
;
113
};
114
}
//end seeded_abinitio
115
}
//end protocols
116
117
#endif
118
Generated on Sat Jun 1 2013 12:12:28 for Rosetta 3.5 by
1.8.4