Description Usage Arguments Value Author(s) Examples
Generates fingerprints using OpenBabel. The compound format can be specified as anything supported by OpenBabel. The fingerprint name can also be specified.
1  | fingerprint_OB(obmolRefs, fingerprintName)
 | 
obmolRefs | 
 A list of OBMol references ( of class '_p_OpenBabel__OBMol') representing the molecules to
compute properites for. If you have your molecules in string format, you can create a list
of OBMol references using the   | 
fingerprintName | 
 The name of the fingerprint to generate. A list of available names can be found with "obabel -L fingerprints". Currently that list is: "FP2", "FP3", "FP4", and "MACCS".  | 
A matrix of binary values is returned. There is a row for each compound. The length of a row is determined by the fingerprint specified.
Kevin Horan
1 2 3 4 5  | ## Not run: 
	molRefs = forEachMol("SMILES","C1CCCCC1\ttest-compound-name",identity)
	fingerprint_OB(molRefs,"FP3")
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.