Size: 5034
Comment:
|
Size: 5040
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 39: | Line 39: |
Line 40: | Line 41: |
Each dist represnts one wizard page and the pages are iterated through until the last one is reached, at which point the wizard closes. Before the wizard pages to the next page, the values entering in the wizard page are checked for errors. If an error is found a description will be listed in the projectmanger status textbox and you will not be allowed to proceed until the error is corrected. | Each dict represents one wizard page and the pages are iterated through until the last one is reached, at which point the wizard closes. Before the wizard pages to the next page, the values entering in the wizard page are checked for errors. If an error is found a description will be listed in the projectmanger status textbox and you will not be allowed to proceed until the error is corrected. |
Line 42: | Line 44: |
.1 TITLE, this list the title of the wizard page> This needs to needs a short description, just a few words long. .1 INST, this is a paragraph long description of the information this page aims to gather .1 WIDGETS, this is a list of strings naming empmwidgets that the wizard page aims to fill. These widgets MUST be present in the program GUI interface AND the widget names must be the same as the option names in the e2program this wizard is built for. |
.1 'TITLE', this lists the title of the wizard page and needs a short description, just a few words long. .1 'INST', this is a paragraph long description of the information the wizard page aims to gather .1 'WIDGETS', this is a list of strings naming empmwidgets that the wizard page aims to fill. These widgets MUST be present in the program GUI interface AND the widget names must be the same as the option names in the e2program the wizard is built for. |
Adding a Wizard to projectmanager
The projectmanager wizards are just JSON files specified in the spr.json or tomo.json files. To add a wizard to a program represented in the projectmanager workflow tree, just add in the the WIZARD key value pair.
For example, to add a wizard to e2ctf.py we would change:
1 "ICON": "ctf",
2 "TABLE": "EMCTFcorrectedParticlesTable(withmodal=False,multiselect=True)",
3 "NAME": "CTF",
4 "CHILDREN": [
5 {
6 "ICON": "ctf",
7 "PROGRAM": "e2ctf.py",
8 "MODE": "autofit",
9 "WIKIPAGE": "http://blake.bcm.tmc.edu/emanwiki/EMAN2/Programs/e2ctf",
10 "NAME": "Automated Fitting -e2ctf",
11 "NOTELEVEL": "1",
12 "CHILDREN": []
13 },
To:
1 "ICON": "ctf",
2 "TABLE": "EMCTFcorrectedParticlesTable(withmodal=False,multiselect=True)",
3 "NAME": "CTF",
4 "CHILDREN": [
5 {
6 "ICON": "ctf",
7 "PROGRAM": "e2ctf.py",
8 "MODE": "autofit",
9 "WIKIPAGE": "http://blake.bcm.tmc.edu/emanwiki/EMAN2/Programs/e2ctf",
10 "NAME": "Automated Fitting -e2ctf",
11 "NOTELEVEL": "1",
12 "WIZARD":"/lib/pmconfig/ctfauto.json",
13 "CHILDREN": []
14 },
Note that the wizard file, ctfauto.json, is in the directory lib/pmconfig, and that the relative path is given. This path is the path AFTER the build. If you are working with source code, the wizard JSON file should be in /libEM/pmconfig, but after building and installation it will be in /lib/pmconfig.
Writing the wizard
The Wizard file is a JSON file containing list of dicts. In addition to standard JSON syntax, you can add comments using