A class for reading structures from a SMILES CSV formatted file. This
format is used by Canvas. Returns instances of SmilesStructure.
|
|
__init__(self,
filename,
index=1)
Initialize with a filename, an optional starting index (default of
1). |
|
|
|
|
|
|
|
__iter__(self)
Return the iterator for all SmilesStructures from the file |
|
|
|
|
next(self)
Return the next SmilesStructure from the file. |
|
|
|
Inherited from _ReaderWriterContextManager:
__enter__,
__exit__
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|