Skip to content

Albericvgn/ChemBalancer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

project logo

Chemical Equation Balancer

The Chemical Equation Balancer is a Python program that balances chemical reaction equations based on reactants and products provided by the user in the desired format (name or SMILES).

🥼 Features

  • SMILES or name Input: Accepts reactants and products as SMILES or chemical compound name strings. This provides a convenient way to input reactants and products.
  • Chemical Equation Balancing: Automatically balances chemical equations by solving an integer linear programming problem to find stoichiometric coefficients.
  • Display Reaction: Formats and displays the balanced chemical reaction in a human-readable format.
  • For a specific temperature, it calculates standard enthropy, enthalpy & free gibbs energy in order to display them and tell wether the reaction is spotaneous or not.

📋 Requirements

  • NumPy: Required for handling arrays and matrices.
  • RDKit: A cheminformatics toolkit used for parsing SMILES strings and generating 2D molecular structures.
  • PuLP: A linear programming library used for solving integer linear programming problems.
  • RXNMapper: A package for mapping reactions.
  • IPython: Interactive computing in Python.
  • requests: HTTP library for making requests.
  • base64: Library for base64 encoding and decoding.
  • chemicals: A package for chemical properties.
  • streamlit: Used for creating interactive web apps.
  • Rxn-INSIGHT: Open-source algorithm, written in python, to classify and name chemical reactions, and suggest reaction conditions based on similarity and popularity.

👷 Installation

Before installing any of the required dependencies, it is recommended that you create and activate an environment to do this in as to avoid any potential conflicts.

  1. Clone this repository and navigate to it:
git clone https://github.com/Albericvgn/ChemBalancer
cd ChemBalancer
  1. Create a conda environment.
conda create -n your_env_name python=3.10
  1. Activate this environment.
conda activate your_env_name

Now that the environment is activated, the dependencies required for the code must be installed.

  1. Installing NumPy:
pip install numpy
  1. Installing RDKit:
conda install -c conda-forge rdkit
  1. Installing PuLP:
pip install pulp
  1. Installing RXNMapper:
pip install rxnmapper
  1. Installing IPython:
pip install ipython
  1. Installing requests:
pip install requests 
  1. Installing base64:
pip install pybase64 
  1. Installing chemicals:
pip install chemicals
  1. Installing streamlit:
pip install streamlit
  1. Installing Rxn-INSIGHT: It should be noted that Rxn-INSIGHT requires the following: NumPy, Pandas, RDKit, RDChiral, and RXNMapper. While some of these are required for our chemical equation balancer and should already be installed, Pandas and RDChiral may need to also be installed:
pip install pandas
pip install rdchiral

Once all the requirements are met, the following command can be used for the installation:

git clone https://github.com/schwallergroup/Rxn-INSIGHT.git
cd Rxn-INSIGHT
pip install .

For more details on the installation of this package, you can click on the following link: https://github.com/schwallergroup/Rxn-INSIGHT

Once all the dependencies are installed, you can run your Streamlit application. Make sure you are in the directory containing your script and then run:

streamlit run your_script_name.py

🔩 Usage

  1. Activate the environment and navigate to ChemBalancer:
conda activate your_env_name
cd ChemBalancer
cd src/chembalancer
  1. To open the application, run the following command (this command will almost certainly not work with Safari as a browser, nevertheless you can still copy the link and paste it into a different one):
streamlit run ChemBalancerInterface.py
  1. Once the streamlit application is open and running, follow these steps to balance your reaction:
    • Select the desired format that you would like to input the reactants/products in (name or SMILES).
    • Input these compounds, separating them with a comma.
    • Input the temperature at which you wish to study this reaction (in Kelvins).
    • Click on the 'Balance Equation' button to generate the balanced reaction as well as the thermochemical data.
    • Use the 'Clear' button if you wish to balance a new equation with different reactants/products.

⚠ Important

Now you are all set. Make sure to always have this link by your side:

Just click on the following logo, and don't forget to pin it to your favorites! http://128.179.143.112:8507/

Reference

M. R. Dobbelaere, I. Lengyel, C. V. Stevens, and K. M. Van Geem, ‘Rxn-INSIGHT: fast chemical reaction analysis using bond-electron matrices’, J. Cheminform., vol. 16, no. 1, Mar. 2024.

@ARTICLE{Dobbelaere2024-es,
  title     = "{Rxn-INSIGHT}: fast chemical reaction analysis using
               bond-electron matrices",
  author    = "Dobbelaere, Maarten R and Lengyel, Istv{\'a}n and Stevens,
               Christian V and Van Geem, Kevin M",
  journal   = "J. Cheminform.",
  publisher = "Springer Science and Business Media LLC",
  volume    =  16,
  number    =  1,
  month     =  mar,
  year      =  2024,
  copyright = "https://creativecommons.org/licenses/by/4.0",
  language  = "en"
}

Developers

  • Fane SHALA, student in chemistry at EPFL. Profile Picture
  • John STEWART, student in chemical engineering at EPFL. Profile Picture
  • Albéric VIGNE, student in chemistry at EPFL. Profile Picture