Extension Fields

    Purpose of extension fields

    Extension fields allow calculations to be performed on data from other fields. They can also access data from a datatree (child entity, grand child entity, etc) and from external sources like files, web services, databases, etc.

    They allow to return chosen Java type, define custom query operators and custom icon. Java handler implementing ExtensionFieldHandler provides needed functionality and behaviour is adjusted using JSON configuration.

    Extension field is an experimental feature, so expect API or behaviour changes.

    How are calculations performed?

    Provided ExtensionFieldHandler is called and returns all necessary information - field type, field dependencies, row values, custom operators and their evaluation, custom icon.

    JSON configuration affects handler behaviour and can adjust field dependencies, constants, calculations, etc.

    Where are calculations performed?

    Calculation / data retrieval is done in IJC or in external data sources, depending on the handler implementation. Results are not stored in the database, but calculated dynamically as they're needed. Field values are cached.

    How do I handle structures?

    The structure field can be used as a dependent field. The data type is the IJC Structure class. The key thing you will probably want to do with it is to get the structure in either its original format (e.g. smiles, SDF, ...) or as Marvin Molecule object. Here are examples for each - both assume the Structure mol variable.

    1. As the original format:
    mol.getEncodedMol()
    1. Obtain the Molecule object and then call the toFormat() method. You can do much more with the Molecule using the Marvin API:
    mol.getNative().toFormat("smiles") // convert to smiles

    In both cases a text value is generated (e.g. you would be defining the String.class type extension field). To display this as a structure you can use the structure renderer in the grid view or the molecule widget in the form view.

    What about errors?

    If an error occurs during field value retrieval or calculation, then it is thrown as usual.

    Comparison with Calculated field

    Main differences between calculated and extension fields.

    Feature Calculated field Extension field
    Execution Groovy script Java handler
    Storage schema metadata installed Java class
    Data type decimal, integer, text, boolean any Java class
    Error handling returns null throws exception
    Search available available for basic types or using custom operator
    Sort available n/a
    Custom operators n/a available
    Custom icon n/a available
    External data sources possible easy to implement

    To add a new extension field:

    A new extension field can be added by any of these methods:

    • In the Grid View

    • In Design mode of the Form View

    images/download/attachments/17273025/1ab.png

    Step 1. Install IJC plugin to make handler classes available:

    Install IJC plugin containing Extension field handler classes.

    For example download ijc-api-examples.zip and install ijc-api-examples\plugins\com-chemaxon-ijc-field-extension-demo.nbm.

    Step 2. Open new Extension Field dialog:

    For example in a sample project, open Pubchem grid view and click the New Extension Field... (experimental) button.

    Step 3. Fill-in values:

    Enter field name, handler class and JSON configuration.

    For example Map DB name, handler com.chemaxon.ijc.field.extension.demo.MappingField and configuration for mapping values from DB name field:

    {
       "dependentField": "DB name",
       "mapping": {
           "BioCyc": "BioCyc collection of Pathway/Genome Databases",
           "KEGG": "Kyoto Encyclopedia of Genes and Genomes",
           "MOLI": "Molecular Imaging Database",
           "NIST Chemistry WebBook": "National Institute of Standards and Technology Chemistry WebBook"
       },
       "defaultValue": "undefined"
    }

    Step 4. Create the Extension field:

    Click Finish and check that a new field was created and values are filled-in.

    For example values BioCyc collection of Pathway/Genome Databases are filled-in.

    To edit an existing extension field:

    Currently only a field name can be changed - either in the schema editor or in the widget customiser in the form or grid view.

    Remove and add a new extension field if you want to change the handler and/or configuration.

    Examples

    1. Similarity field

    Chemical similarity, a powerful tool in compound screening, is easily accessible in IJC via extension field.

    1. Handler class to use for similarity is com.im.df.impl.db.field.extension.use.SimilarityCalculator, config is to be left empty.

      images/download/attachments/17273025/2ab.png
    2. Newly added Similarity field will be empty since no query has run on it yet. In order to use Similarity search, switch to the Query mode and draw the molecule which you want to use as a standard for your query.

      images/download/attachments/17273025/4ab.png
    3. You will notice that default similarity is set to 0.5. In order to change the setting, right click the structure in Query mode and choose Options... Here you can modify Similarity threshold or change the method used to calculate Similarity (Screening config).

      images/download/attachments/17273025/5ab.png
    4. Once the query is run, compounds from your dataset with Similarity higher or equal to the threshold are shown. Screenshot below is an example of a query set in Pubchem demo on benzylamine with similarity threshold set to 0.4.

      images/download/attachments/17273025/6ab.png

    2. Value mapping field

    Example implementation of a value mapping can be found in ijc-api-examples.zip, downloaded from the IJC download page.

    See MappingField.java in ijc-api-examples\sources\extensionField\Demo\src\com\chemaxon\ijc\field\extension\demo.

    3. Mass Spectrum field

    Advanced example is a Mass Spectrum field. Defines its own Java type for mass spectrum peaks, new icon, reads data either from a child entity or mass spectrum XML format, defines mass spectrum Similarity operator and provides the search. Its mass spectrum peaks can be rendered using a [Canvas widget](instant-jchem_canvas-widget.md

    4. External data sources

    Extension fields can retrieve data from any external data source. Detail data can be retrieved from a file or a different database. Chemical calculations can be computed using a web service.

    5. Custom operators

    Custom operators can bring new functionality - mass spectrum similarity search, biochemical subsequence search, etc. Evaluation happens in memory - values are first retrieved and then operator evaluated. Query returns matching results as returned by the operator.

    Summary

    These examples show that a wide range of functionality can be implemented using the extension field. Plugins can add custom functionality to IJC - extension fields retrieve data and canvas widgets render them.

    We welcome feedback on this feature.