This file contains 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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>load demo</title> | |
<style> | |
body { | |
font-size: 12px; | |
font-family: Arial; | |
} |
This file contains 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, os, traceback | |
import omero.gateway | |
import time, datetime | |
from omero.rtypes import * | |
from omero.rtypes import unwrap | |
host = "localhost" | |
port = 4064 |
This file contains 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
using: | |
FROM maven:3.3.3-jdk-8 | |
WORKDIR /usr/src/app/bf.git | |
ONBUILD RUN mvn install -DskipTests | |
CMD ["mvn", "install", "-DskipTests"] | |
maven_1 | [INFO] Scanning for projects... | |
maven_1 | Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-webdav-jackrabbit/1.0/wagon-webdav-jackrabbit-1.0.pom | |
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-webdav-jackrabbit/1.0/wagon-webdav-jackrabbit-1.0.pom (4 KB at 17.6 KB/sec) |
This file contains 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
FILE: docker-compose2.yml | |
version: '2' | |
services: | |
test: | |
image: openmicroscopy/omero-ssh-daemon-c7:0.1.1 | |
ports: | |
- "2222:22" | |
test2: |
This file contains 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
FILE:docker-compose.yml | |
test: | |
image: openmicroscopy/omero-ssh-daemon-c7:0.1.1 | |
ports: | |
- "2222:22" | |
test2: | |
image: openmicroscopy/omero-ssh-daemon-c7:0.1.1 | |
ports: | |
- "2223:22" |
This file contains 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
http://users.openmicroscopy.org.uk/~atarkowska/viewer.html | |
idr-demo.openmicroscopy.org/webgateway/render_thumbnail/122770/96/ | |
http://idr-demo.openmicroscopy.org/webclient/?show=image-122770 | |
This file contains 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
(ansible) MacBookPro:DOCKER ola$ ansible-playbook -i infrastructure/ansible/inventory/openstack.py -l ola-test-training -vv -u centos infrastructure/ansible/training-server.yml | |
No config file found; using defaults | |
PLAYBOOK: training-server.yml ************************************************** | |
1 plays in infrastructure/ansible/training-server.yml | |
PLAY [localhost, all] ********************************************************** | |
TASK [setup] ******************************************************************* | |
ok: [b11acd75-ea3c-4459-9d75-61bb04d141a6] |
This file contains 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
pip install git+git://github.com/aleksandra-tarkowska/mapannotations.git. | |
/home/omero/OMERO.web/bin/omero config set omero.web.apps # wipe | |
/home/omero/OMERO.web/bin/omero config append omero.web.apps '"mapr"' | |
/home/omero/OMERO.web/bin/omero config set omero.web.ui.top_links '[["IDR", {"viewname": "webindex", "query_string": {"experimenter": -1}}, {"title": "Image Data Repository"}], ["Genes", {"viewname": "maprindex_gene", "query_string": {"experimenter": -1}}, {"title": "Genes browser"}], ["Phenotypes", {"viewname": "maprindex_phenotype", "query_string": {"experimenter": -1}}, {"title": "Phenotypes browser"}], ["siRNA", {"viewname": "maprindex_sirna", "query_string": {"experimenter": -1}}, {"title": "siRNA browser"}], ["Compound", {"viewname": "maprindex_compound", "query_string": {"experimenter": -1}}, {"title": "Compound browser"}], ["History", "history", {"title": "History"}], ["About", "/about/"], ["Help", "http://help.openmicroscopy.org/", {"title":"Open OMERO user guide in a new tab", "target":"new"}]] |
This file contains 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
# COUNT | |
2016-11-03 09:53:01,116 DEBUG [ omero_mapr.tree] (proc.00091) count_mapannotations():196 HQL QUERY: | |
select | |
count(distinct mv.value) as childCount | |
from ImageAnnotationLink ial | |
join ial.child a | |
join a.mapValue mv | |
join ial.parent i | |
left outer join i.wellSamples ws | |
left outer join i.datasetLinks dil |
This file contains 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.rtypes import * | |
host = "localhost" | |
port = 4064 | |
userpass = "ome" | |
user = "demo" | |
c = omero.client(host=host, port=port) |