Skip to content

PSMILES

psmiles.psmiles.PolymerSmiles

Source code in psmiles/psmiles.py
 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
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
class PolymerSmiles:
    def __init__(self, psmiles: str, deactivate_warnings: bool = False):
        r"""Returns a PolymerSmiles object of the psmiles strings

        Note:
            PSMILES strings have two \* or [\*] that indicate the polymer repeat unit.

        Examples:
            ``` py
            >>> from psmiles import PolymerSmiles as PS
            >>> ps = PS("C(c1ccccc1)(C[*])[*]")
            >>> ps.canonicalize
            [*]CC([*])c1ccccc1
            >>> ps.randomize
            c1ccccc1C(C[*])[*]
            >>> ps.randomize.canonicalize
            [*]CC([*])c1ccccc1
            ```

        Args:
            psmiles (str): PSMILES string, e.g., [\*]CC[\*]
            deactivate_warnings (bool, optional): Deactivate warnings.
                Defaults to False.
        """

        self.psmiles = psmiles
        self.ladder = False

        # convert * to [*]
        stars_no_bracket = re.findall(r"(?<!\[)\*(?!\])", self.psmiles)
        if len(stars_no_bracket) == 2:
            self.psmiles = self.psmiles.replace("*", "[*]")

        # linear homopolymer
        ct_stars = self.psmiles.count("[*]")

        # ladder polymers
        ladder_et = self.psmiles.count("[e]") + self.psmiles.count("[t]")
        ladder_dg = self.psmiles.count("[d]") + self.psmiles.count("[g]")

        if not deactivate_warnings:
            assert ct_stars == 2 or ladder_dg == 2 or ladder_et == 2, (
                f"PSMILES strings must have two [*], two *, "
                f"[e] and [t], or [d] and [g] : {self.psmiles}"
            )

        # Check if ladder PSMILES string
        if ladder_et == 2 or ladder_dg == 2:
            self.ladder = True

        # Check
        if not self.ladder:
            m = Chem.MolFromSmiles(self.psmiles, sanitize=False)
            if m is None:
                raise UserWarning(f"Invalid SMILES string: {self.psmiles}")
            else:
                error = Chem.SanitizeMol(m, catchErrors=True)
                if error:
                    raise UserWarning(
                        f"Invalid chemistry of {self.psmiles}. Issue with {error}"
                    )
        if not self.ladder and not deactivate_warnings:
            # Check double bonds
            self.check_double_bonds_at_connection()

        if self.ladder:
            logging.warning(
                "Ladder polymer detected. Only PG fingerprints are "
                "tested for ladder polymers."
            )

    def __str__(self) -> str:
        return self.psmiles

    def _repr_png_(self):
        if not self.ladder and hasattr(self.mol, "_repr_png_"):
            print(self.psmiles)

            # Highlight stars
            mol = self.mol
            setattr(mol, "__sssAtoms", self.get_connection_info()["star"]["index"])
            return mol._repr_png_()

    def check_double_bonds_at_connection(self):
        """Check if bonds types (single, double) are the same at the stars."""

        # get connection info
        info = self.get_connection_info()

        if info["neighbor"]["bond_type"][0] != info["neighbor"]["bond_type"][1]:
            raise UserWarning(
                f"The bond types of the SMILES string {self.psmiles} "
                f"at the connection points (*) is not the same."
                f"Bond types: {info['neighbor']['bond_type'][0]} "
                f"- {info['neighbor']['bond_type'][1]}"
            )

    def get_connection_info(self, mol: Chem.RWMol = None, symbol: str = "*") -> Dict:
        """Get connection information of stars and neighbors.

        If mol not specified, use self.mol.

        Args:
            mol (Chem.RWMol, optional): RDKit mol object. Defaults to None.
            symbol (str, optional): Indicate the polymer repeat unit. Defaults to "*".

        Returns:
            Dict: Dictionary with information on stars and neighbors.
        """

        ret_dict = {}
        if mol is None:
            mol = self.mol

        stars_indices, stars_type, all_symbols, all_index = [], [], [], []
        for star_idx, atom in enumerate(mol.GetAtoms()):
            all_symbols.append(atom.GetSymbol())
            all_index.append(atom.GetIdx())
            if symbol in atom.GetSymbol():
                stars_indices.append(star_idx)
                stars_type.append(atom.GetSmarts())

        stars_bond = mol.GetBondBetweenAtoms(stars_indices[0], stars_indices[1])
        if stars_bond:
            stars_bond = stars_bond.GetBondType()

        ret_dict["star"] = {
            "index": stars_indices,
            "atom_type": stars_type,
            "bond_type": stars_bond,
        }

        ret_dict["symbols"] = all_symbols  # type: ignore
        ret_dict["index"] = all_index  # type: ignore

        # multiple neighbors are possible
        neighbor_indices = [
            [x.GetIdx() for x in mol.GetAtomWithIdx(stars_indices[0]).GetNeighbors()],
            [x.GetIdx() for x in mol.GetAtomWithIdx(stars_indices[1]).GetNeighbors()],
        ]

        neighbors_type = [
            [mol.GetAtomWithIdx(x).GetSmarts() for x in neighbor_indices[0]],
            [mol.GetAtomWithIdx(x).GetSmarts() for x in neighbor_indices[1]],
        ]

        # Bonds between stars and neighbors
        neighbor_bonds = [
            [
                mol.GetBondBetweenAtoms(stars_indices[0], x).GetBondType()
                for x in neighbor_indices[0]
            ],
            [
                mol.GetBondBetweenAtoms(stars_indices[1], x).GetBondType()
                for x in neighbor_indices[1]
            ],
        ]
        s_path = None
        if neighbor_indices[0][0] != neighbor_indices[1][0]:
            s_path = Chem.GetShortestPath(
                mol, neighbor_indices[0][0], neighbor_indices[1][0]
            )

        ret_dict["neighbor"] = {
            "index": neighbor_indices,
            "atom_type": neighbors_type,
            "bond_type": neighbor_bonds,
            "path": s_path,
        }

        # Stereo info
        stereo_info = []
        for b in mol.GetBonds():
            bond_type = b.GetStereo()
            if bond_type != Chem.rdchem.BondStereo.STEREONONE:
                idx = [b.GetBeginAtomIdx(), b.GetEndAtomIdx()]
                neigh_idx = b.GetStereoAtoms()
                stereo_info.append(
                    {
                        "bond_type": bond_type,
                        "atom_idx": idx,
                        "bond_idx": b.GetIdx(),
                        "neighbor_idx": list(neigh_idx),
                    }
                )

        ret_dict["stereo"] = stereo_info  # type: ignore

        # Ring info
        ring_info = mol.GetRingInfo()
        ret_dict["atom_rings"] = ring_info.AtomRings()
        ret_dict["bond_rings"] = ring_info.BondRings()

        return ret_dict

    def replace_stars(self, _with: str) -> PolymerSmiles:
        """Replace stars with other characters.

        Args:
            _with (str): Replacement characters

        Returns:
            PolymerSmiles: PSMILES string with new symbols for repeat unit endpoints
        """
        return PolymerSmiles(
            self.psmiles.replace("[*]", _with), deactivate_warnings=True
        )

    @property
    def randomize(self) -> PolymerSmiles:
        """Randomized the PSMILES string

        Returns:
            PolymerSmiles: randomized PSMILES string
        """
        sm = Chem.MolToSmiles(
            Chem.MolFromSmiles(self.psmiles), doRandom=True, canonical=False
        )
        sm = sm.replace("*", "[*]")
        return PolymerSmiles(sm)

    def nb_display(self, mol):
        print(f"SMILES: {Chem.MolToCXSmiles(mol)}")
        if in_ipynb():
            from IPython.display import display

            display(mol)

    @property
    def periodic(self) -> PolymerSmiles:
        """Creates a periodic PSMILES string by connecting the stars.

        Returns:
            PolymerSmiles: periodic PSMILES string
        """
        logging.warning("Function is experimental. Please check results carefully.")

        mol = Chem.RWMol(Chem.MolFromSmiles(self.psmiles))

        symbols = [a.GetSymbol() for a in mol.GetAtoms()]
        atom_idx_star = [n for n, sym in enumerate(symbols) if sym == "*"]

        # Chose bond typ ~
        bond_type = Chem.rdchem.BondType.UNSPECIFIED

        mol.AddBond(atom_idx_star[0], atom_idx_star[1], bond_type)
        sm = Chem.MolToSmiles(mol)
        sm = sm.replace("*", "[*]")

        return PolymerSmiles(sm, deactivate_warnings=True)

    @property
    def canonicalize(self) -> PolymerSmiles:
        """Canonicalize the PSMILES string

        Returns:
            PolymerSmiles: canonicalized PSMILES string
        """
        return PolymerSmiles(ext_canonicalize(self.psmiles))

    @property
    def inchi(self) -> str:
        r"""Compute the InChI string of the PSMILES.

        Note:
            [\*] is replaced with [At] to use RDKit's MolToInchi method
            PSMILES string is canonicalized

        Returns:
            str: InChI string
        """
        return MolToInchi(
            Chem.MolFromSmiles(self.canonicalize.psmiles.replace("[*]", "[At]"))
        )

    @property
    def inchi_key(self) -> str:
        r"""Compute the InChI key of the SMILES.

        Note:
            [\*] is replaced with [At] to use RDKit's MolToInchiKey method
            PSMILES string is canonicalized

        Returns:
            str: InChI key
        """
        return MolToInchiKey(
            Chem.MolFromSmiles(self.canonicalize.psmiles.replace("[*]", "[At]"))
        )

    def dimer(self, how: int = 1) -> PolymerSmiles:
        """Dimerize the PSMILES string

        Args:
            how (int): 0 to connect to the first star. 1 to connect to the second star.
                Default to 1.

        Returns:
            PolymerSmiles: dimerized PSMILES string
        """
        # Make atom indices visable
        if logging.DEBUG >= logging.root.level:
            from rdkit.Chem.Draw import IPythonConsole

            IPythonConsole.drawOptions.addAtomIndices = True

        mol = self.mol
        info = self.get_connection_info(mol)
        logging.debug(f"(1) Get connection info \n {pprint.pformat(info)}")
        if logging.DEBUG >= logging.root.level:
            self.nb_display(mol)

        # combine two mols
        logging.debug("(2) Combine two mols")

        mol_combined = Chem.RWMol(Chem.CombineMols(mol, mol))
        if logging.DEBUG >= logging.root.level:
            self.nb_display(mol_combined)

        # Connect with single always
        bond_type = Chem.rdchem.BondType.SINGLE

        # Remove stars and add bonds between neighbors

        # Two connection possibilities, how can be 0 or 1
        connect = [
            info["star"]["index"][0],
            info["star"]["index"][how] + len(info["symbols"]),
        ]

        logging.debug(
            f"(3) Connect star atoms {connect[0]} and {connect[1]} with {bond_type = }"
        )

        mol_combined.AddBond(connect[0], connect[1], order=bond_type)
        if logging.DEBUG >= logging.root.level:
            self.nb_display(mol_combined)

        # Remove patterns
        sm = Chem.MolToSmiles(mol_combined)
        patterns = {
            "**": "",  # normal bond
            "//": "/",  # if * have stereochemistry
            "\\\\": "\\",  # if * have stereochemistry
            "==": "=",  # if * has double bonds
            "##": "#",  # if * has triple bonds
            r"\/": "\\",  # if \ or / at * (at the double bond)
        }
        logging.debug(f"(4) Remove {patterns} pattern {sm}")
        for p, r in patterns.items():
            sm = sm.replace(p, r)
            logging.debug(f"Replacing {p} with {r}: {sm}")

        if logging.DEBUG >= logging.root.level:
            mol = Chem.MolFromSmiles(Chem.MolToSmiles(Chem.MolFromSmiles(sm)))
            self.nb_display(mol)

        # Get dimer smiles
        # logging.debug(f"(5) Renumber atoms and get dimer smiles")
        # sm = Chem.MolToSmiles(mol_combined)

        return PolymerSmiles(sm)

    @property
    def mol(self) -> Chem.RWMol:
        """Returns a RDKit mol object.

        Note:
            In jupyter notebooks, this function draws the SMILES string

        Returns:
            Chem.MolFromSmiles: RDKit mol object
        """
        return Chem.RWMol(Chem.MolFromSmiles(self.psmiles))

    def fingerprint(self, fp="ci") -> Union[Dict[str, float], np.ndarray]:
        """Returns fingerprints of the PSMILES string.

        Note:
            PSMILES strings are canonicalized for the computation
            of the ci and RDKit fingerprints.

        Args:
            fp (str, optional): Choose fingerprint from 'ci',
                'rdkit' and 'polyBERT'. Defaults to 'ci'.

        Returns:
            Union[Dict[str, float], np.ndarray]: Fingerprint vector
        """
        fp = fp.lower()
        if fp == "ci":
            return self.fingerprint_circular
        elif fp == "rdkit":
            return self.fingerprint_rdkit
        elif fp == "polybert" or fp == "pb":
            return self.fingerprint_polyBERT
        else:
            raise UserWarning(f"Fingerprint {fp} unknown.")

    @property
    def fingerprint_polyBERT(self) -> np.ndarray:
        """Compute the polyBERT fingerprint

        Note:
            Calling this will pull polyBERT from the hugging face hub.

        Returns:
            np.ndarray: polyBERT fingerprints
        """
        assert util.find_spec("sentence_transformers"), (
            "PolyBERT fingerprints require the 'sentence-transformers' Python package."
            " Please install with "
            "`pip install 'psmiles[polyBERT]@git+https://github.com/"
            "kuennethgroup/psmiles.git'` "
            "Or "
            "`poetry add git+https://github.com/"
            "kuennethgroup/psmiles.git -E polyBERT` "
        )

        from sentence_transformers import SentenceTransformer

        polyBERT = SentenceTransformer("kuelumbus/polyBERT")

        return polyBERT.encode([self.canonicalize.psmiles], show_progress_bar=False)[0]

    @property
    def fingerprint_pg(self) -> Dict[str, float]:
        """Compute the PG fingerprint

        Returns:
            Dict[str, float]: PG fingerprints
        """
        assert util.find_spec("pgfingerprinting"), (
            "pgfingerprinting python package is not installed. "
            "Please install with pgfingerprinting package to use this function."
            "Package not available to the public."
        )

        from pgfingerprinting import fp as pgfp

        return pgfp.fingerprint_from_smiles(self.psmiles)

    @property
    def fingerprint_circular(self) -> np.ndarray:
        """Compute the circular (Morgen) count fingerprint

        Note:
            PSMILES string is canonicalized before the computation

        Returns:
            numpy.ndarray: circular fingerprint
        """
        fp_gen = rdFingerprintGenerator.GetMorganGenerator()
        return fp_gen.GetCountFingerprintAsNumPy(self.canonicalize.mol).astype(int)

    @property
    def fingerprint_rdkit(self) -> np.ndarray:
        """Compute the RDKit count fingerprint

        Note:
            PSMILES string is canonicalized before the computation

        Returns:
            numpy.ndarray: RDKit fingerprint
        """
        fp_gen = rdFingerprintGenerator.GetRDKitFPGenerator()
        return fp_gen.GetCountFingerprintAsNumPy(self.canonicalize.mol).astype(int)

    def is_similar(self, other: Union[PolymerSmiles, str], fp="ci") -> float:
        """Computes the cosine similarity of two PSMILES stings.

        Args:
            other (Union[PolymerSmiles, str]): other PSMILES string

        Returns:
            float: cosine similarity
        """
        if not isinstance(other, PolymerSmiles):
            other = PolymerSmiles(other)

        fp1 = self.fingerprint(fp)
        fp2 = other.fingerprint(fp)

        df = pd.DataFrame([fp1, fp2]).fillna(0)

        return round(cosine_similarity(df)[0, 1], 5)

    def alternating_copolymer(
        self, other: Union[PolymerSmiles, str], how: List[int] = [0, 1]
    ) -> PolymerSmiles:
        """Creates alternating copolymer from two PSMILES strings.

        Note:
            There are four possible ways of combining two PSMILES strings

        Args:
            other (Union[PolymerSmiles, str]): Second PSMILES string
            how (List[int]): 0 for first star; 1 for second star.
                             [0, 0], [0, 1], [1, 0], [1, 1]. Defaults to [0,1]

        Returns:
            PolymerSmiles: alternating copolymer PSMILES
        """

        if not isinstance(other, PolymerSmiles):
            other = PolymerSmiles(other)

        symbols1 = [a.GetSymbol() for a in self.mol.GetAtoms()]
        idx_star1 = [n for n, sym in enumerate(symbols1) if sym == "*"]

        symbols2 = [a.GetSymbol() for a in other.mol.GetAtoms()]
        idx_star2 = [n for n, sym in enumerate(symbols2) if sym == "*"]

        # combine two mols
        ed = Chem.RWMol(Chem.CombineMols(self.mol, other.mol))
        logging.debug("(1) Combine both PSMILES")
        if logging.DEBUG >= logging.root.level:
            self.nb_display(ed)

        # Chose bond typ ~
        bond_type = Chem.rdchem.BondType.UNSPECIFIED

        # Connect stars
        # Can be [0,0], [0,1], [1,0], [1,1]
        ed.AddBond(
            idx_star1[how[0]], idx_star2[how[1]] + len(symbols1), order=bond_type
        )
        logging.debug(f"(2) Add bond: {how}")
        if logging.DEBUG >= logging.root.level:
            self.nb_display(ed)

        # Get dimer smiles
        sm = Chem.MolToSmiles(ed, canonical=True)

        # Remove stars connection *~*, and cis and trans around *~*
        patterns = [r"\\*~*\\", "/*~*/", "/*~*\\", "\\*~*/", "*~*"]
        for pat in patterns:
            sm = sm.replace(pat, "")

        return PolymerSmiles(sm)

    def savefig(self, filename: str = None, crop=True):
        """Save the chemical drawing of the polymer

        Args:
            filename (str, optional): Filename to save the drawing.
                Defaults to PSMILES string.
            crop (bool, optional): If inkscape is available crop the figure.
                Defaults to True.
        """
        import shutil
        import subprocess
        import tempfile
        from pathlib import Path

        from rdkit.Chem.Draw import rdMolDraw2D

        if not filename:
            filename = f"{self.__str__()}.svg"

        def crop_svg(svg):
            # crop using inkscape
            with tempfile.NamedTemporaryFile(suffix=".svg") as fp:
                fn = Path(fp.name)
                fn.write_text(svg)
                subprocess.run(
                    f"inkscape --export-area-drawing --export-type=svg "
                    f"--export-overwrite {fn}".split(),
                    stderr=subprocess.DEVNULL,
                    stdout=subprocess.DEVNULL,
                )
                return fn.read_text()

        d2d = rdMolDraw2D.MolDraw2DSVG(300, 300)
        o = d2d.drawOptions()
        o.clearBackground = False

        d2d.DrawMolecule(
            self.mol, highlightAtoms=self.get_connection_info()["star"]["index"]
        )

        d2d.FinishDrawing()
        svg = d2d.GetDrawingText()

        # If inkscape is available use it to crop the figure
        if shutil.which("inkscape") and crop:
            svg = crop_svg(svg)

        # Write
        Path(filename).write_text(svg)

        logging.debug(f"Drawing saved to {filename}")

    def linear_copolymer(
        self,
        other: Union[PolymerSmiles, str],
        pattern: Union[str, List[int]] = [0, 0, 0, 1, 1, 1],
    ) -> PolymerSmiles:
        """Create a linear copolymer from two monomers.
        Useful to create gradient and block copolymers.

        Examples:
            ``` py
            >>> from psmiles import PolymerSmiles as PS
            >>> ps1 = PS("[*]CC[*]")
            >>> ps2 = PS("[*]C=C[*]")
            >>> ps1.linear_copolymer(ps2)
            [*]C=CC=CCCCCCCC=C[*]
            >>> # Block polymer with 5A and 5B
            >>> ps1.linear_copolymer(ps2, [0]*4 + [1]*4)
            [*]C=CC=CCCCCCCCCC=CC=C[*]
            >>> # Gradient polymer
            >>> gradient_pattern = 'AAAAAABAABBAABABBBAABBBBBB'
            >>> ps1.linear_copolymer(ps2, gradient_pattern)
            [*]C=CC=CC=CC=CC=CCCC=CC=CCCCCCCCCCCCCCCCCC=CCCCCC=CC=CCCCCC=CC=CC=C[*]
            ```

        Args:
            other (Union[PolymerSmiles, str]): Monomer B
            pattern (Union[str, List[int]], optional): Repetition pattern of
                monomer A and B. Can be a string of A and B or a list of 0 and 1.
                Defaults to [0,0,0,1,1,1].

        Returns:
            PolymerSmiles: Linear copolymer
        """
        logging.warning("Function is experimental. Please check results carefully.")

        if not isinstance(other, PolymerSmiles):
            other = PolymerSmiles(other)
        if isinstance(pattern, str):
            pattern = [0 if x == "A" else 1 for x in pattern]

        # Replace with self and other
        ps_pattern = [self if x == 0 else other for x in pattern]

        ps_linear = ps_pattern[0]
        for ps_add in ps_pattern[1:]:
            ps_linear = ps_linear.alternating_copolymer(ps_add, [1, 0])

        return ps_linear

    def random_copolymer(
        self,
        other: Union[PolymerSmiles, str],
        ratio: float = 0.5,
        units: int = 10,
    ) -> PolymerSmiles:
        """Create a random copolymer from two monomers.

        Examples:
            ``` py
            >>> from psmiles import PolymerSmiles as PS
            >>> ps1 = PS("[*]CC[*]")
            >>> ps2 = PS("[*]CC([*])c1ccccc1")
            >>> ps1.random_copolymer(ps2, ratio=0.5, units=6)
            [*]CCC(CCCCCCC(CC([*])c1ccccc1)c1ccccc1)c1ccccc1
            >>> # Set seed for reproducible copolymers
            >>> import random
            >>> random.seed(10)
            >>> ps1.random_copolymer(ps2, units=4)
            [*]CCCC(CC(CC[*])c1ccccc1)c1ccccc1
            >>> ps1.random_copolymer(ps2, units=4)
            [*]CCC(CCC(CC[*])c1ccccc1)c1ccccc1
            ```

        Args:
            other (Union[PolymerSmiles, str]): Monomer B
            ratio (float, optional): Ratio of monomer A and B.
                Must be between 0 and 1. Defaults to 0.5.
            units (int, optional): Total number of monomers. Defaults to 10.

        Returns:
            PolymerSmiles: Random copolymer
        """

        logging.warning("Function is experimental. Please check results carefully.")

        if not isinstance(other, PolymerSmiles):
            other = PolymerSmiles(other)

        # Compute number of monomers A and B
        monomer_a = round(units * ratio)
        monomer_b = units - monomer_a

        # Create initial pattern
        pattern = [0] * monomer_a + [1] * monomer_b

        # Shuffle list
        random.shuffle(pattern)

        return self.linear_copolymer(other, pattern)

