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
protein_interface_design
read_patchdock.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/protein_interface_design/read_patchdock.hh
11
/// @brief
12
/// @author Sarel Fleishman (sarelf@u.washington.edu)
13
14
#ifndef INCLUDED_protocols_protein_interface_design_read_patchdock_hh
15
#define INCLUDED_protocols_protein_interface_design_read_patchdock_hh
16
17
#include <
core/pose/Pose.fwd.hh
>
18
#include <
core/types.hh
>
19
#include <utility/pointer/ReferenceCount.hh>
20
// AUTO-REMOVED #include <numeric/xyz.functions.hh>
21
#include <utility/vector1.hh>
22
23
#include <numeric/xyzVector.hh>
24
25
#ifdef WIN32
26
#include <string>
27
#endif
28
29
// Project Headers
30
// C++ headers
31
namespace
protocols {
32
namespace
protein_interface_design {
33
34
struct
Transformation
35
{
36
typedef
core::Real
Real
;
37
38
Real
alpha
,
beta
,
gamma
;
// Euler angles
39
numeric::xyzVector< Real >
translation
;
// translation
40
};
41
42
class
PatchdockReader
:
public
utility::pointer::ReferenceCount
43
{
44
public
:
45
PatchdockReader
();
46
virtual
~PatchdockReader
();
47
/// @brief if no native is read
48
void
read_poses
(
core::pose::Pose
& input_pose,
std::string
& input_tag );
49
50
/// @brief reads input and native poses from file. If patchdock flags are used will read the patchdock transformation
51
/// and transform the input pose accordingly
52
void
read_poses
(
core::pose::Pose
& input_pose,
core::pose::Pose
& native_pose,
std::string
& input_tag,
std::string
& native_tag );
53
54
void
read_patchdock
(
std::string
& input_tag,
std::string
& native_tag );
55
Transformation
read_patchdock_entry
();
56
57
void
clear_internals
();
58
core::Size
number_of_patchdock_entries
();
59
private
:
60
std::string
patchdock_fname_
;
61
core::Size
patchdock_entry_num_
;
62
core::pose::PoseOP
saved_input_pose_
,
saved_native_pose_
;
63
std::string
saved_input_tag_
,
saved_native_tag_
;
64
utility::vector1< Transformation >
saved_transformations_
;
65
};
66
}
67
}
68
69
#endif
/*INCLUDED_READ_PATCHDOCK_H_*/
70
Generated on Sat Jun 1 2013 12:08:12 for Rosetta 3.5 by
1.8.4