summaryrefslogtreecommitdiff
path: root/lib/compound.rb
blob: 4436e9d671a26e664279663af12453a0cb4638bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
require 'openbabel'

# Small molecules with defined chemical structures
class Compound 
  DEFAULT_FINGERPRINT = "MP2D"

  attr_reader :smiles, :fingerprints

  def initialize smiles
    @smiles = smiles
    @fingerprints = {}
  end

  # Create chemical fingerprint
  # @param [String] fingerprint type
  # @return [Array<String>] 
  def fingerprint type=DEFAULT_FINGERPRINT
    unless @fingerprints[type]
      if type == "MP2D" # http://openbabel.org/docs/dev/FileFormats/MolPrint2D_format.html#molprint2d-format
        fp = obconversion(@smiles,"smi","mpd").strip.split("\t")
        fp.shift # remove Title
        @fingerprints[type] = fp.uniq # no fingerprint counts
      elsif type== "MNA" # http://openbabel.org/docs/dev/FileFormats/Multilevel_Neighborhoods_of_Atoms_(MNA).html
        level = 2 # TODO: level as parameter, evaluate level 1, see paper
        fp = obconversion(@smiles,"smi","mna","xL\"#{level}\"").split("\n")
        fp.shift # remove Title
        @fingerprints[type] = fp
      else # standard fingerprints
        fp = OpenBabel::OBFingerprint.find_fingerprint(type)
        obmol = OpenBabel::OBMol.new
        obconversion = OpenBabel::OBConversion.new
        obconversion.set_in_format "smi"
        obconversion.read_string obmol, @smiles
        result = OpenBabel::VectorUnsignedInt.new
        fp.get_fingerprint(obmol,result)
        # TODO: %ignore *::DescribeBits @ line 163 openbabel/scripts/openbabel-ruby.i
        #p OpenBabel::OBFingerprint.describe_bits(result)
        # convert result to a list of the bits that are set
        # from openbabel/scripts/python/pybel.py line 830
        # see also http://openbabel.org/docs/dev/UseTheLibrary/Python_Pybel.html#fingerprints
        result = result.to_a
        bitsperint = OpenBabel::OBFingerprint.getbitsperint()
        bits_set = []
        start = 1
        result.each do |x|
          i = start
          while x > 0 do
            bits_set << i if (x % 2) == 1
            x >>= 1
            i += 1
          end
          start += bitsperint
        end
        @fingerprints[type] = bits_set
      end
    end
    @fingerprints[type]
  end

=begin
  # Calculate physchem properties
  # @param [Array<Hash>] list of descriptors
  # @return [Array<Float>]
  def calculate_properties descriptors=PhysChem::OPENBABEL
    calculated_ids = properties.keys
    # BSON::ObjectId instances are not allowed as keys in a BSON document.
    new_ids = descriptors.collect{|d| d.id.to_s} - calculated_ids
    descs = {}
    algos = {}
    new_ids.each do |id|
      descriptor = PhysChem.find id
      descs[[descriptor.library, descriptor.descriptor]]  = descriptor
      algos[descriptor.name] = descriptor
    end
    # avoid recalculating Cdk features with multiple values
    descs.keys.uniq.each do |k|
      descs[k].send(k[0].downcase,k[1],self).each do |n,v|
        properties[algos[n].id.to_s] = v # BSON::ObjectId instances are not allowed as keys in a BSON document.
      end
    end
    save
    descriptors.collect{|d| properties[d.id.to_s]}
  end