canonicalize property

Canonicalize the PSMILES string

Returns:

Name Type Description
PolymerSmiles PolymerSmiles

canonicalized PSMILES string

fingerprint_circular property

Compute the circular (Morgen) count fingerprint

Note

PSMILES string is canonicalized before the computation

Returns:

Type Description
ndarray

numpy.ndarray: circular fingerprint

fingerprint_pg property

Compute the PG fingerprint

Returns:

Type Description
Dict[str, float]

Dict[str, float]: PG fingerprints

fingerprint_polyBERT property

Compute the polyBERT fingerprint

Note

Calling this will pull polyBERT from the hugging face hub.

Returns:

Type Description
ndarray

np.ndarray: polyBERT fingerprints

fingerprint_rdkit property

Compute the RDKit count fingerprint

Note

PSMILES string is canonicalized before the computation

Returns:

Type Description
ndarray

numpy.ndarray: RDKit fingerprint

inchi property

Compute the InChI string of the PSMILES.

Note

[*] is replaced with [At] to use RDKit's MolToInchi method PSMILES string is canonicalized

Returns:

Name Type Description
str str

InChI string

inchi_key property

Compute the InChI key of the SMILES.

Note

[*] is replaced with [At] to use RDKit's MolToInchiKey method PSMILES string is canonicalized

