Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

finalize_pipeline.py 984 B

12345678910111213141516171819202122
  1. from view.python_core.processing_pipelines import PipelineManager
  2. # this tells view all settings including the folder structure of your project
  3. # On Windows, if you copy paths from the file explorer, make sure the string below is always of the form r"......"
  4. ymlfile = r"/home/aj/SharedWithWindows/view_test_data/MS_LSM/usage_lsm.yml"
  5. # specify the pipeline definition file to use
  6. pipelines_definition_file \
  7. = r"/home/aj/SharedWithWindows/view_test_data/MS_LSM/progs/pipelines_settings/processing_pipelines.yml"
  8. # specify the animals whose data is to be processed; and their corresponding pipelines
  9. animals = {
  10. # "<animal name>": <pipeline name>,
  11. "2020_02_06_OK107_GCaMP6f": 'pipeline2'
  12. }
  13. for animal, pipeline2finalize in animals.items():
  14. pipeline_manager = PipelineManager(project_yml_file=ymlfile, animal=animal,
  15. pipelines_config_file=pipelines_definition_file)
  16. pipeline_manager.finalize_pipeline(pipeline2finalize)