public class MDLV2000Reader extends DefaultChemObjectReader
IAtomContainer
or IChemModel
from an MDL molfile, and a IChemFile
from a SD file, with a IChemSequence
of IChemModel
's, where each IChemModel will contain one IAtomContainer
.
From the Atom block it reads atomic coordinates, element types and formal charges. From the Bond block it reads the bonds and the orders. Additionally, it reads 'M CHG', 'G ', 'M RAD' and 'M ISO' lines from the property block.
If all z coordinates are 0.0, then the xy coordinates are taken as 2D, otherwise the coordinates are read as 3D.
The title of the MOL file is read and can be retrieved with:
molecule.getProperty(CDKConstants.TITLE);
RGroups which are saved in the MDL molfile as R#, are renamed according to their appearance, e.g. the first R# is named R1. With PseudAtom.getLabel() "R1" is returned (instead of R#). This is introduced due to the SAR table generation procedure of Scitegics PipelinePilot.
IChemObjectReader.Mode
errorHandler, mode
Constructor and Description |
---|
MDLV2000Reader() |
MDLV2000Reader(InputStream in)
Constructs a new MDLReader that can read Molecule from a given
InputStream.
|
MDLV2000Reader(InputStream in,
IChemObjectReader.Mode mode) |
MDLV2000Reader(Reader in)
Constructs a new MDLReader that can read Molecule from a given Reader.
|
MDLV2000Reader(Reader in,
IChemObjectReader.Mode mode) |
Modifier and Type | Method and Description |
---|---|
boolean |
accepts(Class<? extends IChemObject> classObject)
Returns whether the given
IChemObject can be read or written. |
void |
close()
Closes this IChemObjectIO's resources.
|
void |
customizeJob() |
IResourceFormat |
getFormat()
Returns the
IResourceFormat class for this IO class. |
<T extends IChemObject> |
read(T object)
Takes an object which subclasses IChemObject, e.g.
|
void |
setReader(InputStream input)
Sets the InputStream from which this ChemObjectReader should read
the contents.
|
void |
setReader(Reader input)
Sets the Reader from which this ChemObjectReader should read
the contents.
|
fireFrameRead, handleError, handleError, handleError, handleError, setErrorHandler, setReaderMode
addChemObjectIOListener, addSetting, addSettings, fireIOSettingQuestion, getIOSettings, getListeners, getSetting, getSetting, getSettings, hasSetting, removeChemObjectIOListener
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
addChemObjectIOListener, addSetting, addSettings, getIOSettings, getListeners, getSetting, getSetting, getSettings, hasSetting, removeChemObjectIOListener
public MDLV2000Reader()
public MDLV2000Reader(InputStream in)
in
- The InputStream to read frompublic MDLV2000Reader(InputStream in, IChemObjectReader.Mode mode)
public MDLV2000Reader(Reader in)
in
- The Reader to read frompublic MDLV2000Reader(Reader in, IChemObjectReader.Mode mode)
public IResourceFormat getFormat()
IChemObjectIO
IResourceFormat
class for this IO class.public void setReader(Reader input) throws CDKException
IChemObjectReader
CDKException
public void setReader(InputStream input) throws CDKException
IChemObjectReader
CDKException
public boolean accepts(Class<? extends IChemObject> classObject)
IChemObjectIO
IChemObject
can be read or written.classObject
- IChemObject
of which is tested if it can be handled.IChemObject
can be handled.public <T extends IChemObject> T read(T object) throws CDKException
object
- The object that subclasses IChemObjectCDKException
public void close() throws IOException
IChemObjectIO
IOException
- when the wrapper IO class cannot be closed.public void customizeJob()
Copyright © 2021. All rights reserved.