Skip to content

Commit aded3cc

Browse files
committed
Merge branch 'master' of github.com:CellProfiler/python-bioformats
2 parents 2d48723 + ba0881d commit aded3cc

File tree

3 files changed

+24
-12
lines changed

3 files changed

+24
-12
lines changed

bioformats/__init__.py

Lines changed: 23 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,29 @@
3232
to the Java virtual machine's class path."""
3333

3434
# See http://www.loci.wisc.edu/software/bio-formats
35-
READABLE_FORMATS = ('al3d', 'am', 'amiramesh', 'apl', 'arf', 'avi', 'bmp',
36-
'c01', 'cfg', 'cxd', 'dat', 'dcm', 'dicom', 'dm3', 'dv',
37-
'eps', 'epsi', 'fits', 'flex', 'fli', 'gel', 'gif', 'grey',
38-
'hdr', 'html', 'hx', 'ics', 'ids', 'img', 'ims', 'ipl',
39-
'ipm', 'ipw', 'jp2', 'jpeg', 'jpg', 'l2d', 'labels', 'lei',
40-
'lif', 'liff', 'lim', 'lsm', 'mdb', 'mnc', 'mng', 'mov',
41-
'mrc', 'mrw', 'mtb', 'naf', 'nd', 'nd2', 'nef', 'nhdr',
42-
'nrrd', 'obsep', 'oib', 'oif', 'ome', 'ome.tiff', 'pcx',
43-
'pgm', 'pic', 'pict', 'png', 'ps', 'psd', 'r3d', 'raw',
44-
'scn', 'sdt', 'seq', 'sld', 'stk', 'svs', 'tif', 'tiff',
45-
'tnb', 'txt', 'vws', 'xdce', 'xml', 'xv', 'xys', 'zvi')
35+
READABLE_FORMATS = ('1sc', '2fl', 'acff', 'afi', 'afm', 'aim', 'al3d', 'ali',
36+
'am', 'amiramesh', 'apl', 'arf', 'avi', 'bif', 'bin', 'bip',
37+
'bmp', 'btf', 'c01', 'cfg', 'ch5', 'cif', 'cr2', 'crw',
38+
'cxd', 'czi', 'dat', 'dcm', 'dib', 'dicom', 'dm2', 'dm3',
39+
'dm4', 'dti', 'dv', 'eps', 'epsi', 'exp', 'fdf', 'fff',
40+
'ffr', 'fits', 'flex', 'fli', 'frm', 'gel', 'gif', 'grey',
41+
'h5', 'hdf', 'hdr', 'hed', 'his', 'htd', 'html', 'hx', 'i2i',
42+
'ics', 'ids', 'im3', 'img', 'ims', 'inr', 'ipl', 'ipm', 'ipw',
43+
'j2k', 'jp2', 'jpeg', 'jpf', 'jpg', 'jpk', 'jpx', 'klb',
44+
'l2d', 'labels', 'lei', 'lif', 'liff', 'lim', 'lms', 'lsm',
45+
'map', 'mdb', 'mea', 'mnc', 'mng', 'mod', 'mov', 'mrc', 'mrcs',
46+
'mrw', 'msr', 'mtb', 'mvd2', 'naf', 'nd', 'nd2', 'ndpi', 'ndpis',
47+
'nef', 'nhdr', 'nii', 'nii.gz', 'nrrd', 'obf', 'obsep', 'oib',
48+
'oif', 'oir', 'ome', 'ome.btf', 'ome.tf2', 'ome.tf8', 'ome.tif',
49+
'ome.tiff', 'ome.xml', 'par', 'pbm', 'pcoraw', 'pcx', 'pds',
50+
'pgm', 'pic', 'pict', 'png', 'pnl', 'ppm', 'pr3', 'ps', 'psd',
51+
'qptiff', 'r3d', 'raw', 'rcpnl', 'rec', 'res', 'scn', 'sdt',
52+
'seq', 'sif', 'sld', 'sm2', 'sm3', 'spc', 'spe', 'spi', 'st',
53+
'stk', 'stp', 'svs', 'sxm', 'tc.', 'tf2', 'tf8', 'tfr', 'tga',
54+
'tif', 'tiff', 'tnb', 'top', 'txt', 'v', 'vff', 'vms', 'vsi',
55+
'vws', 'wat', 'wlz', 'wpi', 'xdce', 'xml', 'xqd', 'xqf', 'xv',
56+
'xys', 'zfp', 'zfr', 'zvi')
57+
4658
WRITABLE_FORMATS = ('avi', 'eps', 'epsi', 'ics', 'ids', 'jp2', 'jpeg', 'jpg',
4759
'mov', 'ome', 'ome.tiff', 'png', 'ps', 'tif', 'tiff')
4860

5.86 MB
Binary file not shown.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
install_requires=[
2222
"boto3>=1.14.23",
2323
"future>=0.18.2",
24-
"python-javabridge==4.0.0"
24+
"python-javabridge==4.0.1"
2525
],
2626
license="GPL License",
2727
long_description="""Python-bioformats is a Python wrapper for Bio-Formats, a standalone Java library for reading

0 commit comments

Comments
 (0)