.. _python_convert_conpred: File Format Conversion ---------------------- In order to convert files in ConKit, we need to use the ConKit I/O framework. .. note:: ConKit I/O framework consists of three main functions that handle the relevant parsers: :func:`read() `, :func:`write() ` and :func:`convert() `. The latter effectively uses the former two but handles everything in one step. **1. Files can be read in ConKit's internal hierarchies using simple Python code.** .. code-block:: python >>> import conkit.io >>> conpred = conkit.io.read('toxd/toxd.mat', 'ccmpred') **2. Contact prediction hierarchies can also be written in a similarly easy format. Using the ``conpred`` hierarchy we have created above:** .. code-block:: python >>> import conkit.io >>> conkit.io.write('toxd/toxd.rr', 'casprr', conpred) **3. To convert file formats in single call, you can use the :func:`conkit.io.convert` function.** .. code-block:: python >>> import conkit.io >>> conkit.io.convert('toxd/toxd.mat', 'ccmpred', 'toxd/toxd.rr', 'casprr') You can convert these files to many different other formats, for a full list check out the :ref:`file_formats`.