• Language: en

Files Generated by Gensum Script

This section discusses how the GenSum Script saves files to disk, if you want to see an example of a GenSum Script created by a Gen Script, see Generate a Two Compartment PopPK Data Set.

If you run a GenSum Script using the following command:-

$ popy_run my_gensum_script.pyml

folders will be created on disk (within the same folder as the script) as follows:-

build
src
my_gensum_script.pyml.html
my_gensum_script.pyml.run.main.log
sphinx.log

Here ‘src’ contains files copied from the output of the parent Gen Script and some automatically generated .rst files.

The ‘build’ folder is the output of running Sphinx on the ‘src’ files. Sphinx is a utility for processing .rst files into HTML and optionally other formats. The main output of running sphinx is here:-

build/
    html/
        index.html

Here ‘sphinx.log’ is the log file for Sphinx and ‘my_gensum_script.pyml.run.main.log’ is the log file for the GenSum Script.

You can view the summary of the gen/sim output to HTML files by typing:-

$ popy_view my_gensum_script.pyml.html

Which should look something like First order absorption model with peripheral compartment.

Back to Top