rename_finalized_components.py 537 B

1234567891011
  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/MR_Till/usage_till_linux.yml"
  5. # specify the animals whose components are to be renamed
  6. animal = "MR_190510b_or47a"
  7. pipeline_manager = PipelineManager(project_yml_file=ymlfile, animal=animal)
  8. pipeline_manager.rename_components_via_gui()