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
toolbox
task_operations
SelectBySASAOperation.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
/// @brief Restrict design to residues matching user-specified SASA criteria in the monomeric, bound, or unbound state.
11
/// @author Jacob Bale (balej@uw.edu)
12
13
#ifndef INCLUDED_protocols_toolbox_task_operations_SelectBySASAOperation_hh
14
#define INCLUDED_protocols_toolbox_task_operations_SelectBySASAOperation_hh
15
16
// Unit Headers
17
#include <
protocols/toolbox/task_operations/SelectBySASAOperation.fwd.hh
>
18
#include <
protocols/toolbox/task_operations/SelectBySASAOperationCreator.hh
>
19
#include <
core/pack/task/operation/TaskOperation.hh
>
20
21
// Project Headers
22
#include <
core/pose/Pose.fwd.hh
>
23
#include <utility/tag/Tag.fwd.hh>
24
#include <utility/vector1.hh>
25
#include <
core/types.hh
>
26
27
// Utility Headers
28
#include <string>
29
30
// C++ Headers
31
32
namespace
protocols {
33
namespace
toolbox {
34
namespace
task_operations {
35
36
class
SelectBySASAOperation
:
public
core::pack::task::operation::TaskOperation
{
37
public
:
38
SelectBySASAOperation
(
std::string
mode =
"sc"
,
std::string
state =
"monomer"
,
core::Real
probe_radius = 2.2,
core::Real
core_asa = 0,
core::Real
surface_asa = 30,
std::string
jump_nums =
"1"
,
std::string
sym_dof_names
=
""
,
bool
core = 0,
bool
boundary = 0,
bool
surface
= 0,
bool
verbose = 0 );
39
40
virtual
~SelectBySASAOperation
();
41
42
virtual
core::pack::task::operation::TaskOperationOP
clone
()
const
;
43
44
virtual
45
void
46
apply
(
core::pose::Pose
const
&,
core::pack::task::PackerTask
& )
const
;
47
48
void
parse_tag
(
TagPtr
tag );
49
void
parse_def
( utility::lua::LuaObject
const
& def );
50
51
private
:
52
std::string
mode_
;
53
std::string
state_
;
54
core::Real
probe_radius_
;
55
core::Real
core_asa_
;
56
core::Real
surface_asa_
;
57
std::string
jump_nums_
;
58
std::string
sym_dof_names_
;
59
bool
core_
;
60
bool
boundary_
;
61
bool
surface_
;
62
bool
verbose_
;
63
};
64
65
}
//namespace task_operations
66
}
//namespace toolbox
67
}
//namespace protocols
68
69
#endif
Generated on Sat Jun 1 2013 12:24:11 for Rosetta 3.5 by
1.8.4