Size: 5041
Comment:
|
Size: 5040
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 40: | Line 40: |
The Wizard file is a JSON file containing list of dicts. In addition to standard JSON syntax, you can add comments using //* */ and //. | The Wizard file is a JSON file containing list of dicts. In addition to standard JSON syntax, you can add comments using /* */ and //. |
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