Converting SMILES to Kekule Format: Difference between revisions

From DISI
Jump to navigation Jump to search
No edit summary
No edit summary
Line 3: Line 3:
     /nfs/soft/jchem/current/bin/molconvert smiles:-a {INPUT_SMILES.smi} > {OUTPUT_SMILES.smi}
     /nfs/soft/jchem/current/bin/molconvert smiles:-a {INPUT_SMILES.smi} > {OUTPUT_SMILES.smi}


The SMILES in the {OUTPUT_SMILES.smi} file will not be de-aromatized, and can be pasted into ChemDraw.


The SMILES in the {OUTPUT_SMILES.smi} file will not be de-aromatized, and can be pasted into ChemDraw.
 
To run this command while also maintaining the IDs from the {INPUT_SMILES.smi} file, run this:
 
    python ~rstein/zzz.scripts/LSD_processing_scripts/kekule_smiles.py {INPUT_SMILES.smi}
 
The output will be "kekule_{INPUT_SMILES.smi}".

Revision as of 21:11, 17 October 2019

For adding molecular structures to slides/papers, SMILEs can be converted into Kekule format with the following command:

    /nfs/soft/jchem/current/bin/molconvert smiles:-a {INPUT_SMILES.smi} > {OUTPUT_SMILES.smi}

The SMILES in the {OUTPUT_SMILES.smi} file will not be de-aromatized, and can be pasted into ChemDraw.


To run this command while also maintaining the IDs from the {INPUT_SMILES.smi} file, run this:

    python ~rstein/zzz.scripts/LSD_processing_scripts/kekule_smiles.py {INPUT_SMILES.smi}

The output will be "kekule_{INPUT_SMILES.smi}".