This gist has migrated to https://github.com/openmicroscopy/snoopycrimecop
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
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by GNU C Runtime Library configure 1.0, which was | |
generated by GNU Autoconf 2.64. Invocation command line was | |
$ ../../../../libgcc/configure --with-multisubdir=x86_64 --with-multisrctop= --enable-multilib --cache-file=./config.cache --enable-multilib --prefix=/usr/local/Cellar/gfortran/4.7.2/gfortran --datarootdir=/usr/local/Cellar/gfortran/4.7.2/share --bindir=/usr/local/Cellar/gfortran/4.7.2/bin --with-system-zlib --with-gmp=/usr/local/opt/gmp --with-mpfr=/usr/local/opt/mpfr --with-mpc=/usr/local/opt/libmpc --enable-checking=release --disable-stage1-checking --disable-build-poststage1-with-cxx --disable-libstdcxx-pc --disable-nls --enable-languages=c,fortran --program-transform-name=s,y,y, --disable-option-checking --with-target-subdir=i386-apple-darwin10.8.0 --build=i386-apple-darwin10.8.0 --host=i386-apple-darwin10.8.0 --target=i386-apple-darwin10.8.0 --srcdir=. |
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
% Create MovieData object from image file stored on disk | |
MD = MovieData.load(fullfile(path, 'myimage.dv')); | |
% Manipulate the movie, e.g. retrieve the first image of the first channel | |
I = MD.getChannel(1).loadImage(1); | |
% Remove all analysis performed on the movie | |
MD.reset(); | |
% Set up single-particle tracking package |
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
% Create a reader from a nd2 file | |
filepath = fullfile(getenv('HOME'), 'bernhard', '962.nd2'); | |
fprintf(1, 'Loading %s\n', filepath); | |
% Load the reader. In the case of very large files, the call to setId() | |
% in the bfGetReader() should be the limiting step | |
r = bfGetReader(filepath); | |
% Retrieve the metadata store for metadata reading | |
metadata = r.getMetadataStore(); |
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
from scc.git import get_github, get_token | |
from scc.git import PullRequest | |
gh = get_github(get_token()) | |
# List all PRs in the organizations | |
orgs = ["openmicroscopy", "ome"] | |
print "Listing all PRs in organizations: %s" % ", ".join(orgs) | |
all_prs = [] | |
for org in orgs: |
This gist has migrated to https://github.com/openmicroscopy/snoopycrimecop
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
diff --git a/build.xml b/build.xml | |
index 907abd3..bda6efb 100644 | |
--- a/build.xml | |
+++ b/build.xml | |
@@ -1121,7 +1121,7 @@ omero.version=${omero.version} | |
<propertyregex property="version.describe" input="${fullversion}" regexp="@{regexp}" select="@{select}"/> | |
</try> | |
<catch> | |
- <echo>UNKNOWN</echo> | |
+ <echo>5.0.0-rc2</echo> |