This file is indexed.

/usr/share/pyshared/cinfony/indy.py is in python-cinfony 1.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
#-*. coding: utf-8 -*-
## Copyright (c) 2011, Noel O'Boyle; 2012, AdriƠ Cereto-MassaguƩ
## All rights reserved.
##
##  This file is part of Cinfony.
##  The contents are covered by the terms of the GPL v3 license
##  which is included in the file LICENSE_GPLv3.txt.


"""
indy - A Cinfony module for accessing Indigo from CPython, Jython or IronPython

Global variables:
  indigo - the underlying Indigo() object
  informats - a dictionary of supported input formats
  outformats - a dictionary of supported output formats
  fps - a list of supported fingerprint types
"""

import os
import sys
import tempfile

if sys.platform[:3] == "cli":
    _indigonet = os.environ["INDIGONET"]
    import clr
    clr.AddReference('System.Windows.Forms')
    clr.AddReference('System.Drawing')
    clr.AddReferenceToFileAndPath(_indigonet + "\\indigo-dotnet.dll")
    clr.AddReferenceToFileAndPath(_indigonet + "\\indigo-inchi-dotnet.dll")
    clr.AddReferenceToFileAndPath(_indigonet + "\\indigo-renderer-dotnet.dll")
    from System.Windows.Forms import (
        Application, DockStyle, Form, PictureBox, PictureBoxSizeMode
        )
    from System.Drawing import Image, Size
elif sys.platform[:4] == "java":
    import java, javax

if sys.platform[:3] == "cli" or sys.platform[:4] == "java":
    from com.ggasoftware.indigo import Indigo, IndigoException, IndigoRenderer, IndigoInchi
else:
    from indigo import Indigo, IndigoException
    from indigo_renderer import IndigoRenderer
    from indigo_inchi import IndigoInchi

indigo = Indigo()
indigoInchi = IndigoInchi(indigo)

# PIL and Tkinter
try:
    import Tkinter as tk
    import Image as PIL
    import ImageTk as PILtk
except:
    PILtk = None

fps = ["sim", "sub", "sub-res", "sub-tau", "full"]
"""A list of supported fingerprint types"""

_formats = {'smi': "SMILES", 'can': "Canonical SMILES", "rdf": "MDL RDF file",
            'mol': "MDL MOL file", 'sdf': "MDL SDF file",
            'cml': "Chemical Markup Language",
            'inchi': "InChI", 'inchikey': "InChIKey"}
informats = dict([(_x, _formats[_x]) for _x in ['mol', 'sdf', 'rdf', 'smi',
                                                'cml', 'inchi']])
"""A dictionary of supported input formats"""
outformats = dict([(_x, _formats[_x]) for _x in ['mol', 'sdf', 'smi', 'can',
                                                 'cml', 'inchi', 'inchikey']])
"""A dictionary of supported output formats"""

def readfile(format, filename):
    """Iterate over the molecules in a file.

    Required parameters:
       format - see the informats variable for a list of available
                input formats
       filename

    You can access the first molecule in a file using the next() method
    of the iterator:
        mol = readfile("smi", "myfile.smi").next()

    You can make a list of the molecules in a file using:
        mols = list(readfile("smi", "myfile.smi"))

    You can iterate over the molecules in a file as shown in the
    following code snippet:
    >>> atomtotal = 0
    >>> for mol in readfile("sdf", "head.sdf"):
    ...     atomtotal += len(mol.atoms)
    ...
    >>> print atomtotal
    43
    """
    if not os.path.isfile(filename):
        raise IOError, "No such file: '%s'" % filename
    format = format.lower()
    # Eagerly evaluate the supplier functions in order to report
    # errors in the format and errors in opening the file.
    # Then switch to an iterator...
    if format=="sdf":
        iterator = indigo.iterateSDFile(filename)
        def sdf_reader():
            for mol in iterator:
                yield Molecule(mol)
        return sdf_reader()
    elif format=="rdf":
        iterator = indigo.iterateRDFile(filename)
        def rdf_reader():
            for mol in iterator:
                yield Molecule(mol)
        return rdf_reader()
    elif format=="mol":
        def mol_reader():
            yield Molecule(indigo.loadMoleculeFromFile(filename))
        return mol_reader()
    elif format=="smi":
        iterator = iterateSmilesFile(filename)
        def smi_reader():
            for mol in iterator:
                yield Molecule(mol)
        return smi_reader()
    elif format=="cml":
        iterator = iterateCMLFile(filename)
        def cml_reader():
            for mol in iterator:
                yield Molecule(mol)
        return cml_reader()

    else:
        raise ValueError, "%s is not a recognised Indigo format" % format

