Test Model Plugin

The purpose of the TestModel plugin (tel_test_model.dll) is to provide a test, SBML model, to a client.
In addition, the plugin can provide the user with simulated data, with and without applied artificial Gaussian noise. Currently no settings are exposed for the actual simulation of the test model.

The TestModel plugin do depend on the AddNoise plugin.

The following code shows simple usage of the plugin.

import telplugins as tel

try:    
    modelPlugin = tel.Plugin("tel_test_model")            

    #Test model plugin depends on the add_noise plugin
    noisePlugin = tel.Plugin("tel_add_noise")

    #Generate internal test data
    modelPlugin.execute()
    test_data = modelPlugin.TestData
    test_data_with_noise = modelPlugin.TestDataWithNoise

    test_data.plot()
    test_data_with_noise.plot()

except Exception as e:
    print 'Problem: ' + `e`

More information can be found in the embedded Plugin Document, available here: test_model

Current Version: 1.0.0 (2014-03-08)