Metadata-Version: 2.1
Name: wsppchem
Version: 0.9
Summary: Water Solubility Prediction Project
Home-page: https://github.com/Nohalyan/WSPP_Projectppchem
Author: Cossard Lucas and Enzo Venancio
Author-email: lucas.cossard@epfl.ch and enzo.venancio@epfl.ch
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

![Project Logo](assets/WSPP_logo.png)

<h1 align="center">
Water Solubility Prediction Project
</h1>

## 🔍 Overview 🔎
This project aims to predict the water solubility of chemical compounds using machine learning techniques. The project developed here can be used to estimate the water solubility of new compounds only using the SMILES code, which can be valuable in various industries such as pharmaceuticals, agriculture, and environmental science.
In this repository, we are making available the data we used to train and test our models and `.pkl` files containing the optimized parameters of our best model. But more importantly a notebook tracing what we did from the beginning to the end of this project and a package that can predict the water solubility of several SMILEs and of a `.csv` file containing several SMILEs. 

## 📝 Project Structure 📝
This project contains two main elements: a Notebook and a Package.

**1️⃣ A Notebook containing:**
- Import Relevant Modules and Libraries
- Data Collection
- Data Cleaning
- Calculation of RDkit Molecular Descriptors
- Selection of Machine Learning Models
- Fine-tuning
- Analysis of different models
- Saving of the best trained model and scaler

**2️⃣ A Package containing two main functions:**

-  A function to predict the LogS value for one or more  SMILES
-  A function to predicts LogS values for SMILES codes stored in a CSV file
 
## 🔨 Installation 🔨
### 🌍 Environment 🌍
1. clone our repository:
```
git clone https://github.com/Nohalyan/Projetppchem
```

2. Open your terminal or Anaconda Prompt and navigate to the directory /WSPP_Projectppchem containing the wsppchem_env_environment.yml file and run the following command to create the Conda environment:
```
conda env create -f environment.yml
```

3. Activate the environment: After creating the environment, activate it using:
```
conda activate wsppchem_env
```

4. Verify the environment: To check that all the dependencies are installed correctly, you can list the installed packages:
```
conda list
```

### 📦 Package 📦

1. Install our package `wsppchem` with a simple pip install.
```
pip install wsppchem
```

2. Import all the functions using the following command.
```
from wsppchem.wspp_functions import *
```
3. Enjoy! 😁

The two main functions of our package are `predict_logS_smiles` and `predict_logS_csv` which can be used in the following way:
```
predict_logS_smiles(*smiles_codes)
```

```
predict_logS_csv(csv_file_path)
```

The first function `predict_logS_smiles(*smiles_codes)` can be used to predict the LogS value for one or more SMILES at the same time.
The second fucntion `predict_logS_csv(csv_file_path)` can be used to predicts LogS values for SMILES codes stored in a `.csv` file.
And if you need any help, you can use the function `wspphelp()` which will give you more precise information on the functions as well as an example of how to use them. 

## 📗 License 📕
This project is licensed under the MIT License.

## 📜 References 📜
This project is based on the code of this Github Jupyter notebook: https://github.com/gashawmg, as well as data from https://github.com/PatWalters. 

## 📖 Authors 📖
- Cossard Lucas: https://github.com/Nohalyan
- Venancio Enzo: https://github.com/Enzo-vnc

This project was carried out as part of EPFL's Practical programming in Chemistry course.