def readstring(format, string):
    """Read in a molecule from a string.

    Required parameters:
       format - see the informats variable for a list of available
                input formats
       string

    Example:
    >>> input = "C1=CC=CS1"
    >>> mymol = readstring("smi", input)
    >>> len(mymol.atoms)
    5
    """
    format = format.lower()
    if format not in informats:
        raise ValueError,"%s is not a recognised Indigo format" % format

    module = indigo if format != "inchi" else indigoInchi
    try:
        mol = module.loadMolecule(string)
    except IndigoException:
        raise IOError, "Failed to convert '%s' to format '%s'" % (
            string, format)

    return Molecule(mol)


class Outputfile(object):
    """Represent a file to which *output* is to be sent.

    Required parameters:
       format - see the outformats variable for a list of available
                output formats
       filename

    Optional parameters:
       overwite -- if the output file already exists, should it
                   be overwritten? (default is False)

    Methods:
       write(molecule)
       close()
    """
    def __init__(self, format, filename, overwrite=False):
        self.format = format
        self.filename = filename
        if not overwrite and os.path.isfile(self.filename):
            raise IOError, "%s already exists. Use 'overwrite=True' to overwrite it." % self.filename
        if self.format in ["sdf", "cml", "rdf", "smi"]:
            self._writer = indigo.writeFile(self.filename)
        else:
            raise ValueError,"%s is not supported for multimolecule output" % format
        self.total = 0 # The total number of molecules written to the file

        if self.format == "cml":
            self._writer.cmlHeader()
        elif self.format == "rdf":
            self._writer.rdfHeader()

    def write(self, molecule):
        """Write a molecule to the output file.

        Required parameters:
           molecule
        """
        if not self.filename:
            raise IOError, "Outputfile instance is closed."

        if self.format == "sdf":
            self._writer.sdfAppend(molecule.Mol)
        elif self.format == "rdf":
            self._writer.rdfAppend(molecule.Mol)
        elif self.format == "cml":
            self._writer.cmlAppend(molecule.Mol)
        elif self.format == "smi":
            self._writer.smilesAppend(molecule.Mol)
        self.total += 1

    def close(self):
        """Close the Outputfile to further writing."""
        if self.format == "cml":
            self._writer.cmlFooter()
        self._writer.close()
        self.filename = None
        del self._writer

