- webgateway/base_site.html
- webgateway/core_html.html
- webgateway/base_frame.html
- webclient/annotations/annotations_share.html *Right panel share NB: metadata_general DOES NOT extend core_html.html
- webclient/annotations/batch_annotate.html *Right panel
- webclient/annotations/download_placeholder.html Dialog for original files download
- webclient/scripts/no_processor.html
- webclient/scripts/script_ui.html
- webgateway/viewport/omero_image.html
- webadmin/forgotten_password.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from omero.gateway import BlitzGateway | |
from omeroweb.webgateway.marshal import imageMarshal | |
import json | |
from cStringIO import StringIO | |
import omero | |
from omero.rtypes import wrap, rlong | |
from omero.gateway import OriginalFileWrapper | |
conn = BlitzGateway("will", "ome", host="localhost", port=4064) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copy the config locally so we don't lose it | |
cp dist/etc/grid/config.xml config.xml | |
# Delete all previous symlinks, so that 'clean' doesn't delete src code | |
rm dist/lib/python/omeroweb | |
rm dist/lib/python/omero/gateway | |
rm components/tools/target/lib/python/omeroweb | |
rm components/tools/target/lib/python/omero/gateway | |
rm components/tools/OmeroPy/target/omero/testlib/ | |
rm components/tools/OmeroPy/target/omero/gateway |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
""" | |
Create File Annotations from Original Metadata. | |
See https://www.openmicroscopy.org/community/viewtopic.php?f=4&t=1226 | |
""" | |
import omero |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# DOCKER OMERO | |
$ cd Desktop/OMERO-INSTALL/omero-install/ | |
$ git fetch origin | |
$ git checkout origin/develop | |
$ cd linux/test | |
$ ./docker-build.sh ubuntu1604_nginx | |
... | |
+ OMEROVER=latest | |
+ WEBAPPS=false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# From e-mail: http://lists.openmicroscopy.org.uk/pipermail/ome-devel/2017-October/004076.html | |
# We upload and run an OMERO.script | |
# that can connect to another remote OMERO server. | |
from omero.gateway import BlitzGateway | |
import omero | |
USERNAME = "root" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let bend = 0 | |
let speed = 0 | |
radio.onDataPacketReceived( ({ receivedString: name, receivedNumber: value }) => { | |
if (name == "bend") { | |
basic.showLeds(` | |
. . . . . | |
. # . # . | |
# # # # # | |
. # . # . | |
. . . . . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See https://www.openmicroscopy.org/community/viewtopic.php?f=4&t=8397#p18758 | |
import omero | |
from omero.gateway import BlitzGateway | |
from omero.model import InstrumentI, MicroscopeI, ObjectiveSettingsI, ObjectiveI | |
from omero.rtypes import rstring, rdouble | |
conn = BlitzGateway("user", "password", host="server.org", port=4064) | |
conn.connect() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See https://www.openmicroscopy.org/community/viewtopic.php?f=4&t=8397#p18758 | |
import omero.scripts as scripts | |
import omero | |
from omero.gateway import BlitzGateway | |
from omero.model import InstrumentI, MicroscopeI, ObjectiveSettingsI, ObjectiveI | |
from omero.rtypes import rstring, rdouble, rlong | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import omero | |
from omero.gateway import BlitzGateway | |
from omero.model.enums import UnitsTime | |
from omero.model import PlaneInfoI | |
from omero.rtypes import rint, unwrap | |
conn = BlitzGateway("user", "password", host="eel.openmicroscopy.org", port=14064) |