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 java.io.File; | |
import java.io.FileOutputStream; | |
import java.io.IOException; | |
import java.util.Arrays; | |
import java.util.List; | |
import Glacier2.CannotCreateSessionException; | |
import Glacier2.PermissionDeniedException; | |
import omero.ServerError; |
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
#!/bin/bash | |
set -e | |
set -u | |
DIR=$1 | |
shift | |
OMERO_GIT=${OMERO_URL:-git://github.com/joshmoore/homebrew.git} | |
OMERO_URL=${OMERO_URL:-https://github.com/joshmoore/homebrew/tarball/omero} |
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
#!/usr/bin/env python | |
# encoding: utf-8 | |
""" | |
Performs various performance metrics and reports on PixelData log files. | |
""" | |
# Copyright (C) 2011 University of Dundee | |
# This program is free software; you can redistribute it and/or |
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 loci.formats.in.DefaultMetadataOptions; | |
import loci.formats.in.MetadataLevel; | |
import ome.formats.OMEROMetadataStoreClient; | |
import ome.formats.importer.ImportConfig; | |
import ome.formats.importer.cli.ErrorHandler; | |
import ome.formats.importer.cli.LoggingImportMonitor; | |
import omero.model.Dataset; | |
public class OmeroImport { |
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
# | |
# To be run in OMERO CLI shell as follows: | |
# | |
# # Download script to current working directory | |
# omero shell --login | |
# ... | |
# %run -i edit_plate.py plate_id attribute value | |
# | |
import sys |
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 time | |
import omero | |
import omero.clients | |
from omero.rtypes import unwrap | |
HOST='localhost' | |
PORT=4064 | |
USER='root' |
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
#!/bin/bash | |
set -e | |
set -u | |
set -x | |
HOSTNAME="localhost" | |
DATABASE="omero" | |
USER="omero-x" | |
THIRTY_DAYS_AGO="$(date -d '30 days ago' '+%Y-%m-%d %H:%M:00')" |
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
#!/usr/bin/env python | |
import traceback | |
import fcntl | |
import sys | |
import os | |
try: | |
d, = sys.argv[1:] | |
except ValueError: | |
print 'Usage: %s <directory>' % sys.argv[0] |
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
-- Copyright (C) 2013 Glencoe Software, Inc. All rights reserved. | |
-- | |
-- This program is free software; you can redistribute it and/or modify | |
-- it under the terms of the GNU General Public License as published by | |
-- the Free Software Foundation; either version 2 of the License, or | |
-- (at your option) any later version. | |
-- | |
-- This program is distributed in the hope that it will be useful, | |
-- but WITHOUT ANY WARRANTY; without even the implied warranty of | |
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
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
-- Copyright (C) 2013 Glencoe Software, Inc. All rights reserved. | |
-- | |
-- This program is free software; you can redistribute it and/or modify | |
-- it under the terms of the GNU General Public License as published by | |
-- the Free Software Foundation; either version 2 of the License, or | |
-- (at your option) any later version. | |
-- | |
-- This program is distributed in the hope that it will be useful, | |
-- but WITHOUT ANY WARRANTY; without even the implied warranty of | |
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
OlderNewer