scipion-pyworkflow 3.6.0__tar.gz → 3.8.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- scipion_pyworkflow-3.8.0/CHANGES.txt +400 -0
- scipion_pyworkflow-3.8.0/MANIFEST.in +6 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/PKG-INFO +40 -17
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/README.rst +26 -4
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/apps/pw_protocol_list.py +15 -24
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/config.py +33 -1
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/constants.py +5 -1
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/canvas.py +38 -14
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/dialog.py +43 -33
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/form.py +25 -16
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/gui.py +1 -1
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/matplotlib_image.py +19 -6
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/plotter.py +1 -1
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/project/constants.py +3 -1
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/project/project.py +4 -14
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/project/searchprotocol.py +5 -4
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/project/searchrun.py +25 -9
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/project/variables.py +2 -2
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/project/viewdata.py +9 -10
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/project/viewprotocols.py +88 -68
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/text.py +4 -2
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/tree.py +3 -1
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/mapper/__init__.py +0 -1
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/mapper/mapper.py +6 -4
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/mapper/sqlite.py +64 -14
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/object.py +24 -6
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/plugin.py +23 -51
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/project/project.py +54 -15
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/project/scripts/config.py +1 -1
- scipion_pyworkflow-3.8.0/pyworkflow/project/scripts/fix_links.py +39 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/project/scripts/refresh.py +3 -4
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/project/scripts/stack2volume.py +1 -1
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/project/scripts/stop.py +2 -2
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/protocol/executor.py +8 -38
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/protocol/launch.py +36 -4
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/protocol/params.py +1 -1
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/protocol/protocol.py +45 -10
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/template.py +108 -58
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/utils/process.py +4 -4
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/utils/properties.py +2 -3
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/utils/utils.py +13 -16
- scipion_pyworkflow-3.8.0/pyworkflow/webservices/workflowhub.py +74 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflowtests/objects.py +6 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflowtests/protocols.py +5 -3
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflowtests/tests/test_mappers.py +0 -30
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflowtests/tests/test_object.py +20 -18
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflowtests/tests/test_utils.py +2 -38
- scipion_pyworkflow-3.8.0/requirements.txt +12 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/scipion_pyworkflow.egg-info/PKG-INFO +40 -17
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/scipion_pyworkflow.egg-info/SOURCES.txt +2 -1
- scipion_pyworkflow-3.8.0/scipion_pyworkflow.egg-info/dependency_links.txt +1 -0
- scipion_pyworkflow-3.8.0/scipion_pyworkflow.egg-info/requires.txt +18 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/setup.py +3 -3
- scipion_pyworkflow-3.6.0/MANIFEST.in +0 -12
- scipion_pyworkflow-3.6.0/pyworkflow/mapper/xmlmapper.py +0 -264
- scipion_pyworkflow-3.6.0/pyworkflow/project/scripts/fix_links.py +0 -43
- scipion_pyworkflow-3.6.0/requirements.txt +0 -11
- scipion_pyworkflow-3.6.0/scipion_pyworkflow.egg-info/dependency_links.txt +0 -1
- scipion_pyworkflow-3.6.0/scipion_pyworkflow.egg-info/requires.txt +0 -15
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/LICENSE.txt +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/__init__.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/apps/__init__.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/apps/pw_manager.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/apps/pw_plot.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/apps/pw_project.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/apps/pw_protocol_run.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/apps/pw_run_tests.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/apps/pw_schedule_run.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/apps/pw_sleep.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/apps/pw_sync_data.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/apps/pw_viewer.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/exceptions.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/__init__.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/browser.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/graph.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/graph_layout.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/project/__init__.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/project/base.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/project/labels.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/project/steps.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/project/utils.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/project/viewprojects.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/project/viewprotocols_extra.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/tooltip.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/gui/widgets.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/mapper/sqlite_db.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/project/__init__.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/project/config.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/project/manager.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/project/scripts/clean_projects.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/project/scripts/create.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/project/scripts/edit_workflow.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/project/scripts/load.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/project/scripts/schedule.py +1 -1
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/protocol/__init__.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/protocol/bibtex.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/protocol/constants.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/protocol/hosts.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/protocol/package.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/Imagej.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/chimera.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/fa-exclamation-triangle_alert.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/fa-info-circle_alert.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/fa-search.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/fa-times-circle_alert.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/file_vol.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/loading.gif +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/no-image128.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/scipion_bn.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/scipion_icon.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/scipion_icon.svg +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/scipion_icon_proj.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/scipion_icon_projs.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/scipion_icon_prot.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/scipion_logo.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/scipion_logo_normal.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/scipion_logo_small.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/arrowDown.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/arrowUp.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/background_section.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/colRowModeOff.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/colRowModeOn.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/delete.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/doc_icon.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/download_icon.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/enabled_gallery.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/galleryViewOff.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/galleryViewOn.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/goto.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/menu.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/separator.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/tableViewOff.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/tableViewOn.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/volumeOff.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/showj/volumeOn.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/sprites.png +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/sprites.xcf +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/resources/wait.gif +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/tests/__init__.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/tests/test_utils.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/tests/tests.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/utils/__init__.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/utils/dataset.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/utils/echo.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/utils/graph.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/utils/log.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/utils/path.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/utils/profiler.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/utils/progressbar.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/utils/reflection.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/utils/which.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/viewer.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/webservices/__init__.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/webservices/config.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/webservices/notifier.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/webservices/repository.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflow/wizard.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflowtests/__init__.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflowtests/bibtex.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflowtests/tests/__init__.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflowtests/tests/test_canvas.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflowtests/tests/test_domain.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflowtests/tests/test_logs.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflowtests/tests/test_project.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflowtests/tests/test_protocol_execution.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflowtests/tests/test_protocol_export.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflowtests/tests/test_protocol_output.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/pyworkflowtests/tests/test_streaming.py +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/scipion_pyworkflow.egg-info/entry_points.txt +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/scipion_pyworkflow.egg-info/top_level.txt +0 -0
- {scipion_pyworkflow-3.6.0 → scipion_pyworkflow-3.8.0}/setup.cfg +0 -0
@@ -0,0 +1,400 @@
|
|
1
|
+
V3.8.0
|
2
|
+
users:
|
3
|
+
- Inform when a plugin does not import properly
|
4
|
+
developers:
|
5
|
+
- Handling the name and the suffix to be used for a new output
|
6
|
+
- New method: Config.isCondaInstallation
|
7
|
+
|
8
|
+
V3.7.0
|
9
|
+
users:
|
10
|
+
- Add protocol is an icon.
|
11
|
+
- Right clik on canvas offers to add a protocol on the clicked location.
|
12
|
+
- Scipion log is a project.log (only for project events)
|
13
|
+
- Variables window saves non default variables changed (bug)
|
14
|
+
- Queue interoperability review:
|
15
|
+
- jobs cancelled in the queue are detected in scipion
|
16
|
+
- job and pids handling improved, pids = 0 when use queue for protocol rely on jobid
|
17
|
+
- Change Protocols Lock to Rlocks objects to avoid concurrency when updating the protocols jobid
|
18
|
+
- add information in the protocol log regarding execution type (pid or jobid)f
|
19
|
+
- Streaming protocols based on new streaming (generation steps) are resumable
|
20
|
+
- Avoiding a double process when launching a workflow using the protocol form
|
21
|
+
- pyworkflowtest tests fixed
|
22
|
+
- GUI will detect when protocols processes have been killed(cancelled) in all cases?
|
23
|
+
- fix outdated pyworkflow scripts
|
24
|
+
- scipion3 template (template manager) lists workflows at workflowhub.eu from "Scipion CNB" organization
|
25
|
+
- Join heterogeneous sets are possible for tomography objects TS and tomograms.
|
26
|
+
developers:
|
27
|
+
- Canvas has a testing method: _drawGrid to draw a grid on the canvas (unused now)
|
28
|
+
- String.toSeconds:converts to seconds any "duration" string like "1h 4m 34s" -> 3600 + 240 + 34.
|
29
|
+
- ListDialog has a refresh method to refresh the content taking into account the filter
|
30
|
+
- Improve the DDBB lock in the method "_store". If Protocol._lock is locked, a nullcontext is used instead of another
|
31
|
+
Protocol._lock context, which causes a permanent lock.
|
32
|
+
- XmlMapper removed.
|
33
|
+
- FlatMapper instanatiation centralized:
|
34
|
+
New variable: SCIPION_MAPPER_USE_TEMPLATE. By default uses the template as it was now. If deacivated, instantiation happens on each iteration (less performant) but dev friendly
|
35
|
+
- Adding a parameter to launch jobs (e.g: bash)
|
36
|
+
- Handling item-click event in the treeview dialog
|
37
|
+
- Method copyAttributes expanded to manage the complex sets properly
|
38
|
+
|
39
|
+
V3.6.0
|
40
|
+
users:
|
41
|
+
- Window to see/edit config variables. Launched from Project menu in project window.
|
42
|
+
- Fix installation error: matplotlib imported at installation time
|
43
|
+
- Fixing an error drawing the graph
|
44
|
+
developers:
|
45
|
+
- FileBrowser window tweaks: Can be called from a dialog.
|
46
|
+
- Windows can be called as dialogs with show(modal=True)
|
47
|
+
- askPath: Method to ask for a path (PATH, FOLDER or BASENAME)
|
48
|
+
- backup: Method in pyworkflow.utils.path to backup files
|
49
|
+
- All variables are centralized and Plugin._defineVar or _defineEmVar accept variable description, and type (VarTypes enum) to better describe the variable.
|
50
|
+
- ProgressBar handles the step in combination with increase method call
|
51
|
+
- Set.aggregate more flexible and versatile.
|
52
|
+
Accepts strings or lists in operations, labels or groupby args.
|
53
|
+
Accepts id or _objId ar fields
|
54
|
+
- String.getListFromValues: works now with strings with an x inside (e.g.: _x _y)
|
55
|
+
- New utils method: valueToList (converts the argument into a list if is not a list): Useful for "dual type arguments) that can be a list or not
|
56
|
+
|
57
|
+
V3.5.0
|
58
|
+
------
|
59
|
+
users:
|
60
|
+
- New Icons.
|
61
|
+
- Icons based on sprites, easier to resize or customized
|
62
|
+
- New variable: SCIPION_SPRITES_FILE to point to a custom sprite. It should be compatible with sprites.png at pyworkflow/resources.
|
63
|
+
- Scipion GUI log moved to the log tabs and removed from menu
|
64
|
+
- New variable: SCIPION_SHOW_TEXT_IN_TOOLBAR, set it to anything to show the text of the icons below
|
65
|
+
- New variable: SCIPION_ICON_ZOOM, defaults to 50 (percent) to show icons at 16x16. 100 will set them to 32 or 75 to 24.
|
66
|
+
- Icons in toolbar grouped. Better row height adjustment in trees.
|
67
|
+
- Improved handling of the case where protocols steps are send to the queue, fix stop protocol functionality
|
68
|
+
developers:
|
69
|
+
- ProjectConfig class removed
|
70
|
+
- New methods in path: hasChangedSince and isFileFinished
|
71
|
+
- New method in utils: strToDuration (useful to translate "1h 35m" to seconds). For duration parameters.
|
72
|
+
- New class Variable to be tested in Config class. A step towards a Config editing GUI.
|
73
|
+
- SCIPION_DEBUG_SQLITE rescued to activate SQL clauses in debug.
|
74
|
+
- Active jobs are stored in the 'jobIds' protocol variable. Iteration through these job IDs allows for canceling each active job sent to the queue.
|
75
|
+
- Implemented cleaning of old protocol job IDs and PIDs.
|
76
|
+
- Extending the ToolbarDialog buttons. Now is possible to define a tooltip and a shortcut
|
77
|
+
- Viewers has getName class method.
|
78
|
+
- Object.getClassName is now a class method
|
79
|
+
- Validating the Close method in the Dialog class. Now we can to reimplement de validateClose method.
|
80
|
+
- Better case-specific implementation of pID and jobID. Three scenarios: normal execution, sending the entire protocol to the queue, or sending individual steps.
|
81
|
+
- Object.clone a copy optionally clones the enable flag
|
82
|
+
- Set.getItem: returns the first item with a value in the fields passed. Useful for querying by TsId in tomo.
|
83
|
+
- Correctly update the protocols in streaming workflows when the input pointer points to a protocol, the protocol points to a set (i.e., classes), and this set points to another set (i.e., particles).
|
84
|
+
|
85
|
+
V3.4.0
|
86
|
+
------
|
87
|
+
users:
|
88
|
+
- Prevent cyclic loops in protocols. Cannot chose as input, as output that is derived or will be derived from the current protocol.
|
89
|
+
- Tolerate cyclic loops saved projects projects, disconnecting the "problematic" protocol.
|
90
|
+
developers:
|
91
|
+
- Dialog class: add lockGui input to allow the viewers to prevent getting the screen focus if desired.
|
92
|
+
|
93
|
+
V3.3.1
|
94
|
+
------
|
95
|
+
users:
|
96
|
+
- Steps window can force finish steps too. Useful for some CS cases.
|
97
|
+
- "Continue workflow" from improved. Works with more cases.
|
98
|
+
- Fix output deletion when right-clicking on an output compatible with this option.
|
99
|
+
developers:
|
100
|
+
- Set class has isItemEnabled to be used as callback based on item.isEnabled()
|
101
|
+
- config.py.OS class (not for GUI): to return distro info (isCentos or isUbuntu) or isWSL (--> new dependency "distro")"...
|
102
|
+
|
103
|
+
V3.3.0
|
104
|
+
------
|
105
|
+
users:
|
106
|
+
- Boxes from Plugins in devel mode are prefixed with * now (not delta anymore)
|
107
|
+
- Partial exporting/copying will carry also the input of those protocols not being exported
|
108
|
+
- Partial importing/pasting will be linked to existing protocols in the project with the same id.
|
109
|
+
- Fix: Scheduling failed with direct pointers (impossible to get form GUI but programming or tests)
|
110
|
+
- tests: possible to use " tomo." (e.g.) to test just a plugin. Unfortunately needs adaptation in the launcher
|
111
|
+
- "Return" keypress "clicks" the active button in a window
|
112
|
+
- Avoid adding the same viewer twice
|
113
|
+
|
114
|
+
developers:
|
115
|
+
- Control and Shift keypress are captured when clicking in analyze result button and passed to the viewer.
|
116
|
+
- Project.getProtocol() has a fromRuns mode to prevent going to the db. Used in a couple of calls.(performance)
|
117
|
+
- Plotter.createSubPlot: allow plots without axis passing xlabel and ylabel as None
|
118
|
+
- Tolerate type change in attributes in protocol execution processes.
|
119
|
+
- Fixing an error when loading a project where it is not possible to retrieve the current version of an installed plugin
|
120
|
+
|
121
|
+
V3.2.0
|
122
|
+
------
|
123
|
+
users:
|
124
|
+
- Templates validate booleans properly (false, true, 0 or 1)
|
125
|
+
- Labels and box positions are saved after Labels being edited.
|
126
|
+
- scipion3 project list (or without list) should list existing projects.
|
127
|
+
- Windows are grouped by project under the project name.
|
128
|
+
- Do not allow empty Config variables unless is the default value
|
129
|
+
- SCIPION_MAIN_COLOR: If not valid, fallsback to Firebrick
|
130
|
+
- Project names: Only accepts digits, "letters", - or _. Rest are turned into -
|
131
|
+
- Fix wrong PARALLEL_COMMAND in hosts.conf created during tests.
|
132
|
+
- SCIPION_USE_QUEUE: New variable (default=False). If defined to anything else than False, new protocols will be sent to queue by default.
|
133
|
+
|
134
|
+
developers:
|
135
|
+
- Tolerate loading of extra set properties but WARN the developer.
|
136
|
+
- ListDialog: allows for a preview panel on the right if previewCallback is passed.
|
137
|
+
- SQL DEBUG deprecated: active when regular debug is on.
|
138
|
+
- Boolean Config variables refactored to be "reversible".
|
139
|
+
- Show info id debug mode (print) when an infinite loop happens in the protocols graph
|
140
|
+
V3.1.1
|
141
|
+
------
|
142
|
+
- Hotfix: Fix resume single. Protocol was reset.
|
143
|
+
|
144
|
+
V3.1.0
|
145
|
+
------
|
146
|
+
users:
|
147
|
+
- New optional config variable: SCIPION_MAIN_COLOR. Any medium tone color name or hexadecimal should work(like in CSS)
|
148
|
+
- New optional config variable: SCIPION_BG_COLOR. Any light tone color name or hexadecimal should work(like in CSS)
|
149
|
+
- Control + Plus (numpad) will increase the font of the logs. Control + subtract will restore it.
|
150
|
+
- Toolbar and actions refactored: Most of them have shortcuts and appear in the toolbar without text, but have tooltips showing the shortcut
|
151
|
+
- Plugins in devel mode are shown with a delta suffix after the package name.
|
152
|
+
- Green lines in log are lighter, colored lines are back in the log.
|
153
|
+
- Commands in the log are "announced" by "** Running command: **"
|
154
|
+
- Project list window: F5 on the filter box will refresh the list.
|
155
|
+
- Project list window: Auto refresh on window activate when data is older than 60 seconds
|
156
|
+
- New actions: Copy (Control+c) and Paste (Control +v) will allow to copy the selection to and from the clipboard.
|
157
|
+
- File browser thumbnail: Writes if the file is a link
|
158
|
+
- Protocol in devel mode is shown prefixing the protocol in the box and shown in log
|
159
|
+
- Unused graphical gui nodes are cleaned up upon protocols deletion and graph painting (to clean up old projects)
|
160
|
+
- Error in host.conf for clusters better described.
|
161
|
+
- Fixed a bug related to organizing the workflow when importing a template(Import workflow template option)
|
162
|
+
- Terminal where Scipion is being launched only shows ERROR level info. Rest goes to scipion.log shown by the Scipion log menu.
|
163
|
+
- Scipion windows of the same process are now grouped under the same icon. Window Tooltip says Scipion framework instead of Toplevel
|
164
|
+
- Refactoring Restart & Continue workflow option. Allowing to continue and restart a workflow from a protocol
|
165
|
+
|
166
|
+
|
167
|
+
developers:
|
168
|
+
- Plugin.inDevelMode(): returns true is plugin installed in devel mode.
|
169
|
+
- Shortcut for devel mode is now Control+D since Control+d is for duplicate (old copy)
|
170
|
+
- Protocol.getClassPlugin deprecated. Use instead getPlugin()
|
171
|
+
- Protocol._cleanExtraFiles(): optional method to clean files other than tmp folder.
|
172
|
+
- Config.isScipionRunning(): To distinguish from just importing or running.
|
173
|
+
- Set implements copy() leaving mapper_path out.
|
174
|
+
- TaseCase: compareSetProperties() added to compare 2 set's properties.
|
175
|
+
- Add debugging messages to check the job status and add renameGpuIds method in the StepQueueExecutor
|
176
|
+
|
177
|
+
V3.0.32
|
178
|
+
-------
|
179
|
+
- Hotfix: fix links more versatile.
|
180
|
+
V3.0.31
|
181
|
+
-------
|
182
|
+
- Hotfix: Fixed updated protocol icon
|
183
|
+
|
184
|
+
V3.0.30
|
185
|
+
-------
|
186
|
+
users:
|
187
|
+
- File browser: error while getting the preview thumbnail are reported as the preview string and logged.
|
188
|
+
- Wrong status when updating: When scheduling protocols, they were wrongly showed as failure temporarily.
|
189
|
+
|
190
|
+
|
191
|
+
developers:
|
192
|
+
- Using logger in executor.py
|
193
|
+
- Fix: --overwrite problem. CONDA_ACTIVATION_CMD was disappearing form the config
|
194
|
+
- Fix: plugin manager error. wait.png renamed to wait.gif
|
195
|
+
- Improvement: Tolerate protocol loading when attribute type is changed by developers.
|
196
|
+
- CONDA_ACTIVATION_CMD is now a Config variable.
|
197
|
+
- Flag to indicate if steps list has new steps. Useful for new streaming approach.
|
198
|
+
- Base streaming protocol: ProtStreamingBase.
|
199
|
+
|
200
|
+
V3.0.29
|
201
|
+
-------
|
202
|
+
users:
|
203
|
+
- Fix: with some host.conf, where current working dir is not "transferred" to the node, execution failed when
|
204
|
+
creating the logs cause they where relative. Now they (log paths) are passed to pw_protocol_run as absolute paths
|
205
|
+
|
206
|
+
V3.0.28
|
207
|
+
-------
|
208
|
+
users:
|
209
|
+
- Fix: rare error making subsets of self referencing output.
|
210
|
+
- Schedule process: Logging starts from the very beginning. Better feedback when there is an error.
|
211
|
+
- Message is shown in project's info log when discovering viewers for the firs time.
|
212
|
+
- Fix: Expert level pointers not clearer anymore after copying or deacivating expert level.
|
213
|
+
- Protocol list output improved --> scipion3 protocols --with-doc
|
214
|
+
- Scheduling: more informative log lines.
|
215
|
+
- Exporting a workflow does not show the final confirmation dialog (just a log line)
|
216
|
+
- Font size responsive in file browser text box.
|
217
|
+
developers:
|
218
|
+
- Fix: rare error when loading pointers with extended from the database
|
219
|
+
- More modules using logging: gui/project.py, mapper/sqlite.py
|
220
|
+
- Pointer.set: optional parameter to cancel extended reset. Used from mapper.
|
221
|
+
- Pyworkflow Domain now is operational. Still ED plugins needs adaptation.
|
222
|
+
- String class offers getListFromRange and getListFromValues for convenience when param any ot the Ranges
|
223
|
+
- getListFromValues, returns str list as before, but optionally you can pass a caster (int, float,..)
|
224
|
+
- GE validator: tolerates None values.
|
225
|
+
- Form.addBoolean() helper added to facilitate Boolean param definitions. TODO: Do it with the rest?
|
226
|
+
- dependencies updated
|
227
|
+
- icons changed to png 32, so transparency is understood by pillow latest version
|
228
|
+
- unused icons removed
|
229
|
+
- icon names all centralized in Icon class
|
230
|
+
- getImage: caches the images, rename gif to png.
|
231
|
+
|
232
|
+
V3.0.27
|
233
|
+
-------
|
234
|
+
Users:
|
235
|
+
- Fixing an error refreshing the workflow:
|
236
|
+
* the protocol status changed intermittently
|
237
|
+
- "Use queue?" label and help reworded and linked to documentation site
|
238
|
+
- "Wait for" label and help reworded and linked to documentation site
|
239
|
+
- Fix: New protocols, without sibilings were wrongly located at the top.
|
240
|
+
|
241
|
+
|
242
|
+
V3.0.26 (hotfix)
|
243
|
+
-------
|
244
|
+
- Reporting url is now pointing to https.
|
245
|
+
|
246
|
+
V3.0.25 (hotfix)
|
247
|
+
-------
|
248
|
+
- Fix logger error when downloading a new dataset.
|
249
|
+
|
250
|
+
V3.0.24 (hotfix)
|
251
|
+
-------
|
252
|
+
- Do not fail when getting the size of an empty protocol.
|
253
|
+
|
254
|
+
V3.0.23
|
255
|
+
-------
|
256
|
+
Users:
|
257
|
+
- Fixing a bug for static protocols: when a protocol had another protocol as input, it failed to wait until it had finished.
|
258
|
+
- Improvements in responsiveness to font size: Tables and automatic layouts. Object browser, Search windows.
|
259
|
+
- Filebrowser has 2 new shortcuts: "recent" and "Protocol folder"
|
260
|
+
- Text widget: "File does not exist message" removed.
|
261
|
+
- Rescue colors in terminal
|
262
|
+
- Rescue output in tests.
|
263
|
+
- New color mode: Size (GREEN < 1MB, ORANGE < 1GB, RED < 1TB, DARK > 1TB
|
264
|
+
- Color mode info is shown in the "info line" when switching
|
265
|
+
- Color mode age: fixed.
|
266
|
+
- New config variables:
|
267
|
+
SCIPION_LOG_FORMAT: Define log lines format base on python convention,
|
268
|
+
SCIPION_TEST_NOSYNC: Disable dataset syncing,
|
269
|
+
SCIPION_GUI_REFRESH_INITIAL_WAIT: Initial time to wait after a manual refresh. Defaults to 5.
|
270
|
+
SCIPION_GUI_CANCEL_AUTO_REFRESH: True will cancel automatic refreshes.
|
271
|
+
- scipion printenv returns also int variables.
|
272
|
+
- Tolerate project update errors (e.g.: read only filesystem due to quota + update)
|
273
|
+
- Check if scheduled process is alive when updating.
|
274
|
+
|
275
|
+
Developers:
|
276
|
+
- Some modules switched to use logger instead of print: viewprotocols.py, browser.py and launch.py,
|
277
|
+
pw_schedule_run.py, viewprojects.py, canvas.py, project.py, protocol.py.
|
278
|
+
- LoggerConfigurator adapted to received logfile, flag for console handler and line format.
|
279
|
+
- pw_run_tests.py uses logging now.
|
280
|
+
- tests mode with --log now works. All goes to the same file and is not html.
|
281
|
+
- Protocol.getPath added = Protocol._getPath
|
282
|
+
- form.py, process.py, pw_sync_data.py, utils.py use logging now.
|
283
|
+
- All logging messages are affected by SCIPION_LOG_FORMAT (defaults to %(message)).
|
284
|
+
- stdout handler does exclude ERROR and CRITICAL messages.
|
285
|
+
- Test output can be sent to a log file (--log) and uses SCIPION_LOG_FORMAT.
|
286
|
+
- testdata --check-all renamed to --check and optionally can check a single dataset.
|
287
|
+
|
288
|
+
V3.0.22
|
289
|
+
-------
|
290
|
+
- Fixing a persistent error related with the logic of the EXECUTE/SCHEDULE button
|
291
|
+
|
292
|
+
|
293
|
+
V3.0.21
|
294
|
+
-------
|
295
|
+
- Generating an interface to create the scipion log file.
|
296
|
+
- Creating an option to display the scipion log
|
297
|
+
- New "Search protocol in graph" (Control + l) window to locate a box in the graph
|
298
|
+
- At loading time, selected protocol is "focused" (window scrolls to it)
|
299
|
+
- Control + MouseWheel scrolls horizontally
|
300
|
+
- Links are also detected when they are just "http"
|
301
|
+
- Bugfixed: Input list is shown when there are possible outputs and need to "expose details" (like selecting a specific volume in a set)
|
302
|
+
- Bugfixed: Outputs that a numeric do not break the "Browse object window"
|
303
|
+
- Fixing an error related with the logic of the EXECUTE/SCHEDULE button
|
304
|
+
|
305
|
+
Developers:
|
306
|
+
- prerequisites could be just the id or the previous list of ids when adding a step.
|
307
|
+
|
308
|
+
V3.0.20
|
309
|
+
-------
|
310
|
+
- Empty sections/subsection (without protocols) in the left tree will not be shown
|
311
|
+
|
312
|
+
Developers:
|
313
|
+
- Allow pointers to be defined with a list of classes instead of a string: "SetOfParticles, SetOfAverages" or [ SetOfParticles, SetOfAverages ]
|
314
|
+
- Two "utils" functions: hasAnyFileChanged, hasFileChangedSince to check if a file/s have changed since a "time" passed.
|
315
|
+
- BaseTest now has: setupTestOutput exposed --> self.setupTestOutput()
|
316
|
+
- Allow getting an item in a set not only by id but by a query: myset["_tsId=tomo1"].
|
317
|
+
|
318
|
+
|
319
|
+
V3.0.19
|
320
|
+
-------
|
321
|
+
- Scalar parameters pointing to outputs now works also when scheduling
|
322
|
+
- Fix: outputs after a Scalar output (boxSize from pickings) weren't offered to the chosen
|
323
|
+
- Defining a new format to handler the log
|
324
|
+
- Creating in the config new constants to prevent sqlite locks when updating any set
|
325
|
+
- SCIPION_UPDATE_SET_ATTEMPTS: Number of attempts when trying a set update. The default value is 3
|
326
|
+
- SCIPION_UPDATE_SET_ATTEMPT_WAIT: Time in seconds to wait between updates. The default value is 2 seconds
|
327
|
+
|
328
|
+
Developers:
|
329
|
+
- In _showWizard, passing the paramName as a form variable so the wizard can check from which parameter it was called
|
330
|
+
|
331
|
+
|
332
|
+
V3.0.18
|
333
|
+
-------
|
334
|
+
- Fixed GUI errors:
|
335
|
+
- fixing the workflow collapse/expand nodes
|
336
|
+
- resetting nodes with manual subset looses the parent
|
337
|
+
- reporting the protocol wall time
|
338
|
+
- finished protocol can't be modified
|
339
|
+
- Fixed: execute a protocol directly that is not streaming and that has an open input must be scheduled
|
340
|
+
- Close all sets when stopping a protocol
|
341
|
+
- fixing an error closing some viewers(the action of closing some viewers closes Scipion completely)
|
342
|
+
- fixing an error drawing the protocols step tree
|
343
|
+
- fixing an error deleting a protocol by the keyboard
|
344
|
+
- logging DEBUG mode will be activated when toggling debug mode
|
345
|
+
- A dramatic plugin import error will be tolerated. Plugin will not be loaded.
|
346
|
+
- Possible outputs definition is now possible. Protocols can define possible outputs to allow designing
|
347
|
+
a workflow in advance without executing them.
|
348
|
+
- New variable added: SCIPION_STEPS_CHECK_SEC. Defaults to 3 (seconds). It represents how often new input is checked in streamified protocols. Increasing this
|
349
|
+
value will relax the stress in the system, but will feel less "alive".
|
350
|
+
- Workflow templates can now be imported into an existing project
|
351
|
+
|
352
|
+
Developers:
|
353
|
+
- Possible Outputs allowed: dict or enum definition possible, see Protocol._possibleOutput
|
354
|
+
- Allow readonly parameters in protocols. Useful in combination with wizards or just informative parameters.
|
355
|
+
- Added the variable SCIPION_PRIORITY_PACKAGE_LIST that is used in the view
|
356
|
+
protocols in order to load first the plugins that contains the main
|
357
|
+
protocols.conf sections. This variable is defined as string with the packages names separated by a space.
|
358
|
+
e.g: SCIPION_PRIORITY_PACKAGE_LIST = "pwem tomo cistem"
|
359
|
+
|
360
|
+
|
361
|
+
v3.0.17
|
362
|
+
-------
|
363
|
+
- Second tab of logs have just error messages (stderr output)
|
364
|
+
- Tests show stderr output too (last lines)
|
365
|
+
- Report host.conf submit command problems when parsing/formatting fails
|
366
|
+
|
367
|
+
Developers:
|
368
|
+
- Logging mechanism closer to a standard way. import logging + logging.getLogger() whould work in any module
|
369
|
+
|
370
|
+
|
371
|
+
v3.0.16
|
372
|
+
-------
|
373
|
+
- Do not suggest deleteing hosts-conf when parsing fails
|
374
|
+
- "Select from" option in context menu to select all protocols hanging from the current selection.
|
375
|
+
- Schedule optimized
|
376
|
+
- dataset download more verbose
|
377
|
+
- pyworkflow version shown in main project window
|
378
|
+
- new color chooser. More user friendly
|
379
|
+
- Viewers are not asked to open outputs generated by themselves. In case a viewer creates an output.
|
380
|
+
- File browser shows links
|
381
|
+
- File browser allow multiple file handlers for the same extension
|
382
|
+
|
383
|
+
Developers:
|
384
|
+
- weakImport tool: context manager to tolerate import errors
|
385
|
+
|
386
|
+
-------
|
387
|
+
v3.0.15
|
388
|
+
-------
|
389
|
+
- Cancel fastcopy of shutil if SCIPION_CANCEL_FASTCOPY is defined (fix GPFS copying errors)
|
390
|
+
Developers:
|
391
|
+
- Allow renaming parameters using pyworkflow.protocol.params.DeprecatedParam
|
392
|
+
|
393
|
+
-------
|
394
|
+
v3.0.13
|
395
|
+
-------
|
396
|
+
|
397
|
+
April 21, 2021:
|
398
|
+
- GUI performance and speed up
|
399
|
+
- Improvement of the scheduling process
|
400
|
+
- Fixed the options: Restart, Continue, Reset and Stop a workflow
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: scipion-pyworkflow
|
3
|
-
Version: 3.
|
3
|
+
Version: 3.8.0
|
4
4
|
Summary: Simple workflow platform used in scientific applications, initially developed within the Scipion framework for image processing in Electron Microscopy.
|
5
5
|
Home-page: https://github.com/scipion-em/scipion-pyworkflow
|
6
6
|
Author: J.M. De la Rosa Trevin, Roberto Marabini, Grigory Sharov, Josue Gomez Blanco, Pablo Conesa, Yunior Fonseca Reyna
|
@@ -8,33 +8,56 @@ Author-email: delarosatrevin@scilifelab.se, roberto@cnb.csic.es, gsharov@mrc-lmb
|
|
8
8
|
Project-URL: Bug Reports, https://github.com/scipion-em/scipion-pyworkflow/issues
|
9
9
|
Project-URL: Source, https://github.com/scipion-em/scipion-pyworkflow/
|
10
10
|
Keywords: workflows science electron-microscopy cryo-em structural-biology image-processing scipion
|
11
|
-
Classifier: Development Status ::
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
12
12
|
Classifier: Intended Audience :: Science/Research
|
13
13
|
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
14
|
-
Classifier: Programming Language :: Python :: 3.6
|
15
|
-
Classifier: Programming Language :: Python :: 3.7
|
16
14
|
Classifier: Programming Language :: Python :: 3.8
|
17
15
|
Classifier: Programming Language :: Python :: 3.9
|
18
16
|
Classifier: Programming Language :: Python :: 3.10
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
19
19
|
Classifier: Topic :: Scientific/Engineering
|
20
20
|
License-File: LICENSE.txt
|
21
|
-
Requires-Dist: bibtexparser<=1.
|
22
|
-
Requires-Dist: psutil<=5.9.
|
23
|
-
Requires-Dist: configparser
|
24
|
-
Requires-Dist: matplotlib==3.3
|
25
|
-
Requires-Dist: matplotlib==3.
|
26
|
-
Requires-Dist:
|
27
|
-
Requires-Dist:
|
28
|
-
Requires-Dist:
|
29
|
-
Requires-Dist: requests
|
21
|
+
Requires-Dist: bibtexparser<=1.4.1
|
22
|
+
Requires-Dist: psutil<=5.9.6
|
23
|
+
Requires-Dist: configparser==6.0.0; python_version >= "3.8"
|
24
|
+
Requires-Dist: matplotlib==3.7.3; python_version == "3.8"
|
25
|
+
Requires-Dist: matplotlib==3.8.1; python_version >= "3.9"
|
26
|
+
Requires-Dist: pillow==10.1.0; python_version >= "3.8"
|
27
|
+
Requires-Dist: numpy==1.24.4; python_version == "3.8"
|
28
|
+
Requires-Dist: numpy==1.26.1; python_version >= "3.9"
|
29
|
+
Requires-Dist: requests==2.31.0; python_version >= "3.8"
|
30
30
|
Requires-Dist: tkcolorpicker
|
31
31
|
Requires-Dist: distro<=1.8
|
32
|
+
Requires-Dist: importlib-metadata<=6.8.0
|
32
33
|
|
33
|
-
.. image:: https://img.shields.io/
|
34
|
-
|
35
|
-
|
36
|
-
|
34
|
+
.. image:: https://img.shields.io/pypi/v/scipion-pyworkflow.svg
|
35
|
+
:target: https://pypi.python.org/pypi/scipion-pyworkflow
|
36
|
+
:alt: PyPI release
|
37
|
+
|
38
|
+
.. image:: https://sonarcloud.io/api/project_badges/measure?project=scipion-em_scipion-pyworkflow&metric=alert_status
|
39
|
+
:alt: Quality Gate Status
|
40
|
+
:target: https://sonarcloud.io/summary/new_code?id=scipion-em_scipion-pyworkflow
|
41
|
+
|
42
|
+
.. image:: https://img.shields.io/sonar/quality_gate/scipion-em_scipion-pyworkflow?server=https%3A%2F%2Fsonarcloud.io
|
43
|
+
:target: https://sonarcloud.io/dashboard?id=scipion-em_scipion-pyworkflow
|
44
|
+
:alt: SonarCloud quality gate
|
45
|
+
|
46
|
+
.. image:: https://img.shields.io/pypi/l/scipion-pyworkflow.svg
|
47
|
+
:target: https://pypi.python.org/pypi/scipion-pyworkflow
|
48
|
+
:alt: License
|
37
49
|
|
50
|
+
.. image:: https://img.shields.io/pypi/pyversions/scipion-pyworkflow.svg
|
51
|
+
:target: https://pypi.python.org/pypi/scipion-pyworkflow
|
52
|
+
:alt: Supported Python versions
|
53
|
+
|
54
|
+
.. image:: https://img.shields.io/pypi/dm/scipion-pyworkflow
|
55
|
+
:target: https://pypi.python.org/pypi/scipion-pyworkflow
|
56
|
+
:alt: Downloads
|
57
|
+
|
58
|
+
.. image:: https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg
|
59
|
+
:alt: Contributor Covenant
|
60
|
+
:target: https://www.contributor-covenant.org/version/2/0/code_of_conduct/
|
38
61
|
|
39
62
|
pyworkflow
|
40
63
|
==========
|
@@ -1,8 +1,30 @@
|
|
1
|
-
.. image:: https://img.shields.io/
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
.. image:: https://img.shields.io/pypi/v/scipion-pyworkflow.svg
|
2
|
+
:target: https://pypi.python.org/pypi/scipion-pyworkflow
|
3
|
+
:alt: PyPI release
|
4
|
+
|
5
|
+
.. image:: https://sonarcloud.io/api/project_badges/measure?project=scipion-em_scipion-pyworkflow&metric=alert_status
|
6
|
+
:alt: Quality Gate Status
|
7
|
+
:target: https://sonarcloud.io/summary/new_code?id=scipion-em_scipion-pyworkflow
|
8
|
+
|
9
|
+
.. image:: https://img.shields.io/sonar/quality_gate/scipion-em_scipion-pyworkflow?server=https%3A%2F%2Fsonarcloud.io
|
10
|
+
:target: https://sonarcloud.io/dashboard?id=scipion-em_scipion-pyworkflow
|
11
|
+
:alt: SonarCloud quality gate
|
12
|
+
|
13
|
+
.. image:: https://img.shields.io/pypi/l/scipion-pyworkflow.svg
|
14
|
+
:target: https://pypi.python.org/pypi/scipion-pyworkflow
|
15
|
+
:alt: License
|
5
16
|
|
17
|
+
.. image:: https://img.shields.io/pypi/pyversions/scipion-pyworkflow.svg
|
18
|
+
:target: https://pypi.python.org/pypi/scipion-pyworkflow
|
19
|
+
:alt: Supported Python versions
|
20
|
+
|
21
|
+
.. image:: https://img.shields.io/pypi/dm/scipion-pyworkflow
|
22
|
+
:target: https://pypi.python.org/pypi/scipion-pyworkflow
|
23
|
+
:alt: Downloads
|
24
|
+
|
25
|
+
.. image:: https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg
|
26
|
+
:alt: Contributor Covenant
|
27
|
+
:target: https://www.contributor-covenant.org/version/2/0/code_of_conduct/
|
6
28
|
|
7
29
|
pyworkflow
|
8
30
|
==========
|
@@ -63,15 +63,11 @@ def hasDoubleInheritance(classRef):
|
|
63
63
|
if __name__ == '__main__':
|
64
64
|
count = 0
|
65
65
|
withDoc = '--with-doc' in sys.argv
|
66
|
-
asciidoc = '--asciidoc' in sys.argv
|
67
66
|
extended = '--extended' in sys.argv
|
67
|
+
ai = '--ai' in sys.argv
|
68
68
|
|
69
69
|
emProtocolsDict = Config.getDomain().getProtocols()
|
70
|
-
|
71
|
-
('Micrographs', ProtMicrographs, []),
|
72
|
-
('Particles', ProtParticles, []),
|
73
|
-
('2D', Prot2D, []),
|
74
|
-
('3D', Prot3D, [])]
|
70
|
+
|
75
71
|
protDict = {}
|
76
72
|
|
77
73
|
# Group protocols by package name
|
@@ -90,10 +86,6 @@ if __name__ == '__main__':
|
|
90
86
|
else:
|
91
87
|
protTuple = (k, v)
|
92
88
|
protDict[packageName].append(protTuple)
|
93
|
-
for c in emCategories:
|
94
|
-
if issubclass(v, c[1]):
|
95
|
-
c[2].append(protTuple)
|
96
|
-
|
97
89
|
|
98
90
|
def iterGroups(protDict):
|
99
91
|
groups = list(protDict.keys())
|
@@ -111,20 +103,7 @@ if __name__ == '__main__':
|
|
111
103
|
print("* link:%s[%s]: %s" % (k, l, doc))
|
112
104
|
|
113
105
|
|
114
|
-
if
|
115
|
-
print(":toc:\n:toc-placement!:\n\ntoc::[]\n")
|
116
|
-
|
117
|
-
print("\n== By Categories\n")
|
118
|
-
for c in emCategories:
|
119
|
-
print("\n=== %s\n" % c[0])
|
120
|
-
printProtocols(c[2])
|
121
|
-
|
122
|
-
print("\n== By Packages\n")
|
123
|
-
for group, prots in iterGroups(protDict):
|
124
|
-
print("\n=== ", group, "(%d protocols)\n" % len(prots))
|
125
|
-
printProtocols(prots)
|
126
|
-
|
127
|
-
elif withDoc:
|
106
|
+
if withDoc:
|
128
107
|
for group, prots in iterGroups(protDict):
|
129
108
|
print("Package: ", group, "(%d protocols)" % len(prots))
|
130
109
|
for p in prots:
|
@@ -144,6 +123,18 @@ if __name__ == '__main__':
|
|
144
123
|
for p in prots:
|
145
124
|
print(formatStr.format(group, p[0],
|
146
125
|
p[1].getClassLabel(), *p[2:]))
|
126
|
+
elif ai:
|
127
|
+
for group, prots in iterGroups(protDict):
|
128
|
+
for protClassName, protClass in prots:
|
129
|
+
print("\nThe protocol named \"%s\" can be found in the %s plugin." %(protClass._label, group))
|
130
|
+
print("\"%s\" protocol help is as follows:\n %s." % (protClass._label, protClass.__doc__))
|
131
|
+
instance = protClass()
|
132
|
+
|
133
|
+
for name, param in instance._definition.iterParams():
|
134
|
+
print("\"%s\" has a \"%s\" parameter that is explained as: %s" % (protClass._label, param.label, param.help))
|
135
|
+
|
136
|
+
|
137
|
+
|
147
138
|
else:
|
148
139
|
formatStr = "{:<15}\t{:<35}\t{:<35}"
|
149
140
|
print(formatStr.format("PACKAGE", "PROTOCOL", "LABEL"))
|
@@ -87,12 +87,17 @@ class Variable:
|
|
87
87
|
self.source = source
|
88
88
|
self.value = value
|
89
89
|
self.default = default
|
90
|
+
self.isDefault = isDefault if isDefault is not None else self._isValueDefault()
|
90
91
|
self.var_type = var_type
|
91
|
-
self.isDefault = isDefault if isDefault is not None else value==default
|
92
92
|
def setToDefault(self):
|
93
93
|
self.isDefault=True
|
94
94
|
self.value=self.default
|
95
95
|
|
96
|
+
def setValue(self, new_value):
|
97
|
+
self.value = new_value
|
98
|
+
self.isDefault= self._isValueDefault()
|
99
|
+
def _isValueDefault(self):
|
100
|
+
return self.value==self.default
|
96
101
|
class VariablesRegistry:
|
97
102
|
_variables={}
|
98
103
|
|
@@ -272,6 +277,10 @@ class Config:
|
|
272
277
|
|
273
278
|
SCIPION_NOTES_ARGS = _get(SCIPION_NOTES_ARGS, None)
|
274
279
|
|
280
|
+
# External text editor:
|
281
|
+
SCIPION_TEXT_EDITOR = _get(SCIPION_TEXT_EDITOR, '',
|
282
|
+
"Preferred text editor executable.", caster=str)
|
283
|
+
|
275
284
|
# Aspect
|
276
285
|
SCIPION_FONT_NAME = _get('SCIPION_FONT_NAME', "Helvetica",
|
277
286
|
"Name of the font to use in Scipion GUI. Defaults to Helvetica.")
|
@@ -346,6 +355,10 @@ class Config:
|
|
346
355
|
2: Run a single protocol
|
347
356
|
3: Run a sub-workflow """, caster=int)
|
348
357
|
|
358
|
+
SCIPION_MAPPER_USE_TEMPLATE = _get('SCIPION_MAPPER_USE_TEMPLATE', TRUE_STR,
|
359
|
+
"Set it to False to force instantiation for each item during sets iterations. Experimental. This penalize the iteration but avoids"
|
360
|
+
"the use of .clone() ot the items.") == TRUE_STR
|
361
|
+
|
349
362
|
try:
|
350
363
|
VIEWERS = ast.literal_eval(_get('VIEWERS', "{}", "Json string to define which viewer are the default ones per output type."))
|
351
364
|
except Exception as e:
|
@@ -514,6 +527,25 @@ class Config:
|
|
514
527
|
like registering FileHandlers or other stuff not needed when just importing modules."""
|
515
528
|
return cls.SCIPION_HOME_DEFINED != False
|
516
529
|
|
530
|
+
@classmethod
|
531
|
+
def isCondaInstallation(cls):
|
532
|
+
""" Returns true if the scipion installation is done using conda"""
|
533
|
+
|
534
|
+
# Get the CONDA_PYTHON_EXE
|
535
|
+
# NOTE: This will not work when calling scipion python directly! But should works using the launcher.
|
536
|
+
envFolder = os.environ.get("CONDA_PREFIX", None)
|
537
|
+
|
538
|
+
# No conda variable... virtualenv installation!!
|
539
|
+
if envFolder is None:
|
540
|
+
return False
|
541
|
+
else:
|
542
|
+
from pyworkflow.utils import getPython
|
543
|
+
# Conda available.... let's check if it is active the same scipion env
|
544
|
+
condaExe = os.path.join(envFolder, "bin", "python")
|
545
|
+
return condaExe == getPython()
|
546
|
+
|
547
|
+
|
548
|
+
|
517
549
|
|
518
550
|
# Add bindings folder to sys.path
|
519
551
|
sys.path.append(Config.getBindingsFolder())
|