class Molecule(object):
    """Represent an Indigo Molecule.

    Required parameter:
       Mol -- an Indigo Mol or any type of cinfony Molecule

    Attributes:
       atoms, data, molwt, title

    Methods:
       addh(), calcfp(), draw(), localopt(), removeh(),
       write()

    The underlying Indigo Molecule can be accessed using the attribute:
       Mol
    """
    _cinfony = True

    def __init__(self, Mol):
        if hasattr(Mol, "_cinfony"):
            a, b = Mol._exchange
            if a == 0:
                molecule = readstring("smi", b)
            else:
                molecule = readstring("mol", b)
            Mol = molecule.Mol

        self.Mol = Mol

    @property
    def atoms(self): return [Atom(atom) for atom in self.Mol.iterateAtoms()]
    @property
    def data(self): return MoleculeData(self.Mol)
    @property
    def formula(self): return self.Mol.grossFormula()
    @property
    def molwt(self): return self.Mol.molecularWeight()
    def _gettitle(self):
        return self.Mol.name()
    def _settitle(self, val): self.Mol.setName(val)
    title = property(_gettitle, _settitle)
    @property
    def _exchange(self):
        if not self.Mol.hasZCoord():
            return (0, self.write("can"))
        else: # If 3D
            return (1, self.write("mol"))

    def addh(self):
        """Add hydrogens."""
        self.Mol.unfoldHydrogens()

    def removeh(self):
        """Remove hydrogens."""
        self.Mol.foldHydrogens()

    def write(self, format="smi", filename=None, overwrite=False):
        """Write the molecule to a file or return a string.

        Optional parameters:
           format -- see the informats variable for a list of available
                     output formats (default is "smi")
           filename -- default is None
           overwite -- if the output file already exists, should it
                       be overwritten? (default is False)

        If a filename is specified, the result is written to a file.
        Otherwise, a string is returned containing the result.

        To write multiple molecules to the same file you should use
        the Outputfile class.
        """
        format = format.lower()
        if filename:
            if not overwrite and os.path.isfile(filename):
                raise IOError, "%s already exists. Use 'overwrite=True' to overwrite it." % filename
        if format=="smi":
            result = self.Mol.smiles()
        elif format=="can":
            result = self.Mol.canonicalSmiles()
        elif format=="mol":
            result = self.Mol.molfile()
        elif format=="inchi":
            result = indigoInchi.getInchi(self.Mol)
        elif format=="inchikey":
            result = indigoInchi.getInchiKey(self.write("inchi"))
        elif format=="cml":
            result = self.Mol.cml()
        elif format=="sdf":
            # No sdf method so use a writeBuffer() as described by Dmitry
            buf = indigo.writeBuffer()
            buf.sdfAppend(self.Mol)
            result = buf.toString()
        else:
            raise ValueError,"%s is not a recognised Indigo format" % format
        if filename:
            output = open(filename, "w")
            output.write(result)
            output.close()
        else:
            return result

    def __iter__(self):
        """Iterate over the Atoms of the Molecule.

        This allows constructions such as the following:
           for atom in mymol:
               print atom
        """
        return iter(self.atoms)

    def __str__(self):
        return self.write()

##    def calcdesc(self, descnames=[]):
##        """Calculate descriptor values.
##
##        Optional parameter:
##           descnames -- a list of names of descriptors
##
##        If descnames is not specified, all available descriptors are
##        calculated. See the descs variable for a list of available
##        descriptors.
##        """
##        if not descnames:
##            descnames = descs
##        ans = {}
##        for descname in descnames:
##            try:
##                desc = descDict[descname]
##            except KeyError:
##                raise ValueError, "%s is not a recognised RDKit descriptor type" % descname
##            ans[descname] = desc(self.Mol)
##        return ans

    def calcfp(self, fptype="sim"):
        """Calculate a molecular fingerprint.

        Optional parameters:
           fptype -- the fingerprint type (default is "sim"). See the
                     fps variable for a list of of available fingerprint
                     types.
        """
        fptype = fptype.lower()
        if fptype in ["sim", "sub", "sub-res", "sub-tau", "full"]:
            fp = Fingerprint(self.Mol.fingerprint(fptype))
        else:
            raise ValueError, "%s is not a recognised Indigo Fingerprint type" % fptype
        return fp

    def draw(self, show=True, filename=None, update=False, usecoords=False):
        """Create a 2D depiction of the molecule.

        Optional parameters:
          show -- display on screen (default is True)
          filename -- write to file (default is None)
          update -- update the coordinates of the atoms to those
                    determined by the structure diagram generator
                    (default is False)
          usecoords -- don't calculate 2D coordinates, just use
                       the current coordinates (default is False)

        Tkinter and Python Imaging Library are required for image display.
        """
        if update:
            mol = self.Mol
        else:
            mol = self.Mol.clone()
        if not usecoords:
            mol.layout()
        if show or filename:
            renderer = IndigoRenderer(indigo)
            indigo.setOption("render-output-format", "png")
            indigo.setOption("render-margins", 10, 10)
            indigo.setOption("render-coloring", "True")
            indigo.setOption("render-image-size", 300, 300)
            indigo.setOption("render-background-color", "1.0, 1.0, 1.0")
            if self.title:
                indigo.setOption("render-comment", self.title)
            if filename:
                filedes = None
            else:
                filedes, filename = tempfile.mkstemp()

            renderer.renderToFile(mol, filename)

            if show:
                if sys.platform[:4] == "java":
                    image = javax.imageio.ImageIO.read(java.io.File(filename))
                    frame = javax.swing.JFrame(visible=1)
                    frame.getContentPane().add(javax.swing.JLabel(javax.swing.ImageIcon(image)))
                    frame.setSize(300,300)
                    frame.setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE)
                    frame.show()

                elif sys.platform[:3] == "cli":
                    if filedes:
                        errormessage = ("It is only possible to show the molecule if you "
                                        "provide a filename. The reason for this is that I kept "
                                        "having problems when using temporary files.")
                        raise RuntimeError(errormessage)
                    form = Form()
                    form.ClientSize = Size(300, 300)
                    form.Text = self.title
                    image = Image.FromFile(filename)
                    box = PictureBox()
                    box.SizeMode = PictureBoxSizeMode.StretchImage
                    box.Image = image
                    box.Dock = DockStyle.Fill
                    form.Controls.Add(box)
                    form.Show()
                    Application.Run(form)

                else:
                    if not PILtk:
                        errormessage = ("Tkinter or Python Imaging "
                                        "Library not found, but is required for image "
                                        "display. See installation instructions for "
                                        "more information.")
                        raise ImportError, errormessage

                    root = tk.Tk()
                    root.title((hasattr(self, "title") and self.title)
                               or self.__str__().rstrip())
                    frame = tk.Frame(root, colormap="new", visual='truecolor').pack()
                    image = PIL.open(filename)
                    imagedata = PILtk.PhotoImage(image)
                    label = tk.Label(frame, image=imagedata).pack()
                    quitbutton = tk.Button(root, text="Close", command=root.destroy).pack(fill=tk.X)
                    root.mainloop()


            if filedes:
                os.close(filedes)
                os.remove(filename)

