annotate docs/modules/txt/FingerprintsFPFileIO.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 FingerprintsFPFileIO
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
3
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
4 SYNOPSIS
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
5 use FileIO::FingerprintsFPFileIO;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
6
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
7 use FileIO::FingerprintsFPFileIO qw(:all);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
8
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
9 DESCRIPTION
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
10 FingerprintsFPFileIO class provides the following methods:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
11
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
12 new, GetFingerprints, GetFingerprintsString, GetHeaderDataKeyValue,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
13 GetHeaderDataKeys, GetHeaderDataKeysAndValues,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
14 GetPartialFingerprintsString, GetRequiredHeaderDataKeys,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
15 GetRequiredHeaderDataKeysAndValues, IsFingerprintsDataValid,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
16 IsFingerprintsFPFile, IsFingerprintsFileDataValid,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
17 IsHeaderDataKeyPresent, Next, Read, SetBitStringFormat, SetBitsOrder,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
18 SetCompoundID, SetDetailLevel, SetFingerprints, SetFingerprintsString,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
19 SetFingerprintsStringMode, SetPartialFingerprintsString,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
20 SetVectorStringFormat, WriteFingerprints, WriteFingerprintsString
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
21
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
22 The following methods can also be used as functions:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
23
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
24 IsFingerprintsFPFile
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
25
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
26 FingerprintsFPFileIO class is derived from *FileIO* class and uses its
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
27 methods to support generic file related functionality.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
28
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
29 The MayaChemTools fingerprints file (FP) format with .fpf or .fp file
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
30 extensions supports two types of fingerprints data: fingerprints
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
31 bit-vectors and fingerprints vectors.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
32
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
33 Example of FP file format containing fingerprints bit-vector string
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
34 data:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
35
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
36 #
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
37 # Package = MayaChemTools 7.4
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
38 # ReleaseDate = Oct 21, 2010
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
39 #
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
40 # TimeStamp = Mon Mar 7 15:14:01 2011
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
41 #
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
42 # FingerprintsStringType = FingerprintsBitVector
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
43 #
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
44 # Description = PathLengthBits:AtomicInvariantsAtomTypes:MinLength1:...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
45 # Size = 1024
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
46 # BitStringFormat = HexadecimalString
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
47 # BitsOrder = Ascending
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
48 #
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
49 Cmpd1 9c8460989ec8a49913991a6603130b0a19e8051c89184414953800cc21510...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
50 Cmpd2 000000249400840040100042011001001980410c000000001010088001120...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
51 ... ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
52 ... ..
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
53
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
54 Example of FP file format containing fingerprints vector string data:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
55
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
56 #
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
57 # Package = MayaChemTools 7.4
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
58 # ReleaseDate = Oct 21, 2010
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
59 #
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
60 # TimeStamp = Mon Mar 7 15:14:01 2011
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
61 #
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
62 # FingerprintsStringType = FingerprintsVector
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
63 #
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
64 # Description = PathLengthBits:AtomicInvariantsAtomTypes:MinLength1:...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
65 # VectorStringFormat = IDsAndValuesString
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
66 # VectorValuesType = NumericalValues
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
67 #
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
68 Cmpd1 338;C F N O C:C C:N C=O CC CF CN CO C:C:C C:C:N C:CC C:CF C:CN C:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
69 N:C C:NC CC:N CC=O CCC CCN CCO CNC NC=O O=CO C:C:C:C C:C:C:N C:C:CC...;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
70 33 1 2 5 21 2 2 12 1 3 3 20 2 10 2 2 1 2 2 2 8 2 5 1 1 1 19 2 8 2 2 2 2
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
71 6 2 2 2 2 2 2 2 2 3 2 2 1 4 1 5 1 1 18 6 2 2 1 2 10 2 1 2 1 2 2 2 2 ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
72 Cmpd2 103;C N O C=N C=O CC CN CO CC=O CCC CCN CCO CNC N=CN NC=O NCN O=C
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
73 O C CC=O CCCC CCCN CCCO CCNC CNC=N CNC=O CNCN CCCC=O CCCCC CCCCN CC...;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
74 15 4 4 1 2 13 5 2 2 15 5 3 2 2 1 1 1 2 17 7 6 5 1 1 1 2 15 8 5 7 2 2 2 2
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
75 1 2 1 1 3 15 7 6 8 3 4 4 3 2 2 1 2 3 14 2 4 7 4 4 4 4 1 1 1 2 1 1 1 ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
76 ... ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
77 ... ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
78
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
79 FP file data format consists of two main sections: header section and
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
80 fingerprints string data section. The header section lines start with #
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
81 and the first line not starting with # represents the start of
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
82 fingerprints string data section. The header section contains both the
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
83 required and optional information which is specified as key = value
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
84 pairs. The required information describes fingerprints bit-vector and
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
85 vector strings and used to generate fingerprints objects; the optional
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
86 information is ignored during generation of fingerpints objects.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
87
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
88 The key = value data specification in the header section and its
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
89 processing follows these rules:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
90
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
91 o Leading and trailing spaces for key = value pairs are ignored
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
92 o Key and value strings may contain spaces
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
93 o Multiple key = value pairs on a single are delimited by semicolon
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
94
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
95 The default optional header data section key = value pairs are:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
96
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
97 # Package = MayaChemTools 7.4
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
98 # ReleaseDate = Oct 21, 2010
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
99
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
100 The FingerprintsStringType key is required data header key for both
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
101 fingerprints bit-vector and vector strings. Possible key values:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
102 *FingerprintsBitVector or FingerprintsVector*. For example:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
103
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
104 # FingerprintsStringType = FingerprintsBitVector
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
105
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
106 The required data header keys for fingerprints bit-vector string are:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
107 Description, Size, BitStringFormat, and BitsOrder. Possible values for
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
108 BitStringFormat: *HexadecimalString or BinaryString*. Possible values
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
109 for BitsOrder: *Ascending or Descending*. The Description key contains
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
110 information about various parameters used to generate fingerprints
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
111 bit-vector string. The Size corresponds to number of fingerprints bits
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
112 and is always less than or equal to number of bits in bit-vetor string
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
113 which might contain extra bits at the end to round off the size to make
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
114 it multiple of 8. For example:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
115
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
116 # Description = PathLengthBits:AtomicInvariantsAtomTypes:MinLength1:...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
117 # Size = 1024
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
118 # BitStringFormat = HexadecimalString
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
119 # BitsOrder = Ascending
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
120
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
121 The required data header keys for fingerprints vector string are:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
122 Description, VectorStringFormat, and VectorValuesType. Possible values
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
123 for VectorStringFormat: *DsAndValuesString, IDsAndValuesPairsString,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
124 ValuesAndIDsString, ValuesAndIDsPairsString or ValuesString*. Possible
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
125 values for VectorValuesType: *NumericalValues, OrderedNumericalValues or
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
126 AlphaNumericalValues*. The Description keys contains information various
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
127 parameters used to generate fingerprints vector string. For example:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
128
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
129 # Description = PathLengthBits:AtomicInvariantsAtomTypes:MinLength1:...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
130 # VectorStringFormat = IDsAndValuesString
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
131 # VectorValuesType = NumericalValues
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
132
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
133 The fingerprints data section for fingerprints bit-vector string
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
134 contains data in the following format:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
135
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
136 ... ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
137 CmpdID FingerprintsPartialBitVectorString
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
138 ... ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
139
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
140 For example:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
141
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
142 ... ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
143 Cmpd1 9c8460989ec8a49913991a6603130b0a19e8051c89184414953800cc21510...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
144 ... ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
145
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
146 The fingerprints data section for fingerprints vector string contains
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
147 data in the following format:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
148
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
149 ... ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
150 CmpdID Size;FingerprintsPartialVectorString
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
151 ... ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
152
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
153 For example:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
154
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
155 ... ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
156 Cmpd1 338;C F N O C:C C:N C=O CC CF CN CO C:C:C C:C:N C:CC C:CF C:CN C:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
157 N:C C:NC CC:N CC=O CCC CCN CCO CNC NC=O O=CO C:C:C:C C:C:C:N C:C:CC...;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
158 33 1 2 5 21 2 2 12 1 3 3 20 2 10 2 2 1 2 2 2 8 2 5 1 1 1 19 2 8 2 2 2 2
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
159 6 2 2 2 2 2 2 2 2 3 2 2 1 4 1 5 1 1 18 6 2 2 1 2 10 2 1 2 1 2 2 2 2 ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
160 ... ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
161
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
162 Unlike fingerprints bit-vector string, *Size* is specified for each
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
163 partial fingerprints vector string: It may change from molecule to
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
164 molecule for same type of fingerprints.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
165
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
166 Values IDs are optional for fingerprints vector string containing
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
167 *OrderedNumericalValues or AlphaNumericalValues*; however, they must be
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
168 present for for *NumericalValues*. Due to various possible values for
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
169 VectorStringFormat, the fingerprints data section for fingerprints
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
170 vector string supports following type of data formats:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
171
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
172 CmpdID Size;ID1 ID2 ID3...;Value1 Value2 Value3...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
173 CmpdID Size;ID1 Value1 ID2 Value2 ID3 Value3... ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
174 CmpdID Size;ValuesAndIDsString: Value1 Value2 Value3...;ID1 ID2 ID3...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
175 CmpdID Size;ValuesAndIDsPairsString: Value1 ID1 Value2 ID2 Value3 ID3... ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
176 CmpdID Size;Value1 Value2 Value3 ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
177
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
178 However, all the fingerprints vector string data present in FP file must
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
179 correspond to only one of the formats shown above; multiple data formats
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
180 in the same file are not allowed.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
181
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
182 The current release of MayaChemTools supports the following types of
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
183 fingerprint bit-vector and vector strings:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
184
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
185 FingerprintsVector;AtomNeighborhoods:AtomicInvariantsAtomTypes:MinRadi
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
186 us0:MaxRadius2;41;AlphaNumericalValues;ValuesString;NR0-C.X1.BO1.H3-AT
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
187 C1:NR1-C.X3.BO3.H1-ATC1:NR2-C.X1.BO1.H3-ATC1:NR2-C.X3.BO4-ATC1 NR0-C.X
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
188 1.BO1.H3-ATC1:NR1-C.X3.BO3.H1-ATC1:NR2-C.X1.BO1.H3-ATC1:NR2-C.X3.BO4-A
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
189 TC1 NR0-C.X2.BO2.H2-ATC1:NR1-C.X2.BO2.H2-ATC1:NR1-C.X3.BO3.H1-ATC1:NR2
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
190 -C.X2.BO2.H2-ATC1:NR2-N.X3.BO3-ATC1:NR2-O.X1.BO1.H1-ATC1 NR0-C.X2.B...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
191
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
192 FingerprintsVector;AtomTypesCount:AtomicInvariantsAtomTypes:ArbitraryS
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
193 ize;10;NumericalValues;IDsAndValuesString;C.X1.BO1.H3 C.X2.BO2.H2 C.X2
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
194 .BO3.H1 C.X3.BO3.H1 C.X3.BO4 F.X1.BO1 N.X2.BO2.H1 N.X3.BO3 O.X1.BO1.H1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
195 O.X1.BO2;2 4 14 3 10 1 1 1 3 2
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
196
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
197 FingerprintsVector;AtomTypesCount:SLogPAtomTypes:ArbitrarySize;16;Nume
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
198 ricalValues;IDsAndValuesString;C1 C10 C11 C14 C18 C20 C21 C22 C5 CS F
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
199 N11 N4 O10 O2 O9;5 1 1 1 14 4 2 1 2 2 1 1 1 1 3 1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
200
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
201 FingerprintsVector;AtomTypesCount:SLogPAtomTypes:FixedSize;67;OrderedN
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
202 umericalValues;IDsAndValuesString;C1 C2 C3 C4 C5 C6 C7 C8 C9 C10 C11 C
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
203 12 C13 C14 C15 C16 C17 C18 C19 C20 C21 C22 C23 C24 C25 C26 C27 CS N1 N
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
204 2 N3 N4 N5 N6 N7 N8 N9 N10 N11 N12 N13 N14 NS O1 O2 O3 O4 O5 O6 O7 O8
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
205 O9 O10 O11 O12 OS F Cl Br I Hal P S1 S2 S3 Me1 Me2;5 0 0 0 2 0 0 0 0 1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
206 1 0 0 1 0 0 0 14 0 4 2 1 0 0 0 0 0 2 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
207
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
208 FingerprintsVector;EStateIndicies:ArbitrarySize;11;NumericalValues;IDs
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
209 AndValuesString;SaaCH SaasC SaasN SdO SdssC SsCH3 SsF SsOH SssCH2 SssN
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
210 H SsssCH;24.778 4.387 1.993 25.023 -1.435 3.975 14.006 29.759 -0.073 3
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
211 .024 -2.270
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
212
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
213 FingerprintsVector;EStateIndicies:FixedSize;87;OrderedNumericalValues;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
214 ValuesString;0 0 0 0 0 0 0 3.975 0 -0.073 0 0 24.778 -2.270 0 0 -1.435
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
215 4.387 0 0 0 0 0 0 3.024 0 0 0 0 0 0 0 1.993 0 29.759 25.023 0 0 0 0 1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
216 4.006 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
217 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
218
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
219 FingerprintsVector;ExtendedConnectivity:AtomicInvariantsAtomTypes:Radi
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
220 us2;60;AlphaNumericalValues;ValuesString;73555770 333564680 352413391
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
221 666191900 1001270906 1371674323 1481469939 1977749791 2006158649 21414
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
222 08799 49532520 64643108 79385615 96062769 273726379 564565671 85514103
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
223 5 906706094 988546669 1018231313 1032696425 1197507444 1331250018 1338
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
224 532734 1455473691 1607485225 1609687129 1631614296 1670251330 17303...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
225
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
226 FingerprintsVector;ExtendedConnectivityCount:AtomicInvariantsAtomTypes
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
227 :Radius2;60;NumericalValues;IDsAndValuesString;73555770 333564680 3524
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
228 13391 666191900 1001270906 1371674323 1481469939 1977749791 2006158649
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
229 2141408799 49532520 64643108 79385615 96062769 273726379 564565671...;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
230 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
231 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
232
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
233 FingerprintsBitVector;ExtendedConnectivityBits:AtomicInvariantsAtomTyp
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
234 es:Radius2;1024;BinaryString;Ascending;0000000000000000000000000000100
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
235 0000000001010000000110000011000000000000100000000000000000000000100001
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
236 1000000110000000000000000000000000010011000000000000000000000000010000
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
237 0000000000000000000000000010000000000000000001000000000000000000000000
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
238 0000000000010000100001000000000000101000000000000000100000000000000...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
239
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
240 FingerprintsVector;ExtendedConnectivity:FunctionalClassAtomTypes:Radiu
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
241 s2;57;AlphaNumericalValues;ValuesString;24769214 508787397 850393286 8
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
242 62102353 981185303 1231636850 1649386610 1941540674 263599683 32920567
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
243 1 571109041 639579325 683993318 723853089 810600886 885767127 90326012
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
244 7 958841485 981022393 1126908698 1152248391 1317567065 1421489994 1455
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
245 632544 1557272891 1826413669 1983319256 2015750777 2029559552 20404...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
246
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
247 FingerprintsVector;ExtendedConnectivity:EStateAtomTypes:Radius2;62;Alp
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
248 haNumericalValues;ValuesString;25189973 528584866 662581668 671034184
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
249 926543080 1347067490 1738510057 1759600920 2034425745 2097234755 21450
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
250 44754 96779665 180364292 341712110 345278822 386540408 387387308 50430
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
251 1706 617094135 771528807 957666640 997798220 1158349170 1291258082 134
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
252 1138533 1395329837 1420277211 1479584608 1486476397 1487556246 1566...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
253
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
254 FingerprintsBitVector;MACCSKeyBits;166;BinaryString;Ascending;00000000
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
255 0000000000000000000000000000000001001000010010000000010010000000011100
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
256 0100101010111100011011000100110110000011011110100110111111111111011111
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
257 11111111111110111000
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
258
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
259 FingerprintsBitVector;MACCSKeyBits;322;BinaryString;Ascending;11101011
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
260 1110011111100101111111000111101100110000000000000011100010000000000000
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
261 0000000000000000000000000000000000000000000000101000000000000000000000
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
262 0000000000000000000000000000000000000000000000000000000000000000000000
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
263 0000000000000000000000000000000000000011000000000000000000000000000000
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
264 0000000000000000000000000000000000000000
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
265
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
266 FingerprintsVector;MACCSKeyCount;166;OrderedNumericalValues;ValuesStri
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
267 ng;0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
268 0 0 0 0 0 0 0 1 0 0 3 0 0 0 0 4 0 0 2 0 0 0 0 0 0 0 0 2 0 0 2 0 0 0 0
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
269 0 0 0 0 1 1 8 0 0 0 1 0 0 1 0 1 0 1 0 3 1 3 1 0 0 0 1 2 0 11 1 0 0 0
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
270 5 0 0 1 2 0 1 1 0 0 0 0 0 1 1 0 1 1 1 1 0 4 0 0 1 1 0 4 6 1 1 1 2 1 1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
271 3 5 2 2 0 5 3 5 1 1 2 5 1 2 1 2 4 8 3 5 5 2 2 0 3 5 4 1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
272
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
273 FingerprintsVector;MACCSKeyCount;322;OrderedNumericalValues;ValuesStri
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
274 ng;14 8 2 0 2 0 4 4 2 1 4 0 0 2 5 10 5 2 1 0 0 2 0 5 13 3 28 5 5 3 0 0
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
275 0 4 2 1 1 0 1 1 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22 5 3 0 0 0 1 0
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
276 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
277 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 0 2 0 0 0 0 0 0 0 0 0
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
278 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
279
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
280 FingerprintsBitVector;PathLengthBits:AtomicInvariantsAtomTypes:MinLeng
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
281 th1:MaxLength8;1024;BinaryString;Ascending;001000010011010101011000110
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
282 0100010101011000101001011100110001000010001001101000001001001001001000
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
283 0010110100000111001001000001001010100100100000000011000000101001011100
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
284 0010000001000101010100000100111100110111011011011000000010110111001101
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
285 0101100011000000010001000011000010100011101100001000001000100000000...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
286
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
287 FingerprintsVector;PathLengthCount:AtomicInvariantsAtomTypes:MinLength
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
288 1:MaxLength8;432;NumericalValues;IDsAndValuesPairsString;C.X1.BO1.H3 2
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
289 C.X2.BO2.H2 4 C.X2.BO3.H1 14 C.X3.BO3.H1 3 C.X3.BO4 10 F.X1.BO1 1 N.X
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
290 2.BO2.H1 1 N.X3.BO3 1 O.X1.BO1.H1 3 O.X1.BO2 2 C.X1.BO1.H3C.X3.BO3.H1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
291 2 C.X2.BO2.H2C.X2.BO2.H2 1 C.X2.BO2.H2C.X3.BO3.H1 4 C.X2.BO2.H2C.X3.BO
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
292 4 1 C.X2.BO2.H2N.X3.BO3 1 C.X2.BO3.H1:C.X2.BO3.H1 10 C.X2.BO3.H1:C....
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
293
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
294 FingerprintsVector;PathLengthCount:MMFF94AtomTypes:MinLength1:MaxLengt
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
295 h8;463;NumericalValues;IDsAndValuesPairsString;C5A 2 C5B 2 C=ON 1 CB 1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
296 8 COO 1 CR 9 F 1 N5 1 NC=O 1 O=CN 1 O=CO 1 OC=O 1 OR 2 C5A:C5B 2 C5A:N
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
297 5 2 C5ACB 1 C5ACR 1 C5B:C5B 1 C5BC=ON 1 C5BCB 1 C=ON=O=CN 1 C=ONNC=O 1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
298 CB:CB 18 CBF 1 CBNC=O 1 COO=O=CO 1 COOCR 1 COOOC=O 1 CRCR 7 CRN5 1 CR
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
299 OR 2 C5A:C5B:C5B 2 C5A:C5BC=ON 1 C5A:C5BCB 1 C5A:N5:C5A 1 C5A:N5CR ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
300
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
301 FingerprintsVector;TopologicalAtomPairs:AtomicInvariantsAtomTypes:MinD
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
302 istance1:MaxDistance10;223;NumericalValues;IDsAndValuesString;C.X1.BO1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
303 .H3-D1-C.X3.BO3.H1 C.X2.BO2.H2-D1-C.X2.BO2.H2 C.X2.BO2.H2-D1-C.X3.BO3.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
304 H1 C.X2.BO2.H2-D1-C.X3.BO4 C.X2.BO2.H2-D1-N.X3.BO3 C.X2.BO3.H1-D1-...;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
305 2 1 4 1 1 10 8 1 2 6 1 2 2 1 2 1 2 2 1 2 1 5 1 10 12 2 2 1 2 1 9 1 3 1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
306 1 1 2 2 1 3 6 1 6 14 2 2 2 3 1 3 1 8 2 2 1 3 2 6 1 2 2 5 1 3 1 23 1...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
307
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
308 FingerprintsVector;TopologicalAtomPairs:FunctionalClassAtomTypes:MinDi
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
309 stance1:MaxDistance10;144;NumericalValues;IDsAndValuesString;Ar-D1-Ar
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
310 Ar-D1-Ar.HBA Ar-D1-HBD Ar-D1-Hal Ar-D1-None Ar.HBA-D1-None HBA-D1-NI H
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
311 BA-D1-None HBA.HBD-D1-NI HBA.HBD-D1-None HBD-D1-None NI-D1-None No...;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
312 23 2 1 1 2 1 1 1 1 2 1 1 7 28 3 1 3 2 8 2 1 1 1 5 1 5 24 3 3 4 2 13 4
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
313 1 1 4 1 5 22 4 4 3 1 19 1 1 1 1 1 2 2 3 1 1 8 25 4 5 2 3 1 26 1 4 1 ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
314
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
315 FingerprintsVector;TopologicalAtomTorsions:AtomicInvariantsAtomTypes;3
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
316 3;NumericalValues;IDsAndValuesString;C.X1.BO1.H3-C.X3.BO3.H1-C.X3.BO4-
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
317 C.X3.BO4 C.X1.BO1.H3-C.X3.BO3.H1-C.X3.BO4-N.X3.BO3 C.X2.BO2.H2-C.X2.BO
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
318 2.H2-C.X3.BO3.H1-C.X2.BO2.H2 C.X2.BO2.H2-C.X2.BO2.H2-C.X3.BO3.H1-O...;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
319 2 2 1 1 2 2 1 1 3 4 4 8 4 2 2 6 2 2 1 2 1 1 2 1 1 2 6 2 4 2 1 3 1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
320
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
321 FingerprintsVector;TopologicalAtomTorsions:EStateAtomTypes;36;Numerica
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
322 lValues;IDsAndValuesString;aaCH-aaCH-aaCH-aaCH aaCH-aaCH-aaCH-aasC aaC
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
323 H-aaCH-aasC-aaCH aaCH-aaCH-aasC-aasC aaCH-aaCH-aasC-sF aaCH-aaCH-aasC-
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
324 ssNH aaCH-aasC-aasC-aasC aaCH-aasC-aasC-aasN aaCH-aasC-ssNH-dssC a...;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
325 4 4 8 4 2 2 6 2 2 2 4 3 2 1 3 3 2 2 2 1 2 1 1 1 2 1 1 1 1 1 1 1 2 1 1 2
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
326
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
327 FingerprintsVector;TopologicalAtomTriplets:AtomicInvariantsAtomTypes:M
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
328 inDistance1:MaxDistance10;3096;NumericalValues;IDsAndValuesString;C.X1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
329 .BO1.H3-D1-C.X1.BO1.H3-D1-C.X3.BO3.H1-D2 C.X1.BO1.H3-D1-C.X2.BO2.H2-D1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
330 0-C.X3.BO4-D9 C.X1.BO1.H3-D1-C.X2.BO2.H2-D3-N.X3.BO3-D4 C.X1.BO1.H3-D1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
331 -C.X2.BO2.H2-D4-C.X2.BO2.H2-D5 C.X1.BO1.H3-D1-C.X2.BO2.H2-D6-C.X3....;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
332 1 2 2 2 2 2 2 2 8 8 4 8 4 4 2 2 2 2 4 2 2 2 4 2 2 2 2 1 2 2 4 4 4 2 2
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
333 2 4 4 4 8 4 4 2 4 4 4 2 4 4 2 2 2 2 2 2 2 2 1 2 2 2 2 2 2 2 2 2 2 8...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
334
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
335 FingerprintsVector;TopologicalAtomTriplets:SYBYLAtomTypes:MinDistance1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
336 :MaxDistance10;2332;NumericalValues;IDsAndValuesString;C.2-D1-C.2-D9-C
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
337 .3-D10 C.2-D1-C.2-D9-C.ar-D10 C.2-D1-C.3-D1-C.3-D2 C.2-D1-C.3-D10-C.3-
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
338 D9 C.2-D1-C.3-D2-C.3-D3 C.2-D1-C.3-D2-C.ar-D3 C.2-D1-C.3-D3-C.3-D4 C.2
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
339 -D1-C.3-D3-N.ar-D4 C.2-D1-C.3-D3-O.3-D2 C.2-D1-C.3-D4-C.3-D5 C.2-D1-C.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
340 3-D5-C.3-D6 C.2-D1-C.3-D5-O.3-D4 C.2-D1-C.3-D6-C.3-D7 C.2-D1-C.3-D7...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
341
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
342 FingerprintsVector;TopologicalPharmacophoreAtomPairs:ArbitrarySize:Min
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
343 Distance1:MaxDistance10;54;NumericalValues;IDsAndValuesString;H-D1-H H
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
344 -D1-NI HBA-D1-NI HBD-D1-NI H-D2-H H-D2-HBA H-D2-HBD HBA-D2-HBA HBA-D2-
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
345 HBD H-D3-H H-D3-HBA H-D3-HBD H-D3-NI HBA-D3-NI HBD-D3-NI H-D4-H H-D4-H
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
346 BA H-D4-HBD HBA-D4-HBA HBA-D4-HBD HBD-D4-HBD H-D5-H H-D5-HBA H-D5-...;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
347 18 1 2 1 22 12 8 1 2 18 6 3 1 1 1 22 13 6 5 7 2 28 9 5 1 1 1 36 16 10
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
348 3 4 1 37 10 8 1 35 10 9 3 3 1 28 7 7 4 18 16 12 5 1 2 1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
349
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
350 FingerprintsVector;TopologicalPharmacophoreAtomPairs:FixedSize:MinDist
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
351 ance1:MaxDistance10;150;OrderedNumericalValues;ValuesString;18 0 0 1 0
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
352 0 0 2 0 0 1 0 0 0 0 22 12 8 0 0 1 2 0 0 0 0 0 0 0 0 18 6 3 1 0 0 0 1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
353 0 0 1 0 0 0 0 22 13 6 0 0 5 7 0 0 2 0 0 0 0 0 28 9 5 1 0 0 0 1 0 0 1 0
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
354 0 0 0 36 16 10 0 0 3 4 0 0 1 0 0 0 0 0 37 10 8 0 0 0 0 1 0 0 0 0 0 0
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
355 0 35 10 9 0 0 3 3 0 0 1 0 0 0 0 0 28 7 7 4 0 0 0 0 0 0 0 0 0 0 0 18...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
356
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
357 FingerprintsVector;TopologicalPharmacophoreAtomTriplets:ArbitrarySize:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
358 MinDistance1:MaxDistance10;696;NumericalValues;IDsAndValuesString;Ar1-
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
359 Ar1-Ar1 Ar1-Ar1-H1 Ar1-Ar1-HBA1 Ar1-Ar1-HBD1 Ar1-H1-H1 Ar1-H1-HBA1 Ar1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
360 -H1-HBD1 Ar1-HBA1-HBD1 H1-H1-H1 H1-H1-HBA1 H1-H1-HBD1 H1-HBA1-HBA1 H1-
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
361 HBA1-HBD1 H1-HBA1-NI1 H1-HBD1-NI1 HBA1-HBA1-NI1 HBA1-HBD1-NI1 Ar1-...;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
362 46 106 8 3 83 11 4 1 21 5 3 1 2 2 1 1 1 100 101 18 11 145 132 26 14 23
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
363 28 3 3 5 4 61 45 10 4 16 20 7 5 1 3 4 5 3 1 1 1 1 5 4 2 1 2 2 2 1 1 1
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
364 119 123 24 15 185 202 41 25 22 17 3 5 85 95 18 11 23 17 3 1 1 6 4 ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
365
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
366 FingerprintsVector;TopologicalPharmacophoreAtomTriplets:FixedSize:MinD
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
367 istance1:MaxDistance10;2692;OrderedNumericalValues;ValuesString;46 106
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
368 8 3 0 0 83 11 4 0 0 0 1 0 0 0 0 0 0 0 0 21 5 3 0 0 1 2 2 0 0 1 0 0 0
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
369 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 101 18 11 0 0 145 132 26
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
370 14 0 0 23 28 3 3 0 0 5 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 61 45 10 4 0
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
371 0 16 20 7 5 1 0 3 4 5 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 5 ...
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
372
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
373 METHODS
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
374 new
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
375 $NewFingerprintsFPFileIO = new FileIO::FingerprintsFPFileIO(%IOParameters);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
376
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
377 Using specified *IOParameters* names and values hash, new method
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
378 creates a new object and returns a reference to a newly created
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
379 FingerprintsFPFileIO object. By default, the following properties
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
380 are initialized during *Read* mode:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
381
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
382 Name = '';
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
383 Mode = 'Read';
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
384 Status = 0;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
385 FingerprintsStringMode = 'AutoDetect';
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
386 ValidateData = 1;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
387 DetailLevel = 1;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
388
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
389 During *Write* mode, the following properties get initialize by
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
390 default:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
391
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
392 FingerprintsStringMode = undef;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
393
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
394 BitStringFormat = HexadecimalString;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
395 BitsOrder = Ascending;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
396
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
397 VectorStringFormat = NumericalValuesString or ValuesString;
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
398
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
399 Examples:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
400
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
401 $NewFingerprintsFPFileIO = new FileIO::FingerprintsFPFileIO(
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
402 'Name' => 'Sample.fpf',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
403 'Mode' => 'Read',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
404 'FingerprintsStringMode' =>
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
405 'AutoDetect');
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
406
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
407 $NewFingerprintsFPFileIO = new FileIO::FingerprintsFPFileIO(
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
408 'Name' => 'Sample.fpf',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
409 'Mode' => 'Write',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
410 'FingerprintsStringMode' =>
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
411 'FingerprintsBitVectorString',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
412 'Overwrite' => 1,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
413 'BitStringFormat' => 'HexadecimalString',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
414 'BitsOrder' => 'Ascending');
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
415
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
416 $NewFingerprintsFPFileIO = new FileIO::FingerprintsFPFileIO(
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
417 'Name' => 'Sample.fp',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
418 'Mode' => 'Write',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
419 'FingerprintsStringMode' =>
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
420 'FingerprintsVectorString',
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
421 'Overwrite' => 1,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
422 'VectorStringFormat' => 'IDsAndValuesString');
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
423
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
424 GetFingerprints
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
425 $FingerprintsObject = $FingerprintsFPFileIO->GetFingerprints();
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
426
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
427 Returns FingerprintsObject generated for current data line using
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
428 fingerprints bit-vector or vector string data. The fingerprints
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
429 object corresponds to any of the supported fingerprints such as
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
430 PathLengthFingerprints, ExtendedConnectivity, and so on.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
431
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
432 GetFingerprintsString
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
433 $FingerprintsString = $FingerprintsFPFileIO->GetFingerprintsString();
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
434
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
435 Returns FingerprintsString for current data line.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
436
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
437 GetHeaderDataKeyValue
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
438 $KeyValue = $FingerprintsFPFileIO->GetHeaderDataKeyValue($Key);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
439
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
440 Returns KeyValue of a data header *Key*.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
441
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
442 GetHeaderDataKeys
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
443 @Keys = $FingerprintsFPFileIO->GetHeaderDataKeys();
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
444 $NumOfKeys = $FingerprintsFPFileIO->GetHeaderDataKeys();
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
445
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
446 Returns an array of data header Keys retrieved from data header
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
447 section of fingerprints file. In scalar context, it returns number
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
448 of keys.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
449
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
450 GetHeaderDataKeysAndValues
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
451 %KeysAndValues = $FingerprintsFPFileIO->GetHeaderDataKeysAndValues();
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
452
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
453 Returns a hash of data header keys and values retrieved from data
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
454 header section of fingerprints file.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
455
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
456 GetPartialFingerprintsString
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
457 $FingerprintsString = $FingerprintsFPFileIO->GetPartialFingerprintsString();
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
458
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
459 Returns partial FingerprintsString for current data line. It
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
460 corresponds to fingerprints string specified present in a line.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
461
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
462 GetRequiredHeaderDataKeys
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
463 @Keys = $FingerprintsFPFileIO->GetRequiredHeaderDataKeys();
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
464 $NumOfKeys = $FingerprintsFPFileIO->GetRequiredHeaderDataKeys();
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
465
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
466 Returns an array of required data header Keys for a fingerprints
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
467 file containing bit-vector or vector strings data. In scalar
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
468 context, it returns number of keys.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
469
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
470 GetRequiredHeaderDataKeysAndValues
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
471 %KeysAndValues = $FingerprintsFPFileIO->
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
472 GetRequiredHeaderDataKeysAndValues();
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
473
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
474 Returns a hash of required data header keys and values for a
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
475 fingerprints file containing bit-vector or vector strings data
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
476
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
477 IsFingerprintsDataValid
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
478 $Status = $FingerprintsFPFileIO->IsFingerprintsDataValid();
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
479
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
480 Returns 1 or 0 based on whether FingerprintsObject is valid.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
481
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
482 IsFingerprintsFPFile
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
483 $Status = $FingerprintsFPFileIO->IsFingerprintsFPFile($FileName);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
484 $Status = FileIO::FingerprintsFPFileIO::IsFingerprintsFPFile($FileName);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
485
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
486 Returns 1 or 0 based on whether *FileName* is a FP file.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
487
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
488 IsFingerprintsFileDataValid
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
489 $Status = $FingerprintsFPFileIO->IsFingerprintsFileDataValid();
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
490
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
491 Returns 1 or 0 based on whether fingerprints file contains valid
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
492 fingerprints data.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
493
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
494 IsHeaderDataKeyPresent
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
495 $Status = $FingerprintsFPFileIO->IsHeaderDataKeyPresent($Key);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
496
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
497 Returns 1 or 0 based on whether data header *Key* is present in data
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
498 header section of a FP file.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
499
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
500 Next or Read
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
501 $FingerprintsFPFileIO = $FingerprintsFPFileIO->Next();
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
502 $FingerprintsFPFileIO = $FingerprintsFPFileIO->Read();
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
503
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
504 Reads next available fingerprints line in FP file, processes the
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
505 data, generates appropriate fingerprints object, and returns
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
506 FingerprintsFPFileIO. The generated fingerprints object is available
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
507 using method GetFingerprints.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
508
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
509 SetBitStringFormat
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
510 $FingerprintsFPFileIO->SetBitStringFormat($Format);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
511
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
512 Sets bit string *Format* for fingerprints bit-vector string data in
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
513 a FP file and returns FingerprintsFPFileIO. Possible values for
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
514 BitStringFormat: *BinaryString or HexadecimalString*.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
515
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
516 SetBitsOrder
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
517 $FingerprintsFPFileIO->SetBitsOrder($BitsOrder);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
518
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
519 Sets *BitsOrder* for fingerprints bit-vector string data in a FP
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
520 file and returns FingerprintsFPFileIO. Possible values for
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
521 BitsOrder: *Ascending or Descending*.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
522
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
523 SetCompoundID
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
524 $FingerprintsFPFileIO->SetCompoundID($ID);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
525
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
526 Sets compound ID for current data line and returns
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
527 FingerprintsFPFileIO. Spaces are not allowed in compound IDs.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
528
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
529 SetDetailLevel
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
530 $FingerprintsFPFileIO->SetDetailLevel($Level);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
531
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
532 Sets details *Level* for generating diagnostics messages during FP
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
533 file processing and returns FingerprintsFPFileIO. Possible values:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
534 *Positive integers*.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
535
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
536 SetFingerprints
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
537 $FingerprintsFPFileIO->SetFingerprints($FingerprintsObject);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
538
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
539 Sets *FingerprintsObject* for current data line and returns
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
540 FingerprintsFPFileIO.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
541
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
542 SetFingerprintsString
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
543 $FingerprintsFPFileIO->SetFingerprintsString($FingerprintsString);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
544
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
545 Sets *FingerprintsString* for current data line and returns
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
546 FingerprintsFPFileIO.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
547
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
548 SetFingerprintsStringMode
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
549 $FingerprintsFPFileIO->SetFingerprintsStringMode($Mode);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
550
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
551 Sets *FingerprintsStringMode* for FP file and returns
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
552 FingerprintsFPFileIO. Possible values: *AutoDetect,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
553 FingerprintsBitVectorString, or FingerprintsVectorString*
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
554
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
555 SetPartialFingerprintsString
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
556 $FingerprintsFPFileIO->SetPartialFingerprintsString($PartialString);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
557
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
558 Sets *PartialFingerprintsString* for current data line and returns
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
559 FingerprintsFPFileIO.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
560
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
561 SetVectorStringFormat
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
562 $FingerprintsFPFileIO->SetVectorStringFormat($Format);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
563
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
564 Sets *VectorStringFormat* for FP file and returns
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
565 FingerprintsFPFileIO. Possible values: *IDsAndValuesString,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
566 IDsAndValuesPairsString, ValuesAndIDsString,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
567 ValuesAndIDsPairsString*.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
568
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
569 WriteFingerprints
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
570 $FingerprintsFPFileIO->WriteFingerprints($FingerprintsObject,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
571 $CompoundID);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
572
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
573 Writes fingerprints string generated from *FingerprintsObject*
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
574 object and other data including *CompoundID* to FP file and returns
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
575 FingerprintsFPFileIO.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
576
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
577 WriteFingerprintsString
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
578 $FingerprintsFPFileIO->WriteFingerprints($FingerprintsString,
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
579 $CompoundID);
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
580
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
581 Writes *FingerprintsString* and other data including *CompoundID* to
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
582 FP file and returns FingerprintsFPFileIO.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
583
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
584 Caveats:
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
585
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
586 o FingerprintsStringMode, BitStringFormat, BitsOrder, VectorStringFormat
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
587 values are ignored during writing of fingerprints and it's written to
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
588 the file as it is.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
589 o FingerprintsString is a regular fingerprints string as oppose to a
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
590 partial fingerprints string.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
591
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
592 AUTHOR
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
593 Manish Sud <msud@san.rr.com>
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
594
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
595 SEE ALSO
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
596 FingerprintsSDFileIO.pm, FingerprintsTextFileIO.pm
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
597
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
598 COPYRIGHT
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
599 Copyright (C) 2015 Manish Sud. All rights reserved.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
600
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
601 This file is part of MayaChemTools.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
602
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
603 MayaChemTools is free software; you can redistribute it and/or modify it
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
604 under the terms of the GNU Lesser General Public License as published by
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
605 the Free Software Foundation; either version 3 of the License, or (at
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
606 your option) any later version.
2abf0d43254d Uploaded
deepakjadmin
parents:
diff changeset
607