Returns:

Name Type Description
str str

InChI key

mol property

Returns a RDKit mol object.

Note

In jupyter notebooks, this function draws the SMILES string

Returns:

Type Description
RWMol

Chem.MolFromSmiles: RDKit mol object

periodic property

Creates a periodic PSMILES string by connecting the stars.

Returns:

Name Type Description
PolymerSmiles PolymerSmiles

periodic PSMILES string

randomize property

Randomized the PSMILES string

Returns:

Name Type Description
PolymerSmiles PolymerSmiles

randomized PSMILES string

__init__(psmiles, deactivate_warnings=False)

Returns a PolymerSmiles object of the psmiles strings

Note

PSMILES strings have two * or [*] that indicate the polymer repeat unit.

Examples:

>>> from psmiles import PolymerSmiles as PS
>>> ps = PS("C(c1ccccc1)(C[*])[*]")
>>> ps.canonicalize
[*]CC([*])c1ccccc1
>>> ps.randomize
c1ccccc1C(C[*])[*]
>>> ps.randomize.canonicalize
[*]CC([*])c1ccccc1

Parameters:

Name Type Description Default
psmiles str

PSMILES string, e.g., [*]CC[*]

required
deactivate_warnings bool

Deactivate warnings. Defaults to False.

False
Source code in psmiles/psmiles.py
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
def __init__(self, psmiles: str, deactivate_warnings: bool = False):
    r"""Returns a PolymerSmiles object of the psmiles strings

    Note:
        PSMILES strings have two \* or [\*] that indicate the polymer repeat unit.

    Examples:
        ``` py
        >>> from psmiles import PolymerSmiles as PS
        >>> ps = PS("C(c1ccccc1)(C[*])[*]")
        >>> ps.canonicalize
        [*]CC([*])c1ccccc1
        >>> ps.randomize
        c1ccccc1C(C[*])[*]
        >>> ps.randomize.canonicalize
        [*]CC([*])c1ccccc1
        ```

    Args:
        psmiles (str): PSMILES string, e.g., [\*]CC[\*]
        deactivate_warnings (bool, optional): Deactivate warnings.
            Defaults to False.
    """

    self.psmiles = psmiles
    self.ladder = False

    # convert * to [*]
    stars_no_bracket = re.findall(r"(?<!\[)\*(?!\])", self.psmiles)
    if len(stars_no_bracket) == 2:
        self.psmiles = self.psmiles.replace("*", "[*]")

    # linear homopolymer
    ct_stars = self.psmiles.count("[*]")

    # ladder polymers
    ladder_et = self.psmiles.count("[e]") + self.psmiles.count("[t]")
    ladder_dg = self.psmiles.count("[d]") + self.psmiles.count("[g]")

    if not deactivate_warnings:
        assert ct_stars == 2 or ladder_dg == 2 or ladder_et == 2, (
            f"PSMILES strings must have two [*], two *, "
            f"[e] and [t], or [d] and [g] : {self.psmiles}"
        )

    # Check if ladder PSMILES string
    if ladder_et == 2 or ladder_dg == 2:
        self.ladder = True

    # Check
    if not self.ladder:
        m = Chem.MolFromSmiles(self.psmiles, sanitize=False)
        if m is None:
            raise UserWarning(f"Invalid SMILES string: {self.psmiles}")
        else:
            error = Chem.SanitizeMol(m, catchErrors=True)
            if error:
                raise UserWarning(
                    f"Invalid chemistry of {self.psmiles}. Issue with {error}"
                )
    if not self.ladder and not deactivate_warnings:
        # Check double bonds
        self.check_double_bonds_at_connection()

    if self.ladder:
        logging.warning(
            "Ladder polymer detected. Only PG fingerprints are "
            "tested for ladder polymers."
        )

