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
filters
DisulfideFilter.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 sw=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 devel/protein_interface_design/filters/DisulfideFilter.hh
11
/// @brief Filters for interfaces which could form a disulfide bond between
12
/// docking partners.
13
/// @author Spencer Bliven <blivens@u.washington.edu>
14
/// @date Created 4/30/2009
15
16
#ifndef INCLUDED_protocols_protein_interface_design_filters_DisulfideFilter_hh
17
#define INCLUDED_protocols_protein_interface_design_filters_DisulfideFilter_hh
18
19
20
// Project Headers
21
#include <
protocols/filters/Filter.hh
>
22
#include <
core/pose/Pose.fwd.hh
>
23
#include <
core/types.hh
>
24
#include <utility/tag/Tag.fwd.hh>
25
#include <
protocols/moves/DataMap.fwd.hh
>
26
#include <
protocols/moves/Mover.fwd.hh
>
27
28
// Utility headers
29
#include <utility/vector1.fwd.hh>
30
31
// C++ headers
32
33
#include <
core/scoring/disulfides/CentroidDisulfidePotential.fwd.hh
>
34
#include <utility/vector1.hh>
35
36
37
// Unit headers
38
39
namespace
protocols {
40
namespace
protein_interface_design {
41
namespace
filters {
42
43
/**
44
* @brief Filters for structures which could form a disulfide bond across the
45
* docking interface.
46
*
47
* @details Use this filter when you are trying to design one docking member
48
* so that it forms a disulfide bond to one or more target residues of the other
49
* docking partner. The filter does not consider the indentities of the residues
50
* involved, only their Cb position.
51
*
52
* This filter only applies to centroid poses. Calling it with a full atom pose
53
* will result in everything failing.
54
*
55
* @author Spencer Bliven <blivens@u.washington.edu>
56
*/
57
class
DisulfideFilter
:
public
protocols::filters::Filter
58
{
59
private
:
60
typedef
protocols::filters::Filter
parent
;
61
public
:
62
/// @brief default ctor
63
DisulfideFilter
();
64
/// @brief copy ctor
65
DisulfideFilter
(
DisulfideFilter
const
& df);
66
///@brief Constructor with a single target residue
67
DisulfideFilter
(
core::Size
targetResidue );
68
///@brief Constructor with multiple target residues
69
/// @details targets may come from either binding partner. If no targets
70
/// are specified for one target, all residues on the interface will be
71
/// concidered.
72
DisulfideFilter
(
utility::vector1<core::Size>
const
& targetResidues );
73
virtual
bool
apply
(
core::pose::Pose
const
& pose )
const
;
74
virtual
void
report
( std::ostream & out,
core::pose::Pose
const
& pose )
const
;
75
virtual
core::Real
report_sm
(
core::pose::Pose
const
& pose )
const
;
76
virtual
protocols::filters::FilterOP
clone
()
const
{
77
return
new
DisulfideFilter
( *
this
);
78
}
79
virtual
protocols::filters::FilterOP
fresh_instance
()
const
{
80
return
new
DisulfideFilter
();
81
}
82
83
virtual
~DisulfideFilter
();
84
void
parse_my_tag
(
utility::tag::TagPtr
const
tag,
85
protocols::moves::DataMap
&,
86
protocols::filters::Filters_map
const
&,
87
protocols::moves::Movers_map
const
&,
88
core::pose::Pose
const
& );
89
private
:
90
/// @brief a list of residues which may participate in the disulfide.
91
/// @details If either docking partner has no target residues specified,
92
/// all interface residues will be allowed to disulfide bond.
93
utility::vector1<core::Size>
targets_
;
94
/// @brief for calculating centroid disulfide energies
95
static
const
core::scoring::disulfides::CentroidDisulfidePotential
potential_
;
96
/// @brief Which jump defines the interface where the targets lie?
97
Size
rb_jump_
;
98
};
99
100
}
// filters
101
}
// protein_interface_design
102
}
// devel
103
104
#endif //INCLUDED_protocols_protein_interface_design_filters_DisulfideFilter_HH_
105
Generated on Sat Jun 1 2013 12:03:22 for Rosetta 3.5 by
1.8.4