annotate docs/modules/txt/ExtendedConnectivityFingerprints.txt @ 3:90ea638ce878 draft default tip

Uploaded
author deepakjadmin
date Wed, 20 Jan 2016 09:11:59 -0500
parents 2abf0d43254d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
1 NAME
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
2 ExtendedConnectivityFingerprints
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
3
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
4 SYNOPSIS
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
5 use Fingerprints::ExtendedConnectivityFingerprints;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
6
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
7 use Fingerprints::ExtendedConnectivityFingerprints qw(:all);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
8
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
9 DESCRIPTION
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
10 ExtendedConnectivityFingerprints [ Ref 48, Ref 52 ] class provides the
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
11 following methods:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
12
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
13 new, GenerateFingerprints, GetDescription, SetAtomIdentifierType,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
14 SetAtomicInvariantsToUse, SetFunctionalClassesToUse,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
15 SetNeighborhoodRadius, StringifyExtendedConnectivityFingerprints
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
16
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
17 ExtendedConnectivityFingerprints is derived from Fingerprints class
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
18 which in turn is derived from ObjectProperty base class that provides
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
19 methods not explicitly defined in ExtendedConnectivityFingerprints,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
20 Fingerprints or ObjectProperty classes using Perl's AUTOLOAD
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
21 functionality. These methods are generated on-the-fly for a specified
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
22 object property:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
23
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
24 Set<PropertyName>(<PropertyValue>);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
25 $PropertyValue = Get<PropertyName>();
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
26 Delete<PropertyName>();
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
27
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
28 The current release of MayaChemTools supports generation of
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
29 ExtendedConnectivityFingerprints corresponding to following
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
30 AtomtomIdentifierTypes:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
31
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
32 AtomicInvariantsAtomTypes, DREIDINGAtomTypes, EStateAtomTypes,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
33 FunctionalClassAtomTypes, MMFF94AtomTypes, SLogPAtomTypes,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
34 SYBYLAtomTypes, TPSAAtomTypes, UFFAtomTypes
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
35
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
36 Based on the values specified for AtomIdentifierType,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
37 AtomicInvariantsToUse and FunctionalClassesToUse, initial atom types are
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
38 assigned to all non-hydrogen atoms in a molecule and these atom types
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
39 strings are converted into initial atom identifier integers using
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
40 TextUtil::HashCode function. The duplicate atom identifiers are removed.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
41
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
42 For NeighborhoodRadius value of *0*, the initial set of unique atom
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
43 identifiers comprises the molecule fingerprints. Otherwise, atom
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
44 neighborhoods are generated for each non-hydrogen atom up-to specified
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
45 NeighborhoodRadius value. For each non-hydrogen central atom at a
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
46 specific radius, its neighbors at next radius level along with their
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
47 bond orders and previously calculated atom identifiers are collected
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
48 which in turn are used to generate a new integer atom identifier; the
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
49 bond orders and atom identifier pairs list is first sorted by bond order
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
50 followed by atom identifiers to make these values graph invariant.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
51
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
52 After integer atom identifiers have been generated for all non-hydrogen
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
53 atoms at all specified neighborhood radii, the duplicate integer atom
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
54 identifiers corresponding to same hash code value generated using
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
55 TextUtil::HashCode are tracked by keeping the atom identifiers at lower
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
56 radius. Additionally, all structurally duplicate integer atom
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
57 identifiers at each specified radius are also tracked by identifying
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
58 equivalent atom and bonds corresponding to substructures used for
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
59 generating atom identifier and keeping integer atom identifier with
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
60 lowest value.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
61
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
62 For *ExtendedConnnectivity* value of fingerprints Type, the duplicate
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
63 identifiers are removed from the list and the unique atom identifiers
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
64 constitute the extended connectivity fingerprints of a molecule.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
65
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
66 For *ExtendedConnnectivityCount* value of fingerprints Type, the
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
67 occurrence of each unique atom identifiers appears is counted and the
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
68 unique atom identifiers along with their count constitute the extended
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
69 connectivity fingerprints of a molecule.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
70
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
71 For *ExtendedConnectivityBits* value of fingerprints -m, --mode, the
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
72 unique atom identifiers are used as a random number seed to generate a
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
73 random integer value between 0 and --Size which in turn is used to set
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
74 corresponding bits in the fingerprint bit-vector string.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
75
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
76 The current release of MayaChemTools generates the following types of
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
77 extended connectivity fingerprints vector strings:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
78
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
79 FingerprintsVector;ExtendedConnectivity:AtomicInvariantsAtomTypes:Radi
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
80 us2;60;AlphaNumericalValues;ValuesString;73555770 333564680 352413391
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
81 666191900 1001270906 1371674323 1481469939 1977749791 2006158649 21414
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
82 08799 49532520 64643108 79385615 96062769 273726379 564565671 85514103
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
83 5 906706094 988546669 1018231313 1032696425 1197507444 1331250018 1338
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
84 532734 1455473691 1607485225 1609687129 1631614296 1670251330 17303...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
85
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
86 FingerprintsVector;ExtendedConnectivityCount:AtomicInvariantsAtomTypes
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
87 :Radius2;60;NumericalValues;IDsAndValuesString;73555770 333564680 3524
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
88 13391 666191900 1001270906 1371674323 1481469939 1977749791 2006158649
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
89 2141408799 49532520 64643108 79385615 96062769 273726379 564565671...;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
90 3 2 1 1 14 1 2 10 4 3 1 1 1 1 2 1 2 1 1 1 2 3 1 1 2 1 3 3 8 2 2 2 6 2
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
91 1 2 1 1 2 1 1 1 2 1 1 2 1 2 1 1 1 1 1 1 1 1 1 2 1 1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
92
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
93 FingerprintsBitVector;ExtendedConnectivityBits:AtomicInvariantsAtomTyp
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
94 es:Radius2;1024;BinaryString;Ascending;0000000000000000000000000000100
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
95 0000000001010000000110000011000000000000100000000000000000000000100001
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
96 1000000110000000000000000000000000010011000000000000000000000000010000
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
97 0000000000000000000000000010000000000000000001000000000000000000000000
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
98 0000000000010000100001000000000000101000000000000000100000000000000...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
99
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
100 FingerprintsBitVector;ExtendedConnectivityBits:AtomicInvariantsAtomTyp
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
101 es:Radius2;1024;HexadecimalString;Ascending;000000010050c0600800000803
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
102 0300000091000004000000020000100000000124008200020000000040020000000000
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
103 2080000000820040010020000000008040000000000080001000000000400000000000
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
104 4040000090000061010000000800200000000000001400000000020080000000000020
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
105 00008020200000408000
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
106
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
107 FingerprintsVector;ExtendedConnectivity:FunctionalClassAtomTypes:Radiu
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
108 s2;57;AlphaNumericalValues;ValuesString;24769214 508787397 850393286 8
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
109 62102353 981185303 1231636850 1649386610 1941540674 263599683 32920567
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
110 1 571109041 639579325 683993318 723853089 810600886 885767127 90326012
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
111 7 958841485 981022393 1126908698 1152248391 1317567065 1421489994 1455
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
112 632544 1557272891 1826413669 1983319256 2015750777 2029559552 20404...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
113
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
114 FingerprintsVector;ExtendedConnectivityCount:FunctionalClassAtomTypes:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
115 Radius2;57;NumericalValues;IDsAndValuesString;24769214 508787397 85039
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
116 3286 862102353 981185303 1231636850 1649386610 1941540674 263599683 32
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
117 9205671 571109041 639579325 683993318 723853089 810600886 885767127...;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
118 1 1 1 10 2 22 3 1 3 3 1 1 1 3 2 2 1 2 2 2 3 1 1 1 1 1 14 1 1 1 1 1 1 2
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
119 1 2 1 1 2 2 1 1 2 1 1 1 2 1 1 2 1 1 1 1 1 1 1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
120
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
121 FingerprintsBitVector;ExtendedConnectivityBits:FunctionalClassAtomType
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
122 s:Radius2;1024;BinaryString;Ascending;00000000000000000000100000000000
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
123 0000000001000100000000001000000000000000000000000000000000101000000010
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
124 0000001000000000010000000000000000000000000000000000000000000000000100
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
125 0000000000001000000000000001000000000001001000000000000000000000000000
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
126 0000000000000000100000000000001000000000000000000000000000000000000...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
127
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
128 FingerprintsVector;ExtendedConnectivity:DREIDINGAtomTypes:Radius2;56;A
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
129 lphaNumericalValues;ValuesString;280305427 357928343 721790579 1151822
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
130 898 1207111054 1380963747 1568213839 1603445250 4559268 55012922 18094
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
131 0813 335715751 534801009 684609658 829361048 972945982 999881534 10076
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
132 55741 1213692591 1222032501 1224517934 1235687794 1244268533 152812070
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
133 0 1629595024 1856308891 1978806036 2001865095 2096549435 172675415 ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
134
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
135 FingerprintsVector;ExtendedConnectivity:EStateAtomTypes:Radius2;62;Alp
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
136 haNumericalValues;ValuesString;25189973 528584866 662581668 671034184
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
137 926543080 1347067490 1738510057 1759600920 2034425745 2097234755 21450
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
138 44754 96779665 180364292 341712110 345278822 386540408 387387308 50430
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
139 1706 617094135 771528807 957666640 997798220 1158349170 1291258082 134
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
140 1138533 1395329837 1420277211 1479584608 1486476397 1487556246 1566...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
141
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
142 FingerprintsVector;ExtendedConnectivity:MMFF94AtomTypes:Radius2;64;Alp
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
143 haNumericalValues;ValuesString;224051550 746527773 998750766 103704190
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
144 2 1239701709 1248384926 1259447756 1521678386 1631549126 1909437580 20
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
145 37095052 2104274756 2117729376 8770364 31445800 81450228 314289324 344
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
146 041929 581773587 638555787 692022098 811840536 929651561 936421792 988
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
147 636432 1048624296 1054288509 1369487579 1454058929 1519352190 17271...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
148
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
149 FingerprintsVector;ExtendedConnectivity:SLogPAtomTypes:Radius2;71;Alph
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
150 aNumericalValues;ValuesString;78989290 116507218 489454042 888737940 1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
151 162561799 1241797255 1251494264 1263717127 1471206899 1538061784 17654
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
152 07295 1795036542 1809833874 2020454493 2055310842 2117729376 11868981
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
153 56731842 149505242 184525155 196984339 288181334 481409282 556716568 6
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
154 41915747 679881756 721736571 794256218 908276640 992898760 10987549...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
155
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
156 FingerprintsVector;ExtendedConnectivity:SYBYLAtomTypes:Radius2;58;Alph
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
157 aNumericalValues;ValuesString;199957044 313356892 455463968 465982819
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
158 1225318176 1678585943 1883366064 1963811677 2117729376 113784599 19153
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
159 8837 196629033 263865277 416380653 477036669 681527491 730724924 90906
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
160 5537 1021959189 1133014972 1174311016 1359441203 1573452838 1661585138
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
161 1668649038 1684198062 1812312554 1859266290 1891651106 2072549404 ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
162
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
163 FingerprintsVector;ExtendedConnectivity:TPSAAtomTypes:Radius2;47;Alpha
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
164 NumericalValues;ValuesString;20818206 259344053 862102353 1331904542 1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
165 700688206 265614156 363161397 681332588 810600886 885767127 950172500
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
166 951454814 1059668746 1247054493 1382302230 1399502637 1805025917 19189
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
167 39561 2114677228 2126402271 8130483 17645742 32278373 149975755 160327
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
168 654 256360355 279492740 291251259 317592700 333763396 972105960 101...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
169
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
170 FingerprintsVector;ExtendedConnectivity:UFFAtomTypes:Radius2;56;AlphaN
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
171 umericalValues;ValuesString;280305427 357928343 721790579 1151822898 1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
172 207111054 1380963747 1568213839 1603445250 4559268 55012922 180940813
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
173 335715751 534801009 684609658 829361048 972945982 999881534 1007655741
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
174 1213692591 1222032501 1224517934 1235687794 1244268533 1528120700 162
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
175 9595024 1856308891 1978806036 2001865095 2096549435 172675415 18344...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
176
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
177 METHODS
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
178 new
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
179 $NewExtendedConnectivityFingerprints = new ExtendedConnectivityFingerprints(
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
180 %NamesAndValues);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
181
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
182 Using specified *ExtendedConnectivityFingerprints* property names
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
183 and values hash, new method creates a new object and returns a
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
184 reference to newly created ExtendedConnectivityFingerprints object.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
185 By default, the following properties are initialized:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
186
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
187 Molecule = ''
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
188 Type = 'ExtendedConnectivity'
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
189 NeighborhoodRadius = 2
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
190 AtomIdentifierType = ''
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
191 AtomicInvariantsToUse = ['AS', 'X', 'BO', 'H', 'FC', 'MN']
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
192 FunctionalClassesToUse = ['HBD', 'HBA', 'PI', 'NI', 'Ar', 'Hal']
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
193
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
194 Examples:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
195
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
196 $ExtendedConnectivityFingerprints = new ExtendedConnectivityFingerprints(
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
197 'Molecule' => $Molecule,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
198 'AtomIdentifierType' =>
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
199 'AtomicInvariantsAtomTypes');
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
200
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
201 $ExtendedConnectivityFingerprints = new ExtendedConnectivityFingerprints(
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
202 'Type' => 'ExtendedConnectivityCount',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
203 'Molecule' => $Molecule,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
204 'AtomIdentifierType' =>
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
205 'AtomicInvariantsAtomTypes');
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
206
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
207 $ExtendedConnectivityFingerprints = new ExtendedConnectivityFingerprints(
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
208 'Type' => 'ExtendedConnectivityBits',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
209 'Molecule' => $Molecule,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
210 'Size' => 1024,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
211 'AtomIdentifierType' =>
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
212 'AtomicInvariantsAtomTypes');
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
213
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
214 $ExtendedConnectivityFingerprints = new ExtendedConnectivityFingerprints(
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
215 'Type' => 'ExtendedConnectivity',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
216 'Molecule' => $Molecule,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
217 'NeighborhoodRadius' => 2,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
218 'AtomIdentifierType' =>
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
219 'AtomicInvariantsAtomTypes',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
220 'AtomicInvariantsToUse' =>
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
221 ['AS', 'X', 'BO', 'H', 'FC', 'MN'] );
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
222
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
223 $ExtendedConnectivityFingerprints = new ExtendedConnectivityFingerprints(
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
224 'Type' => 'ExtendedConnectivity',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
225 'Molecule' => $Molecule,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
226 'NeighborhoodRadius' => 2,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
227 'AtomIdentifierType' =>
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
228 'FunctionalClassAtomTypes',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
229 'FunctionalClassesToUse' =>
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
230 ['HBD', 'HBA', 'PI', 'NI', 'Ar', 'Hal'] );
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
231
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
232 $ExtendedConnectivityFingerprints = new ExtendedConnectivityFingerprints(
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
233 'Type' => 'ExtendedConnectivity',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
234 'Molecule' => $Molecule,;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
235 'AtomIdentifierType' =>
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
236 'MMFF94AtomTypes');
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
237
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
238 $ExtendedConnectivityFingerprints = new ExtendedConnectivityFingerprints(
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
239 'Type' => 'ExtendedConnectivityCount',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
240 'Molecule' => $Molecule,;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
241 'AtomIdentifierType' =>
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
242 'MMFF94AtomTypes');
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
243
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
244 $ExtendedConnectivityFingerprints = new ExtendedConnectivityFingerprints(
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
245 'Type' => 'ExtendedConnectivityCount',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
246 'Molecule' => $Molecule,;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
247 'AtomIdentifierType' =>
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
248 'SLogPAtomTypes');
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
249
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
250 $ExtendedConnectivityFingerprints = new ExtendedConnectivityFingerprints(
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
251 'Type' => 'ExtendedConnectivity',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
252 'Molecule' => $Molecule,;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
253 'AtomIdentifierType' =>
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
254 'SLogPAtomTypes');
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
255
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
256 $ExtendedConnectivityFingerprints = new ExtendedConnectivityFingerprints(
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
257 'Type' => 'ExtendedConnectivity',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
258 'Molecule' => $Molecule,;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
259 'AtomIdentifierType' =>
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
260 'SYBYLAtomTypes');
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
261
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
262 $ExtendedConnectivityFingerprints->GenerateFingerprints();
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
263 print "$ExtendedConnectivityFingerprints\n";
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
264
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
265 GenerateFingerprints
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
266 $ExtendedConnectivityFingerprints->GenerateFingerprints();
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
267
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
268 Generates extended connectivity fingerprints and returns
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
269 *ExtendedConnectivityFingerprints*.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
270
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
271 GetDescription
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
272 $Description = $ExtendedConnectivityFingerprints->GetDescription();
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
273
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
274 Returns a string containing description of extended connectivity
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
275 fingerprints fingerprints.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
276
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
277 SetAtomIdentifierType
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
278 $ExtendedConnectivityFingerprints->SetAtomIdentifierType($IdentifierType);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
279
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
280 Sets atom *IdentifierType* to use during extended connectivity
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
281 fingerprints generation and returns
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
282 *ExtendedConnectivityFingerprints*.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
283
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
284 Possible values: *AtomicInvariantsAtomTypes, DREIDINGAtomTypes,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
285 EStateAtomTypes, FunctionalClassAtomTypes, MMFF94AtomTypes,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
286 SLogPAtomTypes, SYBYLAtomTypes, TPSAAtomTypes, UFFAtomTypes*.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
287
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
288 SetAtomicInvariantsToUse
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
289 $ExtendedConnectivityFingerprints->SetAtomicInvariantsToUse($ValuesRef);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
290 $ExtendedConnectivityFingerprints->SetAtomicInvariantsToUse(@Values);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
291
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
292 Sets atomic invariants to use during *AtomicInvariantsAtomTypes*
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
293 value of *AtomIdentifierType* for extended connectivity fingerprints
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
294 generation and returns *ExtendedConnectivityFingerprints*.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
295
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
296 Possible values for atomic invariants are: *AS, X, BO, LBO, SB, DB,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
297 TB, H, Ar, RA, FC, MN, SM*. Default value [ Ref 24 ]:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
298 *AS,X,BO,H,FC,MN*.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
299
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
300 The atomic invariants abbreviations correspond to:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
301
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
302 AS = Atom symbol corresponding to element symbol
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
303
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
304 X<n> = Number of non-hydrogen atom neighbors or heavy atoms
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
305 BO<n> = Sum of bond orders to non-hydrogen atom neighbors or heavy atoms
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
306 LBO<n> = Largest bond order of non-hydrogen atom neighbors or heavy atoms
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
307 SB<n> = Number of single bonds to non-hydrogen atom neighbors or heavy atoms
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
308 DB<n> = Number of double bonds to non-hydrogen atom neighbors or heavy atoms
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
309 TB<n> = Number of triple bonds to non-hydrogen atom neighbors or heavy atoms
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
310 H<n> = Number of implicit and explicit hydrogens for atom
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
311 Ar = Aromatic annotation indicating whether atom is aromatic
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
312 RA = Ring atom annotation indicating whether atom is a ring
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
313 FC<+n/-n> = Formal charge assigned to atom
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
314 MN<n> = Mass number indicating isotope other than most abundant isotope
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
315 SM<n> = Spin multiplicity of atom. Possible values: 1 (singlet), 2 (doublet) or
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
316 3 (triplet)
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
317
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
318 Atom type generated by AtomTypes::AtomicInvariantsAtomTypes class
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
319 corresponds to:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
320
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
321 AS.X<n>.BO<n>.LBO<n>.<SB><n>.<DB><n>.<TB><n>.H<n>.Ar.RA.FC<+n/-n>.MN<n>.SM<n>
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
322
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
323 Except for AS which is a required atomic invariant in atom types,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
324 all other atomic invariants are optional. Atom type specification
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
325 doesn't include atomic invariants with zero or undefined values.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
326
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
327 In addition to usage of abbreviations for specifying atomic
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
328 invariants, the following descriptive words are also allowed:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
329
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
330 X : NumOfNonHydrogenAtomNeighbors or NumOfHeavyAtomNeighbors
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
331 BO : SumOfBondOrdersToNonHydrogenAtoms or SumOfBondOrdersToHeavyAtoms
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
332 LBO : LargestBondOrderToNonHydrogenAtoms or LargestBondOrderToHeavyAtoms
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
333 SB : NumOfSingleBondsToNonHydrogenAtoms or NumOfSingleBondsToHeavyAtoms
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
334 DB : NumOfDoubleBondsToNonHydrogenAtoms or NumOfDoubleBondsToHeavyAtoms
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
335 TB : NumOfTripleBondsToNonHydrogenAtoms or NumOfTripleBondsToHeavyAtoms
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
336 H : NumOfImplicitAndExplicitHydrogens
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
337 Ar : Aromatic
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
338 RA : RingAtom
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
339 FC : FormalCharge
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
340 MN : MassNumber
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
341 SM : SpinMultiplicity
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
342
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
343 *AtomTypes::AtomicInvariantsAtomTypes* module is used to assign
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
344 atomic invariant atom types.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
345
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
346 SetFunctionalClassesToUse
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
347 $ExtendedConnectivityFingerprints->SetFunctionalClassesToUse($ValuesRef);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
348 $ExtendedConnectivityFingerprints->SetFunctionalClassesToUse(@Values);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
349
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
350 Sets functional classes invariants to use during
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
351 *FunctionalClassAtomTypes* value of *AtomIdentifierType* for
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
352 extended connectivity fingerprints generation and returns
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
353 *ExtendedConnectivityFingerprints*.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
354
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
355 Possible values for atom functional classes are: *Ar, CA, H, HBA,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
356 HBD, Hal, NI, PI, RA*. Default value [ Ref 24 ]:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
357 *HBD,HBA,PI,NI,Ar,Hal*.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
358
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
359 The functional class abbreviations correspond to:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
360
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
361 HBD: HydrogenBondDonor
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
362 HBA: HydrogenBondAcceptor
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
363 PI : PositivelyIonizable
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
364 NI : NegativelyIonizable
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
365 Ar : Aromatic
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
366 Hal : Halogen
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
367 H : Hydrophobic
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
368 RA : RingAtom
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
369 CA : ChainAtom
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
370
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
371 Functional class atom type specification for an atom corresponds to:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
372
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
373 Ar.CA.H.HBA.HBD.Hal.NI.PI.RA or None
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
374
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
375 *AtomTypes::FunctionalClassAtomTypes* module is used to assign
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
376 functional class atom types. It uses following definitions [ Ref
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
377 60-61, Ref 65-66 ]:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
378
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
379 HydrogenBondDonor: NH, NH2, OH
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
380 HydrogenBondAcceptor: N[!H], O
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
381 PositivelyIonizable: +, NH2
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
382 NegativelyIonizable: -, C(=O)OH, S(=O)OH, P(=O)OH
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
383
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
384 SetNeighborhoodRadius
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
385 $ExtendedConnectivityFingerprints->SetNeighborhoodRadius($Radius);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
386
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
387 Sets neighborhood radius to use during extended connectivity
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
388 fingerprints generation and returns
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
389 *ExtendedConnectivityFingerprints*.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
390
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
391 StringifyExtendedConnectivityFingerprints
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
392 $String = $Fingerprints->StringifyExtendedConnectivityFingerprints();
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
393
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
394 Returns a string containing information about
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
395 *ExtendedConnectivityFingerprints* object.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
396
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
397 AUTHOR
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
398 Manish Sud <msud@san.rr.com>
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
399
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
400 SEE ALSO
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
401 Fingerprints.pm, FingerprintsStringUtil.pm,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
402 AtomNeighborhoodsFingerprints.pm, AtomTypesFingerprints.pm,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
403 EStateIndiciesFingerprints.pm, MACCSKeys.pm, PathLengthFingerprints.pm,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
404 TopologicalAtomPairsFingerprints.pm,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
405 TopologicalAtomTripletsFingerprints.pm,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
406 TopologicalAtomTorsionsFingerprints.pm,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
407 TopologicalPharmacophoreAtomPairsFingerprints.pm,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
408 TopologicalPharmacophoreAtomTripletsFingerprints.pm
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
409
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
410 COPYRIGHT
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
411 Copyright (C) 2015 Manish Sud. All rights reserved.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
412
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
413 This file is part of MayaChemTools.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
414
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
415 MayaChemTools is free software; you can redistribute it and/or modify it
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
416 under the terms of the GNU Lesser General Public License as published by
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
417 the Free Software Foundation; either version 3 of the License, or (at
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
418 your option) any later version.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
419