Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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
22 #include <core/pose/Pose.fwd.hh>
23 #include <core/types.hh>
24 #include <utility/tag/Tag.fwd.hh>
27 
28 // Utility headers
29 #include <utility/vector1.fwd.hh>
30 
31 // C++ headers
32 
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  */
58 {
59 private:
61 public:
62  /// @brief default ctor
64  /// @brief copy ctor
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;
77  return new DisulfideFilter( *this );
78  }
80  return new DisulfideFilter();
81  }
82 
83  virtual ~DisulfideFilter();
84  void parse_my_tag( utility::tag::TagPtr const tag,
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.
94  /// @brief for calculating centroid disulfide energies
96  /// @brief Which jump defines the interface where the targets lie?
98 };
99 
100 } // filters
101 } // protein_interface_design
102 } // devel
103 
104 #endif //INCLUDED_protocols_protein_interface_design_filters_DisulfideFilter_HH_
105