Skip to content
Snippets Groups Projects
Select Git revision
  • e80de23d6c074057da96ba7f5c6eda8fb509fa85
  • main default protected
  • bbb5500-main-patch-36389
  • revert-7da2dce8
4 results

Visualization.ipynb

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    root_dir.py 268 B
    #!/usr/bin/env python3
    
    '''
    helper script for getting the root directory of phybema
    
    '''
    
    import os.path
    
    def phybema_root_dir():
      # Path to this dir
      this_dir = os.path.dirname(os.path.abspath(__file__))
      # Path to the root dir
      return os.path.split(this_dir)[0]