alternating_copolymer(other, how=[0, 1])

Creates alternating copolymer from two PSMILES strings.

Note

There are four possible ways of combining two PSMILES strings

Parameters:

Name Type Description Default
other Union[PolymerSmiles, str]

Second PSMILES string

required
how List[int]

0 for first star; 1 for second star. [0, 0], [0, 1], [1, 0], [1, 1]. Defaults to [0,1]

[0, 1]

Returns:

Name Type Description
PolymerSmiles PolymerSmiles

alternating copolymer PSMILES

Source code in psmiles/psmiles.py
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
def alternating_copolymer(
    self, other: Union[PolymerSmiles, str], how: List[int] = [0, 1]
) -> PolymerSmiles:
    """Creates alternating copolymer from two PSMILES strings.

    Note:
        There are four possible ways of combining two PSMILES strings

    Args:
        other (Union[PolymerSmiles, str]): Second PSMILES string
        how (List[int]): 0 for first star; 1 for second star.
                         [0, 0], [0, 1], [1, 0], [1, 1]. Defaults to [0,1]

    Returns:
        PolymerSmiles: alternating copolymer PSMILES
    """

    if not isinstance(other, PolymerSmiles):
        other = PolymerSmiles(other)

    symbols1 = [a.GetSymbol() for a in self.mol.GetAtoms()]
    idx_star1 = [n for n, sym in enumerate(symbols1) if sym == "*"]

    symbols2 = [a.GetSymbol() for a in other.mol.GetAtoms()]
    idx_star2 = [n for n, sym in enumerate(symbols2) if sym == "*"]

    # combine two mols
    ed = Chem.RWMol(Chem.CombineMols(self.mol, other.mol))
    logging.debug("(1) Combine both PSMILES")
    if logging.DEBUG >= logging.root.level:
        self.nb_display(ed)

    # Chose bond typ ~
    bond_type = Chem.rdchem.BondType.UNSPECIFIED

    # Connect stars
    # Can be [0,0], [0,1], [1,0], [1,1]
    ed.AddBond(
        idx_star1[how[0]], idx_star2[how[1]] + len(symbols1), order=bond_type
    )
    logging.debug(f"(2) Add bond: {how}")
    if logging.DEBUG >= logging.root.level:
        self.nb_display(ed)

    # Get dimer smiles
    sm = Chem.MolToSmiles(ed, canonical=True)

    # Remove stars connection *~*, and cis and trans around *~*
    patterns = [r"\\*~*\\", "/*~*/", "/*~*\\", "\\*~*/", "*~*"]
    for pat in patterns:
        sm = sm.replace(pat, "")

    return PolymerSmiles(sm)