class Atom(object):
    """Represent an Indigo Atom.

    Required parameters:
       Atom -- an Indigo Atom

    Attributes:
        atomicnum, coords, formalcharge

    The original Indigo Atom can be accessed using the attribute:
       Atom
    """

    def __init__(self, Atom):
        self.Atom = Atom
    @property
    def atomicnum(self): return self.Atom.atomicNumber()
    @property
    def coords(self):
        return tuple(self.Atom.xyz())
    @property
    def formalcharge(self): return self.Atom.charge()

    def __str__(self):
        if hasattr(self, "coords"):
            return "Atom: %d (%.2f %.2f %.2f)" % (self.atomicnum, self.coords[0],
                                                    self.coords[1], self.coords[2])
        else:
            return "Atom: %d (no coords)" % (self.atomicnum)

class Smarts(object):
    """A Smarts Pattern Matcher

    Required parameters:
       smartspattern

    Methods:
       findall(molecule)

    Example:
    >>> mol = readstring("smi","CCN(CC)CC") # triethylamine
    >>> smarts = Smarts("[#6][#6]") # Matches an ethyl group
    >>> print smarts.findall(mol)
    [(0, 1), (3, 4), (5, 6)]

    The numbers returned are the indices (starting from 0) of the atoms
    that match the SMARTS pattern. In this case, there are three matches
    for each of the three ethyl groups in the molecule.
    """
    def __init__(self,smartspattern):
        """Initialise with a SMARTS pattern."""
        try:
            self.smarts = indigo.loadSmarts(smartspattern)
        except IndigoException:
            raise IOError, "Invalid SMARTS pattern."

    def findall(self,molecule):
        """Find all matches of the SMARTS pattern to a particular molecule.

        Required parameters:
           molecule
        """
        matcher = indigo.substructureMatcher(molecule.Mol)
        matches = list(matcher.iterateMatches(self.smarts))
        ans = []
        for match in matches:
            a = []
            for queryatom in self.smarts.iterateAtoms():
                a.append(match.mapAtom(queryatom).index())
            ans.append(tuple(a))
        return ans

