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
movers
HotspotHasherMover.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/movers/HotspotHasherMover.hh
11
/// @author Sarel Fleishman (sarelf@u.washington.edu), Jacob Corn (jecorn@u.washington.edu)
12
13
#ifndef INCLUDED_protocols_protein_interface_design_movers_HotspotHasherMover_hh
14
#define INCLUDED_protocols_protein_interface_design_movers_HotspotHasherMover_hh
15
16
#include <
core/types.hh
>
17
#include <
core/pose/Pose.fwd.hh
>
18
#include <utility/tag/Tag.fwd.hh>
19
// AUTO-REMOVED #include <protocols/filters/Filter.hh>
20
#include <
protocols/moves/Mover.hh
>
21
#include <
protocols/moves/DataMap.fwd.hh
>
22
#include <
core/scoring/ScoreFunction.fwd.hh
>
23
24
#include <utility/vector1.hh>
25
26
27
namespace
protocols {
28
namespace
protein_interface_design {
29
namespace
movers {
30
31
class
HotspotHasherMover
:
public
protocols::moves::Mover
32
{
33
public
:
34
HotspotHasherMover
();
35
HotspotHasherMover
( std::vector<std::string>
const
resnames,
36
core::scoring::ScoreFunctionCOP
scorefxn,
37
core::Size
const
n_stubs,
38
core::Size
const
target_resnum,
39
protocols::filters::FilterOP
hotspot_filter,
40
core::Real
const
target_distance,
41
std::string
const
hashin_fname,
42
std::string
const
hashout_fname );
43
protocols::moves::MoverOP
clone
()
const
;
44
virtual
~HotspotHasherMover
();
45
void
apply
(
core::pose::Pose
& pose );
46
virtual
std::string
get_name
()
const
;
47
protocols::moves::MoverOP
fresh_instance
()
const
{
return
protocols::moves::MoverOP
(
new
HotspotHasherMover
); }
48
void
parse_my_tag
(
utility::tag::TagPtr
const
tag,
protocols::moves::DataMap
&,
protocols::filters::Filters_map
const
&,
protocols::moves::Movers_map
const
&,
core::pose::Pose
const
& );
49
private
:
50
// SET VARIABLES BASED ON THE COMMAND LINE
51
// Residues to use for hashing (defaults to all, sans Gly, Cys, or Pro)
52
core::scoring::ScoreFunctionCOP
scorefxn_
;
53
std::vector< std::string >
resnames_
;
54
core::Size
n_stubs_
,
target_resnum_
;
55
core::Real
target_distance_
,
score_threshold_
;
56
std::string
hashin_fname_
,
hashout_fname_
;
57
protocols::filters::FilterOP
hotspot_filter_
;
// a filter for each hotspot. defaults to TrueFilter
58
};
59
60
61
}
// movers
62
}
// protein_interface_design
63
}
// protocols
64
65
66
#endif
/*INCLUDED_protocols_protein_interface_design_movers_HotspotHasherMover_HH*/
67
Generated on Sat Jun 1 2013 12:05:05 for Rosetta 3.5 by
1.8.4