check_double_bonds_at_connection()

Check if bonds types (single, double) are the same at the stars.

Source code in psmiles/psmiles.py
106
107
108
109
110
111
112
113
114
115
116
117
118
def check_double_bonds_at_connection(self):
    """Check if bonds types (single, double) are the same at the stars."""

    # get connection info
    info = self.get_connection_info()

    if info["neighbor"]["bond_type"][0] != info["neighbor"]["bond_type"][1]:
        raise UserWarning(
            f"The bond types of the SMILES string {self.psmiles} "
            f"at the connection points (*) is not the same."
            f"Bond types: {info['neighbor']['bond_type'][0]} "
            f"- {info['neighbor']['bond_type'][1]}"
        )

dimer(how=1)

Dimerize the PSMILES string

Parameters:

Name Type Description Default
how int

0 to connect to the first star. 1 to connect to the second star. Default to 1.

1

Returns:

Name Type Description
PolymerSmiles PolymerSmiles

dimerized PSMILES string

Source code in psmiles/psmiles.py
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
def dimer(self, how: int = 1) -> PolymerSmiles:
    """Dimerize the PSMILES string

    Args:
        how (int): 0 to connect to the first star. 1 to connect to the second star.
            Default to 1.

    Returns:
        PolymerSmiles: dimerized PSMILES string
    """
    # Make atom indices visable
    if logging.DEBUG >= logging.root.level:
        from rdkit.Chem.Draw import IPythonConsole

        IPythonConsole.drawOptions.addAtomIndices = True

    mol = self.mol
    info = self.get_connection_info(mol)
    logging.debug(f"(1) Get connection info \n {pprint.pformat(info)}")
    if logging.DEBUG >= logging.root.level:
        self.nb_display(mol)

    # combine two mols
    logging.debug("(2) Combine two mols")

    mol_combined = Chem.RWMol(Chem.CombineMols(mol, mol))
    if logging.DEBUG >= logging.root.level:
        self.nb_display(mol_combined)

    # Connect with single always
    bond_type = Chem.rdchem.BondType.SINGLE

    # Remove stars and add bonds between neighbors

    # Two connection possibilities, how can be 0 or 1
    connect = [
        info["star"]["index"][0],
        info["star"]["index"][how] + len(info["symbols"]),
    ]

    logging.debug(
        f"(3) Connect star atoms {connect[0]} and {connect[1]} with {bond_type = }"
    )

    mol_combined.AddBond(connect[0], connect[1], order=bond_type)
    if logging.DEBUG >= logging.root.level:
        self.nb_display(mol_combined)

    # Remove patterns
    sm = Chem.MolToSmiles(mol_combined)
    patterns = {
        "**": "",  # normal bond
        "//": "/",  # if * have stereochemistry
        "\\\\": "\\",  # if * have stereochemistry
        "==": "=",  # if * has double bonds
        "##": "#",  # if * has triple bonds
        r"\/": "\\",  # if \ or / at * (at the double bond)
    }
    logging.debug(f"(4) Remove {patterns} pattern {sm}")
    for p, r in patterns.items():
        sm = sm.replace(p, r)
        logging.debug(f"Replacing {p} with {r}: {sm}")

    if logging.DEBUG >= logging.root.level:
        mol = Chem.MolFromSmiles(Chem.MolToSmiles(Chem.MolFromSmiles(sm)))
        self.nb_display(mol)

    # Get dimer smiles
    # logging.debug(f"(5) Renumber atoms and get dimer smiles")
    # sm = Chem.MolToSmiles(mol_combined)

    return PolymerSmiles(sm)

