File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ GitHub repository: https://github.com/CellProfiler/python-bioformats
1515
1616Report bugs here: https://github.com/CellProfiler/python-bioformats/issues
1717
18- python-bioformats is licensed under the BSD license. See the
19- accompanying file LICENSE for details.
18+ python-bioformats is licensed under the GNU General Public License
19+ (GPL). Many files are licensed under the more permissive BSD license.
20+ See the accompanying files COPYING and LICENSE for details.
2021
2122Copyright (c) 2009-2014 Broad Institute. All rights reserved.
Original file line number Diff line number Diff line change 1- '''Bioformats package - wrapper for loci.bioformats java code
2-
3- CellProfiler is distributed under the GNU General Public License,
4- but this file is licensed under the more permissive BSD license.
5- See the accompanying file LICENSE for details.
1+ # Python-bioformats is distributed under the GNU General Public
2+ # License, but this file is licensed under the more permissive BSD
3+ # license. See the accompanying file LICENSE for details.
4+ #
5+ # Copyright (c) 2009-2014 Broad Institute
6+ # All rights reserved.
67
7- Copyright (c) 2003-2009 Massachusetts Institute of Technology
8- Copyright (c) 2009-2013 Broad Institute
9- All rights reserved.
10-
11- Please see the AUTHORS file for credits.
8+ '''Bioformats package - wrapper for loci.bioformats java code
129
13- Website: http://www.cellprofiler.org
1410'''
1511__version__ = "$Revision$"
1612
Original file line number Diff line number Diff line change 1+ # Python-bioformats is distributed under the GNU General Public
2+ # License, but this file is licensed under the more permissive BSD
3+ # license. See the accompanying file LICENSE for details.
4+ #
5+ # Copyright (c) 2009-2014 Broad Institute
6+ # All rights reserved.
7+
18'''formatreader.py - mechanism to wrap a bioformats ReaderWrapper and ImageReader
29
310Example:
1320 my_red_image, my_green_image, my_blue_image = \
1421 [cs.open_bytes(cs.getIndex(0,i,0)) for i in range(3)]
1522
16- CellProfiler is distributed under the GNU General Public License,
17- but this file is licensed under the more permissive BSD license.
18- See the accompanying file LICENSE for details.
19-
20- Copyright (c) 2003-2009 Massachusetts Institute of Technology
21- Copyright (c) 2009-2014 Broad Institute
22- All rights reserved.
23-
24- Please see the AUTHORS file for credits.
25-
26- Website: http://www.cellprofiler.org'
2723'''
2824
2925__version__ = "$Revision$"
Original file line number Diff line number Diff line change 1+ # Python-bioformats is distributed under the GNU General Public
2+ # License, but this file is licensed under the more permissive BSD
3+ # license. See the accompanying file LICENSE for details.
4+ #
5+ # Copyright (c) 2009-2014 Broad Institute
6+ # All rights reserved.
7+
18'''formatwriter.py - mechanism to wrap a bioformats WriterWrapper and ImageWriter
29
310The following file formats can be written using Bio-Formats:
2128and is especially useful for formats that do not support multiple images per
2229file.
2330
24- CellProfiler is distributed under the GNU General Public License,
25- but this file is licensed under the more permissive BSD license.
26- See the accompanying file LICENSE for details.
27-
28- Copyright (c) 2003-2009 Massachusetts Institute of Technology
29- Copyright (c) 2009-2014 Broad Institute
30- All rights reserved.
31-
32- Please see the AUTHORS file for credits.
33-
34- Website: http://www.cellprofiler.org
3531'''
3632
3733__version__ = "$Revision$"
Original file line number Diff line number Diff line change 1+ # Python-bioformats is distributed under the GNU General Public
2+ # License, but this file is licensed under the more permissive BSD
3+ # license. See the accompanying file LICENSE for details.
4+ #
5+ # Copyright (c) 2009-2014 Broad Institute
6+ # All rights reserved.
7+
18import unittest
29import javabridge
310
Original file line number Diff line number Diff line change 1- ''' metadatatools.py - mechanism to wrap some bioformats metadata classes
2-
3- CellProfiler is distributed under the GNU General Public License,
4- but this file is licensed under the more permissive BSD license.
5- See the accompanying file LICENSE for details.
1+ # Python-bioformats is distributed under the GNU General Public
2+ # License, but this file is licensed under the more permissive BSD
3+ # license. See the accompanying file LICENSE for details.
4+ #
5+ # Copyright (c) 2009-2014 Broad Institute
6+ # All rights reserved.
67
7- Copyright (c) 2003-2009 Massachusetts Institute of Technology
8- Copyright (c) 2009-2014 Broad Institute
9- All rights reserved.
10-
11- Please see the AUTHORS file for credits.
8+ ''' metadatatools.py - mechanism to wrap some bioformats metadata classes
129
13- Website: http://www.cellprofiler.org
1410'''
1511
1612__version__ = "$Revision$"
Original file line number Diff line number Diff line change 1- # CellProfiler is distributed under the GNU General Public License.
2- # See the accompanying file LICENSE for details.
1+ # Python-bioformats is distributed under the GNU General Public
2+ # License, but this file is licensed under the more permissive BSD
3+ # license. See the accompanying file LICENSE for details.
34#
4- # Copyright (c) 2003-2009 Massachusetts Institute of Technology
5- # Copyright (c) 2009-2013 Broad Institute
6- #
7- # Please see the AUTHORS file for credits.
8- #
9- # Website: http://www.cellprofiler.org
5+ # Copyright (c) 2009-2014 Broad Institute
6+ # All rights reserved.
107
118import logging
129from nose .plugins import Plugin
Original file line number Diff line number Diff line change 1+ # Python-bioformats is distributed under the GNU General Public
2+ # License, but this file is licensed under the more permissive BSD
3+ # license. See the accompanying file LICENSE for details.
4+ #
5+ # Copyright (c) 2009-2014 Broad Institute
6+ # All rights reserved.
7+
18"""omexml.py read and write OME xml
29
310"""
4- # CellProfiler is distributed under the GNU General Public License.
5- # See the accompanying file LICENSE for details.
6- #
7- # Developed by the Broad Institute
8- #
9- # Copyright (c) 2003-2009 Massachusetts Institute of Technology
10- # Copyright (c) 2003-2013 Broad Institute
11- # All rights reserved.
12- #
13- # Please see the AUTHORS file for credits.
14- #
15- # Website: http://www.cellprofiler.org
16- #
11+
1712import xml .etree .ElementTree
1813from xml .etree import cElementTree as ElementTree
1914from cStringIO import StringIO
Original file line number Diff line number Diff line change 1- '''
2- CellProfiler is distributed under the GNU General Public License,
3- but this file is licensed under the more permissive BSD license.
4- See the accompanying file LICENSE for details.
5-
6- Copyright (c) 2003-2009 Massachusetts Institute of Technology
7- Copyright (c) 2009-2013 Broad Institute
8- All rights reserved.
9-
10- Please see the AUTHORS file for credits.
11-
12- Website: http://www.cellprofiler.org
13- '''
14-
You can’t perform that action at this time.
0 commit comments