Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PeakAssignmentOptionKeys.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 FragmentSampler.cc
11 /// @brief ab-initio fragment assembly protocol for proteins
12 /// @detailed
13 /// Contains currently: Classic Abinitio
14 ///
15 ///
16 /// @author Oliver Lange
17 
18 
19 #ifndef INCLUDED_protocols_noesy_assign_PeakAssignmentOptionKeys_HH
20 #define INCLUDED_protocols_noesy_assign_PeakAssignmentOptionKeys_HH
21 
22 // Utility headers
23 #include <basic/options/option_macros.hh>
24 
25 //Auto Headers
26 OPT_1GRP_KEY( Real, noesy_weights, chemshift )
27 //OPT_1GRP_KEY( Real, noesy_weights, network_high )
28 
29 OPT_1GRP_KEY( Real, noesy_weights, Vmin )
30 OPT_1GRP_KEY( Real, noesy_weights, symmetry )
31 OPT_1GRP_KEY( Real, noesy_weights, covalent )
32 //OPT_1GRP_KEY( Real, noesy_weights, decoys )
33 OPT_1GRP_KEY( Real, noesy_weights, Smax )
34 OPT_1GRP_KEY( Real, noesy_weights, dcut )
35 OPT_1GRP_KEY( Real, noesy_weights, network_min )
36 OPT_1GRP_KEY( Real, noesy_weights, network_atom_min )
37 OPT_1GRP_KEY( Real, noesy_weights, dcalibrate )
38 OPT_1GRP_KEY( Real, noesy_weights, calibration_target )
39 
40 OPT_1GRP_KEY( Boolean, noesy, atom_dependent_calibration )
41 OPT_1GRP_KEY( Boolean, noesy, ignore_resonancefile_tolerances )
42 OPT_1GRP_KEY( Boolean, noesy, ignore_resonancefile_intensities )
43 
44 OPT_2GRP_KEY( RealVector, noesy_weights, defaults, Vmin )
45 OPT_2GRP_KEY( RealVector, noesy_weights, defaults, symmetry )
46 OPT_2GRP_KEY( RealVector, noesy_weights, defaults, covalent )
47 //OPT_2GRP_KEY( RealVector, noesy_weights, defaults, decoys )
48 OPT_2GRP_KEY( RealVector, noesy_weights, defaults, Smax )
49 OPT_2GRP_KEY( RealVector, noesy_weights, defaults, dcut )
50 OPT_2GRP_KEY( RealVector, noesy_weights, defaults, network_min )
51 OPT_2GRP_KEY( RealVector, noesy_weights, defaults, network_atom_min )
52 OPT_2GRP_KEY( RealVector, noesy_weights, defaults, dcalibrate )
53 OPT_2GRP_KEY( RealVector, noesy_weights, defaults, calibration_target )
54 
55 
56 OPT_1GRP_KEY( Real, noesy_weights, elim_dist_viol )
57 OPT_1GRP_KEY( Real, noesy_weights, centroid_padding )
58 OPT_1GRP_KEY( Boolean, noesy, map_to_cen_atom )
59 
60 
61 OPT_1GRP_KEY( Real, noesy_weights, cst_strength )
62 OPT_1GRP_KEY( Integer, noesy_weights, cycle )
63 OPT_1GRP_KEY( Real, noesy_weights, min_symmetry_reinforcement )
64 OPT_1GRP_KEY( Boolean, noesy, no_network )
65 OPT_2GRP_KEY( Real, noesy, network, vmin )
66 OPT_2GRP_KEY( Real, noesy, network, vmax )
67 OPT_2GRP_KEY( Real, noesy, network, reswise_high )
68 OPT_2GRP_KEY( Real, noesy, network, reswise_min )
69 OPT_2GRP_KEY( Real, noesy, network, atomwise_min )
70 OPT_2GRP_KEY( Boolean, noesy, network, include_reverse_dir )
71 OPT_2GRP_KEY( Boolean, noesy, network, allow_same_residue_connect )
72 OPT_2GRP_KEY( Boolean, noesy, network, use_all_covalent_atoms )
73 OPT_2GRP_KEY( String, noesy, network, mode )
74 
75 OPT_1GRP_KEY( Boolean, noesy, use_local_distviol )
76 OPT_2GRP_KEY( Real, noesy, local_distviol, range )
77 OPT_2GRP_KEY( Real, noesy, local_distviol, global_buffer )
78 OPT_2GRP_KEY( Real, noesy, local_distviol, global_factor )
79 OPT_2GRP_KEY( Real, noesy, local_distviol, cutoff )
80 OPT_2GRP_KEY( Real, noesy, local_distviol, cutoff_buffer )
81 
82 
83 OPT_2GRP_KEY( Real, noesy, calibration, convergence )
84 OPT_2GRP_KEY( Real, noesy, calibration, max_noe_dist )
85 OPT_2GRP_KEY( Real, noesy, calibration, start_nudging )
86 OPT_2GRP_KEY( Real, noesy, calibration, stop_nudging )
87 OPT_2GRP_KEY( Real, noesy, calibration, max_nudging )
88 OPT_2GRP_KEY( Boolean, noesy, calibration, ignore_eliminated_peaks )
89 
90 OPT_2GRP_KEY( Boolean, noesy, calibration, eliminate )
91 OPT_2GRP_KEY( Boolean, noesy, calibration, use_median )
92 OPT_2GRP_KEY( Integer, noesy, calibration, cycles )
93 
94 
95 OPT_3GRP_KEY( RealVector, noesy, prob, sigmoid, m )
96 OPT_3GRP_KEY( RealVector, noesy, prob, sigmoid, tau )
97 OPT_3GRP_KEY( RealVector, noesy, prob, sigmoid, w )
98 OPT_2GRP_KEY( RealVector, noesy, prob, level )
99 #endif