fingerprint(fp='ci')

Returns fingerprints of the PSMILES string.

Note

PSMILES strings are canonicalized for the computation of the ci and RDKit fingerprints.

Parameters:

Name Type Description Default
fp str

Choose fingerprint from 'ci', 'rdkit' and 'polyBERT'. Defaults to 'ci'.

'ci'

Returns:

Type Description
Union[Dict[str, float], ndarray]

Union[Dict[str, float], np.ndarray]: Fingerprint vector

Source code in psmiles/psmiles.py
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
def fingerprint(self, fp="ci") -> Union[Dict[str, float], np.ndarray]:
    """Returns fingerprints of the PSMILES string.

    Note:
        PSMILES strings are canonicalized for the computation
        of the ci and RDKit fingerprints.

    Args:
        fp (str, optional): Choose fingerprint from 'ci',
            'rdkit' and 'polyBERT'. Defaults to 'ci'.

    Returns:
        Union[Dict[str, float], np.ndarray]: Fingerprint vector
    """
    fp = fp.lower()
    if fp == "ci":
        return self.fingerprint_circular
    elif fp == "rdkit":
        return self.fingerprint_rdkit
    elif fp == "polybert" or fp == "pb":
        return self.fingerprint_polyBERT
    else:
        raise UserWarning(f"Fingerprint {fp} unknown.")

get_connection_info(mol=None, symbol='*')

Get connection information of stars and neighbors.

If mol not specified, use self.mol.

Parameters:

Name Type Description Default
mol RWMol

RDKit mol object. Defaults to None.

None
symbol str

Indicate the polymer repeat unit. Defaults to "*".

'*'

Returns:

Name Type Description
Dict Dict

Dictionary with information on stars and neighbors.

