Global-Chem / global-chem

A Knowledge Graph of Common Chemical Names to their Molecular Definition
https://globalchemistry.org/
Mozilla Public License 2.0
156 stars 21 forks source link

Create Graph Node: Fatty Acids #267

Closed Sulstice closed 1 year ago

Sulstice commented 1 year ago
  Node to be added to the Knowledge Graph
  ```python
        class Fatty Acids(object):
            def __init__(self):
                self.name == 'fatty acids'
            @staticmethod
            def get_smiles():
              smiles =  {'arachidic': '', ' behenic': '', ' eicosadienoic': '', ' eicosenoic': '', ' linoleic': '', ' linolenic': '', ' myristic': '', ' oleic': '', ' palmitic': '', ' palmitoleic': '', ' sativic': '', ' stearic': '', ' lignoceric and cis- vaccenic': ''}
              return smiles
  ```