Josh Moore

Results 193 issues of Josh Moore

migrate code from openmicroscopy and fix flake8 see: https://github.com/ome/openmicroscopy/pull/5914/commits/8442eedafb964fec72ac3b6a8b08a67799bfcab8 https://forum.image.sc/t/set-user-default-group-from-command-line/35171 ---- Adding a parameter to set a user's default group when joining a new group, and a helper function to...

Rather than needing to update omero-py each time a new env variable needs passing to a script, this adds the ``` omero.processor.env_vars ``` property which can be updated. Likely needs...

Initial work on a jstack command which allows `omero admin jstack` to determine the pid of the given process ("Blitz-0" by default) and pass that to the local `jstack` tool....

see: https://github.com/conda-forge/omero-py-feedstock/pull/11 [omero.install.logs_library](https://github.com/ome/omero-py/blob/107ce62991a4ab1235b97b86a870920661beda5b/src/omero/install/logs_library.py#L21) imports matplotlib which was detected by conda-forge and added as a dependency. This work could either be removed or migrated to a standalone application.

see: - https://github.com/ome/omero-py/pull/242 (temp location) - https://github.com/ome/omero-py/pull/303 (fetch URL) * [ ] clean up old `~/omero/jars` (or detect them and warn the user) - current location (`/Users/jamoore/Library/Caches/OMERO.py/5/jars/`) * [ ]...

see: https://forum.image.sc/t/ghost-files-taking-storage-space-in-omero/48029/6 `omero admin cleanse` could (by default or optionally) find imported filesets which have no associated images. Such filesets are almost always the result of a failed import, and...

The exit codes used throughout the CLI plugins are assigned randomly. Though it would be a breaking change, it would be useful to define a much smaller number of codes...

It should be easier to load a lower-resolution tile from the `getTile` method rather than: ``` # Get info on number of levels and sizes print([(r.sizeX, r.sizeY) for r in...

see: https://github.com/ome/omero-py/pull/48 By downloading the contents of OMERO dist's `etc/` directory, the unit tests could be made to run.

Goal is to enable and widely use ``` with someMethod() as cb: cb.getResponse() ``` since the current uses of this form all leave a callback in the session: ``` @@...