Source code in psmiles/psmiles.py
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
def get_connection_info(self, mol: Chem.RWMol = None, symbol: str = "*") -> Dict:
    """Get connection information of stars and neighbors.

    If mol not specified, use self.mol.

    Args:
        mol (Chem.RWMol, optional): RDKit mol object. Defaults to None.
        symbol (str, optional): Indicate the polymer repeat unit. Defaults to "*".

    Returns:
        Dict: Dictionary with information on stars and neighbors.
    """

    ret_dict = {}
    if mol is None:
        mol = self.mol

    stars_indices, stars_type, all_symbols, all_index = [], [], [], []
    for star_idx, atom in enumerate(mol.GetAtoms()):
        all_symbols.append(atom.GetSymbol())
        all_index.append(atom.GetIdx())
        if symbol in atom.GetSymbol():
            stars_indices.append(star_idx)
            stars_type.append(atom.GetSmarts())

    stars_bond = mol.GetBondBetweenAtoms(stars_indices[0], stars_indices[1])
    if stars_bond:
        stars_bond = stars_bond.GetBondType()

    ret_dict["star"] = {
        "index": stars_indices,
        "atom_type": stars_type,
        "bond_type": stars_bond,
    }

    ret_dict["symbols"] = all_symbols  # type: ignore
    ret_dict["index"] = all_index  # type: ignore

    # multiple neighbors are possible
    neighbor_indices = [
        [x.GetIdx() for x in mol.GetAtomWithIdx(stars_indices[0]).GetNeighbors()],
        [x.GetIdx() for x in mol.GetAtomWithIdx(stars_indices[1]).GetNeighbors()],
    ]

    neighbors_type = [
        [mol.GetAtomWithIdx(x).GetSmarts() for x in neighbor_indices[0]],
        [mol.GetAtomWithIdx(x).GetSmarts() for x in neighbor_indices[1]],
    ]

    # Bonds between stars and neighbors
    neighbor_bonds = [
        [
            mol.GetBondBetweenAtoms(stars_indices[0], x).GetBondType()
            for x in neighbor_indices[0]
        ],
        [
            mol.GetBondBetweenAtoms(stars_indices[1], x).GetBondType()
            for x in neighbor_indices[1]
        ],
    ]
    s_path = None
    if neighbor_indices[0][0] != neighbor_indices[1][0]:
        s_path = Chem.GetShortestPath(
            mol, neighbor_indices[0][0], neighbor_indices[1][0]
        )

    ret_dict["neighbor"] = {
        "index": neighbor_indices,
        "atom_type": neighbors_type,
        "bond_type": neighbor_bonds,
        "path": s_path,
    }

    # Stereo info
    stereo_info = []
    for b in mol.GetBonds():
        bond_type = b.GetStereo()
        if bond_type != Chem.rdchem.BondStereo.STEREONONE:
            idx = [b.GetBeginAtomIdx(), b.GetEndAtomIdx()]
            neigh_idx = b.GetStereoAtoms()
            stereo_info.append(
                {
                    "bond_type": bond_type,
                    "atom_idx": idx,
                    "bond_idx": b.GetIdx(),
                    "neighbor_idx": list(neigh_idx),
                }
            )

    ret_dict["stereo"] = stereo_info  # type: ignore

    # Ring info
    ring_info = mol.GetRingInfo()
    ret_dict["atom_rings"] = ring_info.AtomRings()
    ret_dict["bond_rings"] = ring_info.BondRings()

    return ret_dict

is_similar(other, fp='ci')

Computes the cosine similarity of two PSMILES stings.

Parameters:

Name Type Description Default
other Union[PolymerSmiles, str]

other PSMILES string

required

Returns:

Name Type Description
float float

cosine similarity

Source code in psmiles/psmiles.py
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
def is_similar(self, other: Union[PolymerSmiles, str], fp="ci") -> float:
    """Computes the cosine similarity of two PSMILES stings.

    Args:
        other (Union[PolymerSmiles, str]): other PSMILES string

    Returns:
        float: cosine similarity
    """
    if not isinstance(other, PolymerSmiles):
        other = PolymerSmiles(other)

    fp1 = self.fingerprint(fp)
    fp2 = other.fingerprint(fp)

    df = pd.DataFrame([fp1, fp2]).fillna(0)

    return round(cosine_similarity(df)[0, 1], 5)

linear_copolymer(other, pattern=[0, 0, 0, 1, 1, 1])

Create a linear copolymer from two monomers. Useful to create gradient and block copolymers.

Examples:

>>> from psmiles import PolymerSmiles as PS
>>> ps1 = PS("[*]CC[*]")
>>> ps2 = PS("[*]C=C[*]")
>>> ps1.linear_copolymer(ps2)
[*]C=CC=CCCCCCCC=C[*]
>>> # Block polymer with 5A and 5B
>>> ps1.linear_copolymer(ps2, [0]*4 + [1]*4)
[*]C=CC=CCCCCCCCCC=CC=C[*]
>>> # Gradient polymer
>>> gradient_pattern = 'AAAAAABAABBAABABBBAABBBBBB'
>>> ps1.linear_copolymer(ps2, gradient_pattern)
[*]C=CC=CC=CC=CC=CCCC=CC=CCCCCCCCCCCCCCCCCC=CCCCCC=CC=CCCCCC=CC=CC=C[*]

Parameters:

Name Type Description Default
other Union[PolymerSmiles, str]

Monomer B

required
pattern Union[str, List[int]]

Repetition pattern of monomer A and B. Can be a string of A and B or a list of 0 and 1. Defaults to [0,0,0,1,1,1].

[0, 0, 0, 1, 1, 1]

Returns:

Name Type Description
PolymerSmiles PolymerSmiles

Linear copolymer

Source code in psmiles/psmiles.py
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
def linear_copolymer(
    self,
    other: Union[PolymerSmiles, str],
    pattern: Union[str, List[int]] = [0, 0, 0, 1, 1, 1],
) -> PolymerSmiles:
    """Create a linear copolymer from two monomers.
    Useful to create gradient and block copolymers.

    Examples:
        ``` py
        >>> from psmiles import PolymerSmiles as PS
        >>> ps1 = PS("[*]CC[*]")
        >>> ps2 = PS("[*]C=C[*]")
        >>> ps1.linear_copolymer(ps2)
        [*]C=CC=CCCCCCCC=C[*]
        >>> # Block polymer with 5A and 5B
        >>> ps1.linear_copolymer(ps2, [0]*4 + [1]*4)
        [*]C=CC=CCCCCCCCCC=CC=C[*]
        >>> # Gradient polymer
        >>> gradient_pattern = 'AAAAAABAABBAABABBBAABBBBBB'
        >>> ps1.linear_copolymer(ps2, gradient_pattern)
        [*]C=CC=CC=CC=CC=CCCC=CC=CCCCCCCCCCCCCCCCCC=CCCCCC=CC=CCCCCC=CC=CC=C[*]
        ```

    Args:
        other (Union[PolymerSmiles, str]): Monomer B
        pattern (Union[str, List[int]], optional): Repetition pattern of
            monomer A and B. Can be a string of A and B or a list of 0 and 1.
            Defaults to [0,0,0,1,1,1].

    Returns:
        PolymerSmiles: Linear copolymer
    """
    logging.warning("Function is experimental. Please check results carefully.")

    if not isinstance(other, PolymerSmiles):
        other = PolymerSmiles(other)
    if isinstance(pattern, str):
        pattern = [0 if x == "A" else 1 for x in pattern]

    # Replace with self and other
    ps_pattern = [self if x == 0 else other for x in pattern]

    ps_linear = ps_pattern[0]
    for ps_add in ps_pattern[1:]:
        ps_linear = ps_linear.alternating_copolymer(ps_add, [1, 0])

    return ps_linear

