Description Usage Arguments Details Value Author(s) References See Also Examples
Returns the compound identifiers from the ID slot of an SDFset object. 
1  | cid(x)
 | 
x | 
 object of class   | 
...
character vector
Thomas Girke
...
atomblock, atomcount, bondblock, datablock, header, sdfid
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19  | ## SDFset/APset instances
data(sdfsample)
sdfset <- sdfsample
apset <- sdf2ap(sdfset[1:4])
## Extract compound IDs from SDFset/APset
cid(sdfset[1:4])
cid(apset[1:4])
## Extract IDs defined in SD file
sdfid(sdfset[1:4])
## Assigning compound IDs and keeping them unique
unique_ids <- makeUnique(sdfid(sdfset))
cid(sdfset) <- unique_ids 
cid(sdfset[1:4])
## Replacement Method
cid(sdfset) <- as.character(1:100)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.