Decoding Fingeringprints and SMILES to IUPAC
Decoding your fingerprints to your SMILES and to an IUPAC name takes a good annotated dictionary of bit vectors that can accurately guess the chemical space that exists within your molecule.
To accomplish this, GlobalChem has a 1 to 1 mapping of bit vectors produced on a 512 scale with a morgan radius of 2 to capture the chemical environment. So this is where you can play with the parameters to decode your fragmented SMILES or your long SMILES or individual bit vector fragments.
Load the Decoder Engine
Generate a Morgan Fingerprint
For ease of use we are sticking to hyperparameters as defined in GlobalChem with radius of 2 and 512 bit length.
For benzene:
Classify Fingerprints
You can classify fingerprints based on the node key that you pass in or all or them. Depends on how accurate or which chemical space you would like to explore.
Classify Bigger SMILES
If you would like to classify a bigger SMILES then GlobalChem will use the BRICS module to fragment the molecule into easier bitvector fragments and do comparisons using tanimoto similarity to achieve a viable functional group space. It follows the same concept of passing in a node to determine the bit vector chemical space to explore.
Last updated