random_copolymer(other, ratio=0.5, units=10)

Create a random copolymer from two monomers.

Examples:

>>> from psmiles import PolymerSmiles as PS
>>> ps1 = PS("[*]CC[*]")
>>> ps2 = PS("[*]CC([*])c1ccccc1")
>>> ps1.random_copolymer(ps2, ratio=0.5, units=6)
[*]CCC(CCCCCCC(CC([*])c1ccccc1)c1ccccc1)c1ccccc1
>>> # Set seed for reproducible copolymers
>>> import random
>>> random.seed(10)
>>> ps1.random_copolymer(ps2, units=4)
[*]CCCC(CC(CC[*])c1ccccc1)c1ccccc1
>>> ps1.random_copolymer(ps2, units=4)
[*]CCC(CCC(CC[*])c1ccccc1)c1ccccc1

Parameters:

Name Type Description Default
other Union[PolymerSmiles, str]

Monomer B

required
ratio float

Ratio of monomer A and B. Must be between 0 and 1. Defaults to 0.5.

0.5
units int

Total number of monomers. Defaults to 10.

10

Returns:

Name Type Description
PolymerSmiles PolymerSmiles

Random copolymer

Source code in psmiles/psmiles.py
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
def random_copolymer(
    self,
    other: Union[PolymerSmiles, str],
    ratio: float = 0.5,
    units: int = 10,
) -> PolymerSmiles:
    """Create a random copolymer from two monomers.

    Examples:
        ``` py
        >>> from psmiles import PolymerSmiles as PS
        >>> ps1 = PS("[*]CC[*]")
        >>> ps2 = PS("[*]CC([*])c1ccccc1")
        >>> ps1.random_copolymer(ps2, ratio=0.5, units=6)
        [*]CCC(CCCCCCC(CC([*])c1ccccc1)c1ccccc1)c1ccccc1
        >>> # Set seed for reproducible copolymers
        >>> import random
        >>> random.seed(10)
        >>> ps1.random_copolymer(ps2, units=4)
        [*]CCCC(CC(CC[*])c1ccccc1)c1ccccc1
        >>> ps1.random_copolymer(ps2, units=4)
        [*]CCC(CCC(CC[*])c1ccccc1)c1ccccc1
        ```

    Args:
        other (Union[PolymerSmiles, str]): Monomer B
        ratio (float, optional): Ratio of monomer A and B.
            Must be between 0 and 1. Defaults to 0.5.
        units (int, optional): Total number of monomers. Defaults to 10.

    Returns:
        PolymerSmiles: Random copolymer
    """

    logging.warning("Function is experimental. Please check results carefully.")

    if not isinstance(other, PolymerSmiles):
        other = PolymerSmiles(other)

    # Compute number of monomers A and B
    monomer_a = round(units * ratio)
    monomer_b = units - monomer_a

    # Create initial pattern
    pattern = [0] * monomer_a + [1] * monomer_b

    # Shuffle list
    random.shuffle(pattern)

    return self.linear_copolymer(other, pattern)

replace_stars(_with)

Replace stars with other characters.

Parameters:

Name Type Description Default
_with str

Replacement characters

required

Returns:

Name Type Description
PolymerSmiles PolymerSmiles

PSMILES string with new symbols for repeat unit endpoints

Source code in psmiles/psmiles.py
218
219
220
221
222
223
224
225
226
227
228
229
def replace_stars(self, _with: str) -> PolymerSmiles:
    """Replace stars with other characters.

    Args:
        _with (str): Replacement characters

    Returns:
        PolymerSmiles: PSMILES string with new symbols for repeat unit endpoints
    """
    return PolymerSmiles(
        self.psmiles.replace("[*]", _with), deactivate_warnings=True
    )

savefig(filename=None, crop=True)

Save the chemical drawing of the polymer

Parameters:

Name Type Description Default
filename str

Filename to save the drawing. Defaults to PSMILES string.

None
crop bool

If inkscape is available crop the figure. Defaults to True.

True
Source code in psmiles/psmiles.py
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
def savefig(self, filename: str = None, crop=True):
    """Save the chemical drawing of the polymer

    Args:
        filename (str, optional): Filename to save the drawing.
            Defaults to PSMILES string.
        crop (bool, optional): If inkscape is available crop the figure.
            Defaults to True.
    """
    import shutil
    import subprocess
    import tempfile
    from pathlib import Path

    from rdkit.Chem.Draw import rdMolDraw2D

    if not filename:
        filename = f"{self.__str__()}.svg"

    def crop_svg(svg):
        # crop using inkscape
        with tempfile.NamedTemporaryFile(suffix=".svg") as fp:
            fn = Path(fp.name)
            fn.write_text(svg)
            subprocess.run(
                f"inkscape --export-area-drawing --export-type=svg "
                f"--export-overwrite {fn}".split(),
                stderr=subprocess.DEVNULL,
                stdout=subprocess.DEVNULL,
            )
            return fn.read_text()

    d2d = rdMolDraw2D.MolDraw2DSVG(300, 300)
    o = d2d.drawOptions()
    o.clearBackground = False

    d2d.DrawMolecule(
        self.mol, highlightAtoms=self.get_connection_info()["star"]["index"]
    )

    d2d.FinishDrawing()
    svg = d2d.GetDrawingText()

    # If inkscape is available use it to crop the figure
    if shutil.which("inkscape") and crop:
        svg = crop_svg(svg)

    # Write
    Path(filename).write_text(svg)

    logging.debug(f"Drawing saved to {filename}")