Metadata-Version: 2.1
Name: STOUT-pypi
Version: 2.0.0
Summary: STOUT V2.0 - Smiles TO iUpac Translator Version 2.0
Home-page: https://github.com/Kohulan/STOUT-2
Author: Kohulan Rajan
Author-email: kohulan.rajan@uni-jena.de
Maintainer: Kohulan Rajan
Maintainer-email: kohulan.rajan@uni-jena.de
License: MIT
Description: [![License](https://img.shields.io/badge/License-MIT%202.0-blue.svg)](https://opensource.org/licenses/MIt)
        [![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-blue.svg)](https://github.com/Kohulan/Smiles-TO-iUpac-Translator/graphs/commit-activity)
        ![Workflow](https://github.com/Kohulan/Smiles-TO-iUpac-Translator/actions/workflows/ci_pytest.yml/badge.svg)
        [![GitHub issues](https://img.shields.io/github/issues/Kohulan/Smiles-TO-iUpac-Translator.svg)](https://GitHub.com/Kohulan/Smiles-TO-iUpac-Translator/issues/)
        [![GitHub contributors](https://img.shields.io/github/contributors/Kohulan/Smiles-TO-iUpac-Translator.svg)](https://GitHub.com/Kohulan/Smiles-TO-iUpac-Translator/graphs/contributors/)
        [![GitHub release](https://img.shields.io/github/release/Kohulan/Smiles-TO-iUpac-Translator.svg)](https://GitHub.com/Kohulan/Smiles-TO-iUpac-Translator/releases/)
        [![PyPI version fury.io](https://badge.fury.io/py/STOUT-2.svg)](https://pypi.python.org/pypi/STOUT-2/)
        ![versions](https://img.shields.io/pypi/pyversions/STOUT-2.svg)
        
        ![GitHub Logo](https://github.com/Kohulan/Smiles-TO-iUpac-Translator/blob/stout-1/important_assets/STOUT.png?raw=true)
        
        # STOUT V2.0 - Smiles TO iUpac Translator Version 2.0
        This repository contains STOUT-V2, SMILES to IUPAC name translator using transformers. STOUT-V2 can translate SMILES to IUPAC names and IUPAC names back to a valid SMILES string. STOUT-V1 is already published and for more details check [here](https://github.com/Kohulan/Smiles-TO-iUpac-Translator)
        
        #### OS-Support: Linux, MACOS and Windows (On Windows you can run STOUT inside the Ubuntu shell). But It is highly recommended to use a Linux system.
        
        # Usage
        
        ### We suggest to use STOUT inside a Conda environment, which makes the dependencies to install easily.
        - Conda can be downloaded as part of the [Anaconda](https://www.anaconda.com/) or the [Miniconda](https://conda.io/en/latest/miniconda.html) plattforms (Python 3.7). We recommend to install miniconda3. Using Linux you can get it with:
        ```shell
        $ wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
        $ bash Miniconda3-latest-Linux-x86_64.sh
        ```
        ## How to install STOUT
        
        ```shell
        $ sudo apt update
        $ sudo apt install unzip
        $ conda create --name STOUT python=3.7.9
        $ conda activate STOUT
        $ conda install pip
        $ python -m pip install -U pip
        $ pip install git+https://github.com/Kohulan/Smiles-TO-iUpac-Translator.git
        ```
        
        ## Py-Pi installation instructions coming soon,
        ```shell
        
        ```
        
        
        ## Simple usage
        ```python3
        
        from STOUT import translate_forward, translate_reverse
        
        # SMILES to IUPAC name translation
        
        SMILES = "CN1C=NC2=C1C(=O)N(C(=O)N2C)C"
        IUPAC_name = translate_forward(SMILES)
        print("IUPAC name of "+SMILES+" is: "+IUPAC_name)
        
        # IUPAC name to SMILES translation
        
        IUPAC_name = "1,3,7-trimethylpurine-2,6-dione"
        SMILES = translate_reverse(IUPAC_name)
        print("SMILES of "+IUPAC_name+" is: "+SMILES)
        
        ```
        
        #### Happy Brewing... 🍺
        
        ## How to cite us?
        
        Rajan, K., Zielesny, A. & Steinbeck, C. STOUT: SMILES to IUPAC names using neural machine translation. J Cheminform 13, 34 (2021). https://doi.org/10.1186/s13321-021-00512-4
        
        
        # STOUT-V2 is part of DECIMER project
        [![GitHub Logo](https://github.com/Kohulan/DECIMER-Image-to-SMILES/raw/master/assets/DECIMER.gif)](https://kohulan.github.io/Decimer-Official-Site/)
        
        # More about Us
        
        [![GitHub Logo](https://github.com/Kohulan/DECIMER-Image-to-SMILES/blob/master/assets/CheminfGit.png?raw=true)](https://cheminf.uni-jena.de)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
