Learn R Programming

rcdk (version 3.8.1)

get.smiles: Generate a SMILES representation of a molecule.

Description

The function will generate a SMILES representation of an `IAtomContainer` object. The default parameters of the CDK SMILES generator are used. This can mean that for large ring systems the method may fail. See CDK Javadocs for more information

Usage

get.smiles(molecule, flavor = smiles.flavors(c("Generic")), smigen = NULL)

Value

A character string containing the generated SMILES

Arguments

molecule

The molecule to query. Should be a `jobjRef` representing an `IAtomContainer`

flavor

The type of SMILES to generate. See smiles.flavors. Default is `Generic` SMILES

smigen

A pre-existing SMILES generator object. By default, a new one is created from the specified flavor

Author

Rajarshi Guha (rajarshi.guha@gmail.com)

References

SmilesGenerator

See Also

parse.smiles, smiles.flavors

Examples

Run this code
m <- parse.smiles('C1C=CCC1N(C)c1ccccc1')[[1]]
get.smiles(m)
get.smiles(m, smiles.flavors(c('Generic','UseAromaticSymbols')))

Run the code above in your browser using DataLab