bigclust2 0.1.0__py3-none-any.whl

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.
Files changed (42) hide show
  1. bigclust2/__init__.py +15 -0
  2. bigclust2/__version__.py +1 -0
  3. bigclust2/assets/button_fullscreen.png +0 -0
  4. bigclust2/assets/button_split_horizontal.png +0 -0
  5. bigclust2/assets/button_split_vertical.png +0 -0
  6. bigclust2/clusters.py +1318 -0
  7. bigclust2/data.py +1146 -0
  8. bigclust2/embeddings.py +914 -0
  9. bigclust2/figure.py +391 -0
  10. bigclust2/grow_shrink.py +458 -0
  11. bigclust2/gui/__init__.py +2 -0
  12. bigclust2/gui/controls/__init__.py +1 -0
  13. bigclust2/gui/controls/scatter_control.py +5324 -0
  14. bigclust2/gui/controls/toggle_dialog.py +128 -0
  15. bigclust2/gui/core.py +4697 -0
  16. bigclust2/gui/loaders.py +426 -0
  17. bigclust2/gui/project.py +73 -0
  18. bigclust2/gui/tabs.py +73 -0
  19. bigclust2/gui/widgets/__init__.py +0 -0
  20. bigclust2/gui/widgets/annotation_backends.py +826 -0
  21. bigclust2/gui/widgets/annotations.py +1695 -0
  22. bigclust2/gui/widgets/connectivity.py +1012 -0
  23. bigclust2/gui/widgets/distances.py +712 -0
  24. bigclust2/gui/widgets/features.py +3700 -0
  25. bigclust2/gui/widgets/labels.py +1514 -0
  26. bigclust2/gui/widgets/meta_explorer.py +572 -0
  27. bigclust2/gui/widgets/meta_sources.py +714 -0
  28. bigclust2/gui/widgets/project_details.py +67 -0
  29. bigclust2/meta_sources.py +504 -0
  30. bigclust2/neuroglancer.py +1077 -0
  31. bigclust2/plotly_export.py +414 -0
  32. bigclust2/scatter.py +2914 -0
  33. bigclust2/selection.py +528 -0
  34. bigclust2/utils.py +586 -0
  35. bigclust2/visuals.py +343 -0
  36. bigclust2-0.1.0.dist-info/METADATA +165 -0
  37. bigclust2-0.1.0.dist-info/RECORD +42 -0
  38. bigclust2-0.1.0.dist-info/WHEEL +5 -0
  39. bigclust2-0.1.0.dist-info/entry_points.txt +2 -0
  40. bigclust2-0.1.0.dist-info/licenses/LICENSE +674 -0
  41. bigclust2-0.1.0.dist-info/top_level.txt +2 -0
  42. bigclust2_launcher.py +39 -0
bigclust2/__init__.py ADDED
@@ -0,0 +1,15 @@
1
+ import os
2
+ import sys
3
+
4
+ # Suppress octarine's warning about event loop potentially not running
5
+ os.environ['OCTARINE_CHECK_LOOP'] = '0'
6
+
7
+ # Some feedback for the user that stuff is happening, especially when running from the command line
8
+ __context__ = "cli" if 'bigclust2' in sys.argv[0] else "gui"
9
+ if __context__ == "cli":
10
+ print("Loading bigclust2... ", end="", flush=True)
11
+
12
+ from .gui import main
13
+
14
+ if __context__ == "cli":
15
+ print("done.", flush=True)
@@ -0,0 +1 @@
1
+ __version__ = "0.1.0"
Binary file