parse.smiles | R Documentation |
This function parses a vector of SMILES strings to generate a list of
'IAtomContainer' objects. Note that the resultant molecule will
not have any 2D or 3D coordinates.
Note that the molecules obtained from this method will not have any
aromaticity perception (unless aromatic symbols are encountered, in which
case the relevant atoms are automatically set to aromatic), atom typing or
isotopic configuration done on them. This is in contrast to the
load.molecules
method. Thus, you should
perform these steps manually on the molecules.
parse.smiles(smiles, kekulise = TRUE, omit.nulls = FALSE, smiles.parser = NULL)
smiles |
A single SMILES string or a vector of SMILES strings |
kekulise |
If set to 'FALSE' disables electron checking and allows for parsing of incorrect SMILES. If a SMILES does not parse by default, try setting this to 'FALSE' - though the resultant molecule may not have consistent bonding. As an example, 'c4ccc2c(cc1=Nc3ncccc3(Cn12))c4' will not be parsed by default because it is missing a nitrogen. With this argument set to 'FALSE' it will parse successfully, but this is a hack to handle an incorrect SMILES |
omit.nulls |
If set to 'TRUE', omits SMILES which were parsed as 'NULL' |
smiles.parser |
A SMILES parser object obtained from |
A 'list' of 'jobjRef's to their corresponding CDK 'IAtomContainer' objects. If a SMILES string could not be parsed and 'omit.nulls=TRUE' it is omited from the output list.
Rajarshi Guha (rajarshi.guha@gmail.com)
get.smiles
, parse.smiles
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.