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
StartFrom.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/ligand_docking/StartFrom.hh
11
/// @brief header of classes for resfile options
12
/// @author Gordon Lemmon
13
14
#ifndef INCLUDED_protocols_ligand_docking_StartFrom_hh
15
#define INCLUDED_protocols_ligand_docking_StartFrom_hh
16
17
#include <
protocols/ligand_docking/StartFrom.fwd.hh
>
18
19
#include <
core/pose/Pose.fwd.hh
>
20
21
#include <
protocols/moves/Mover.hh
>
22
#include <
core/types.hh
>
23
// AUTO-REMOVED #include <numeric/xyzVector.hh>
24
#include <utility/vector1.hh>
25
26
//// Scripter Headers
27
#include <utility/tag/Tag.fwd.hh>
28
#include <
protocols/moves/DataMap.fwd.hh
>
29
#include <
protocols/filters/Filter.fwd.hh
>
30
31
///////////////////////////////////////////////////////////////////////
32
33
namespace
protocols {
34
namespace
ligand_docking {
35
36
class
StartFrom
:
public
protocols::moves::Mover
37
{
38
public
:
39
StartFrom
();
40
virtual
~StartFrom
();
41
StartFrom
(
StartFrom
const
& that);
42
43
virtual
protocols::moves::MoverOP
clone
()
const
;
44
virtual
protocols::moves::MoverOP
fresh_instance
()
const
;
45
virtual
std::string
get_name
()
const
;
46
47
void
parse_my_tag
(
48
utility::tag::TagPtr
const
tag,
49
protocols::moves::DataMap
&,
50
protocols::filters::Filters_map
const
&,
51
protocols::moves::Movers_map
const
&,
52
core::pose::Pose
const
&
53
);
54
55
void
coords
(
core::Vector
const
&
coords
,
std::string
const
& pdb_tag);
56
57
void
chain
(
std::string
const
&
chain
);
58
59
void
apply
(
core::pose::Pose
& pose);
60
61
// Undefined, commenting out to make PyRosetta compile
62
//StartFrom(core::pose::Pose & pose);
63
64
void
parse_startfrom_file
(
std::string
filename
);
65
66
private
:
67
std::string
chain_
;
68
std::map< std::string, utility::vector1<core::Vector> >
starting_points_
;
69
std::map<std::string,core::Vector >
potential_starting_positions_
;
70
};
71
72
void
move_ligand_to_desired_centroid
(
73
core::Size
const
jump_id,
74
core::Vector
const
desired_centroid,
75
core::pose::Pose
& pose
76
);
77
78
}
//namespace ligand_docking
79
}
//namespace protocols
80
81
#endif
Generated on Sat Jun 1 2013 11:56:18 for Rosetta 3.5 by
1.8.4