-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathMaeConstants.hpp
67 lines (62 loc) · 2.75 KB
/
MaeConstants.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#pragma once
#include <string>
namespace schrodinger
{
namespace mae
{
const char* const MAE_FORMAT_VERSION = "s_m_m2io_version";
const char* const CT_BLOCK = "f_m_ct";
const char* const CT_TITLE = "s_m_title";
const char* const ATOM_BLOCK = "m_atom";
const char* const ATOM_ATOMIC_NUM = "i_m_atomic_number";
const char* const ATOM_X_COORD = "r_m_x_coord";
const char* const ATOM_Y_COORD = "r_m_y_coord";
const char* const ATOM_Z_COORD = "r_m_z_coord";
const char* const ATOM_FORMAL_CHARGE = "i_m_formal_charge";
const char* const ATOM_PARTIAL_CHARGE = "r_m_charge1";
const char* const BOND_BLOCK = "m_bond";
const char* const BOND_ATOM_1 = "i_m_from";
const char* const BOND_ATOM_2 = "i_m_to";
const char* const BOND_ORDER = "i_m_order";
const char* const DEPEND_BLOCK = "m_depend";
/**
* These are the prefixes used to store stereochemical properties in Maestro
* files. Each of those properties will be associated to one of these prefixes
* plus an integer (integers don't have any particular meaning, they just
* prevent the property names from clashing), e.g.:
*
* s_st_Chirality_1 : 2_R_1_3_5_4
* s_st_Chirality_2 : 6_ANR_1_5_7
*
* Syntax of chirality and pseudochirality properties is the same:
* 1. Index of the chiral/pseudochiral atom.
* 2. Chiral/pseudochiral label (R/S or ANR/ANS).
* 3. Sequence of atoms around the chiral one, ordered by decreasing
* Cahn-Ingold-Prelog rank, or atom index, in the case of ANR/ANS.
* Elements are separated by underscores. For cases in which only 3 neighboring
* indexes are specified, an implicit Hydrogen atom needs to be considered.
*
*
* s_st_EZ_2 : 1_2_3_4_E
*
* Syntax for bond stereochemistry properties is similar:
* 1. Highest C-I-P ranked stereogenical atom at one side of the group.
* 2. List of intermediate atoms in the stereochemical group. These are
* typically 2 atoms bonded by a double bond, but can be more atoms and not
* necessarily bonded by double bonds (e.g. in case of allenes or
* allene-like structures)
* 3. Highest C-I-P ranked stereogenical atom at the other side of the group.
* 4. Stereochemical label for the bond (E/Z)
* As in chiral/pseudochiral properties, values are separated by underscores.
*/
const std::string CT_CHIRALITY_PROP_PREFIX = "s_st_Chirality_";
const std::string CT_EZ_PROP_PREFIX = "s_st_EZ_";
/**
* This prefix has been deprecated, and will not be used in future Schrodinger
* Suite releases. It is included in this header only for the purpose of
* documentation and backwards compatibility. The format of the property string
* is identical as the one presented in the example for chirality.
*/
const std::string CT_PSEUDOCHIRALITY_PROP_PREFIX = "s_st_AtomNumChirality_";
} // End namespace mae
} // End namespace schrodinger