class MoleculeData(object):
    """Store molecule data in a dictionary-type object

    Required parameters:
      Mol -- an Indigo Mol

    Methods and accessor methods are like those of a dictionary except
    that the data is retrieved on-the-fly from the underlying Mol.

    Example:
    >>> mol = readfile("sdf", 'head.sdf').next()
    >>> data = mol.data
    >>> print data
    {'Comment': 'CORINA 2.61 0041  25.10.2001', 'NSC': '1'}
    >>> print len(data), data.keys(), data.has_key("NSC")
    2 ['Comment', 'NSC'] True
    >>> print data['Comment']
    CORINA 2.61 0041  25.10.2001
    >>> data['Comment'] = 'This is a new comment'
    >>> for k,v in data.iteritems():
    ...    print k, "-->", v
    Comment --> This is a new comment
    NSC --> 1
    >>> del data['NSC']
    >>> print len(data), data.keys(), data.has_key("NSC")
    1 ['Comment'] False
    """
    def __init__(self, Mol):
        self._mol = Mol
    def _testforkey(self, key):
        if not self._mol.hasProperty(key):
            raise KeyError, "'%s'" % key
    def keys(self):
        return [prop.name() for prop in self._mol.iterateProperties()]
    def values(self):
        return [prop.rawData() for prop in self._mol.iterateProperties()]
    def items(self):
        return [(prop.name(), prop.rawData())
                for prop in self._mol.iterateProperties()]
    def __iter__(self):
        return iter(self.keys())
    def iteritems(self):
        return iter(self.items())
    def __len__(self):
        return len(self.keys())
    def __contains__(self, key):
        return self._mol.hasProperty(key)
    def __delitem__(self, key):
        self._testforkey(key)
        self._mol.removeProperty(key)
    def clear(self):
        for key in self:
            del self[key]
    def has_key(self, key):
        return key in self
    def update(self, dictionary):
        for k, v in dictionary.iteritems():
            self[k] = v
    def __getitem__(self, key):
        self._testforkey(key)
        return self._mol.getProperty(key)
    def __setitem__(self, key, value):
        self._mol.setProperty(key, str(value))
    def __repr__(self):
        return dict(self.iteritems()).__repr__()

class Fingerprint(object):
    """A Molecular Fingerprint.

    Required parameters:
       fingerprint -- a vector calculated by one of the fingerprint methods

    Attributes:
       fp -- the underlying fingerprint object
       bits -- a list of bits set in the Fingerprint

    Methods:
       The "|" operator can be used to calculate the Tanimoto coeff. For example,
       given two Fingerprints 'a', and 'b', the Tanimoto coefficient is given by:
          tanimoto = a | b
    """
    def __init__(self, fingerprint):
        self.fp = fingerprint
    def __or__(self, other):
        return indigo.similarity(self.fp, other.fp, "tanimoto")
    def _buffer_to_int(self):
        stringrep = self.fp.toString()
        return [int(stringrep[i:i+1]) for i in range(0, len(stringrep), 1)]
    @property
    def bits(self):
        return _findbits(self._buffer_to_int(), 8)
    def __str__(self):
        return str(self._buffer_to_int())

def _toint(string):
    """
    Some bits sometimes are a character. I haven't found what do they mean,
    but they break cinfony fingerprints unless taken care of. This functions is just for that.
    """
    if string.isdigit():
        return int(string)
    else:
        return 0

def _findbits(fp, bitsperint):
    """Find which bits are set in a list/vector.

    This function is used by the Fingerprint class.

    >>> _findbits([13, 71], 8)
    [1, 3, 4, 9, 10, 11, 15]
    """
    ans = []
    start = 1
    for x in fp:
        i = start
        while x > 0:
            if x % 2:
                ans.append(i)
            x >>= 1
            i += 1
        start += bitsperint
    return ans


def _compressbits(bitvector, wordsize=32):
    """Compress binary vector into vector of long ints.

    This function is used by the Fingerprint class.

    >>> _compressbits([0, 1, 0, 0, 0, 1], 2)
    [2, 0, 2]
    """
    ans = []
    for start in range(0, len(bitvector), wordsize):
        compressed = 0
        for i in range(wordsize):
            if i + start < len(bitvector) and bitvector[i + start]:
                compressed += 2**i
        ans.append(compressed)

    return ans

if __name__=="__main__": #pragma: no cover
    import doctest
    doctest.testmod()