=end

  # Match a SMARTS substructure
  # @param [String] smarts
  # @param [TrueClass,FalseClass] count matches or return true/false
  # @return [TrueClass,FalseClass,Fixnum] 
  def smarts_match smarts, count=false
    obconversion = OpenBabel::OBConversion.new
    obmol = OpenBabel::OBMol.new
    obconversion.set_in_format('smi')
    obconversion.read_string(obmol,@smiles)
    smarts_pattern = OpenBabel::OBSmartsPattern.new
    smarts.collect do |sma|
      smarts_pattern.init(sma.smarts)
      if smarts_pattern.match(obmol)
        count ? value = smarts_pattern.get_map_list.to_a.size : value = 1
      else
        value = 0 
      end
      value
    end
  end

  # Create a compound from smiles string
  # @example
  #   compound = Lazar::Compound.from_smiles("c1ccccc1")
  # @param [String] smiles 
  # @return [Lazar::Compound]
  def self.from_smiles smiles
    return nil if smiles.match(/\s/) # spaces seem to confuse obconversion and may lead to invalid smiles
    @smiles = obconversion(smiles,"smi","can") # test if SMILES is correct and return canonical smiles (for compound comparisons)
    @smiles.empty? ? nil : @smiles
  end

  # Create a compound from InChI string
  # @param [String] InChI 
  # @return [OpenTox::Compound] 
  def self.from_inchi inchi
    @smiles = obconversion(inchi,"inchi","can")
    @smiles.empty? ? nil : @smiles
  end

  # Create a compound from SDF 
  # @param [String] SDF 
  # @return [Compound] 
  def self.from_sdf sdf
    # do not store sdf because it might be 2D
    self.new obconversion(sdf,"sdf","can")
  end

  # Create a compound from name. Relies on an external service for name lookups.
  # @example
  #   compound = OpenTox::Compound.from_name("Benzene")
  # @param [String] name, can be also an InChI/InChiKey, CAS number, etc
  # @return [OpenTox::Compound]
  def self.from_name name
    Compound.from_smiles RestClientWrapper.get(File.join(PUBCHEM_URI,"compound","name",URI.escape(name),"property","CanonicalSMILES","TXT")).chomp
  end

  # Get InChI
  # @return [String] 
  def inchi
    obconversion(@smiles,"smi","inchi")
  end

  # Get InChIKey
  # @return [String]
  def inchikey
    obconversion(@smiles,"smi","inchikey")
  end

  # Get SDF
  # @return [String]
  def sdf
    obconversion(smiles,"smi","sdf")
  end

  # Get SVG image
  # @return [image/svg] Image data
  def svg
   obconversion(smiles,"smi","svg")
  end

  # Get png image
  # @example
  #   image = compound.png
  # @return [image/png] Image data
  def png
   obconversion(smiles,"smi","_png2")
  end

  # Get all known compound names. Relies on an external service for name lookups.
  # @example
  #   names = compound.names
  # @return [Array<String>] 
  def names
    RestClientWrapper.get(File.join(PUBCHEM_URI,"compound","smiles",URI.escape(smiles),"synonyms","TXT")).split("\n")
  end

  # Get PubChem Compound Identifier (CID), obtained via REST call to PubChem
  # @return [String] 
  def cid
    RestClientWrapper.post(File.join(PUBCHEM_URI, "compound", "inchi", "cids", "TXT"),{:inchi => inchi}).strip
  end
  
  # Convert mmol to mg
  # @return [Float] value in mg
  def mmol_to_mg mmol
    mmol.to_f*molecular_weight
  end

  # Convert mg to mmol
  # @return [Float] value in mmol
  def mg_to_mmol mg
    mg.to_f/molecular_weight
  end
  
  # Calculate molecular weight of Compound with OB and store it in compound object
  # @return [Float] molecular weight
  def molecular_weight
    mw_feature = PhysChem.find_or_create_by(:name => "Openbabel.MW")
    calculate_properties([mw_feature]).first
  end

  def self.obconversion(identifier,input_format,output_format,option=nil)
    obconversion = OpenBabel::OBConversion.new
    obconversion.set_options(option, OpenBabel::OBConversion::OUTOPTIONS) if option
    obmol = OpenBabel::OBMol.new
    obconversion.set_in_and_out_formats input_format, output_format
    return nil if identifier.nil?
    obconversion.read_string obmol, identifier
    case output_format
    when /smi|can|inchi/
      obconversion.write_string(obmol).split(/\s/).first
    when /sdf/
      # TODO: find disconnected structures
      # strip_salts
      # separate
      obmol.add_hydrogens
      builder = OpenBabel::OBBuilder.new
      builder.build(obmol)

      sdf = obconversion.write_string(obmol)
print sdf
      if sdf.match(/.nan/)
        
        #warn "3D generation failed for compound #{identifier}, trying to calculate 2D structure"
        obconversion.set_options("gen2D", OpenBabel::OBConversion::GENOPTIONS)
        sdf = obconversion.write_string(obmol)
        if sdf.match(/.nan/)
          #warn "2D generation failed for compound #{identifier}, rendering without coordinates."
          obconversion.remove_option("gen2D", OpenBabel::OBConversion::GENOPTIONS)
          sdf = obconversion.write_string(obmol)
        end
      end
      sdf
    else
      obconversion.write_string(obmol)
    end
  end

  def obconversion(identifier,input_format,output_format,option=nil)
    self.class.obconversion(identifier,input_format,output_format,option)
  end

end