|
1 | 1 | # bioio-lif
|
2 | 2 |
|
3 | 3 | [](https://github.com/bioio-devs/bioio-lif/actions)
|
4 |
| -[](https://bioio-devs.github.io/bioio-lif) |
| 4 | +[](https://badge.fury.io/py/bioio-lif) |
| 5 | +[](https://www.gnu.org/licenses/gpl-3.0) |
| 6 | +[](https://www.python.org/downloads/release/python-390/) |
5 | 7 |
|
6 |
| -A BioIO reader plugin for reading LIF (Leica Image File) images. |
| 8 | +A BioIO reader plugin for reading LIF (Leica) images using `readlif` |
7 | 9 |
|
8 |
| -This plugin is intended to be used in conjunction with [bioio](https://github.com/bioio-devs/bioio) |
9 | 10 | ---
|
10 | 11 |
|
| 12 | + |
| 13 | +## Documentation |
| 14 | + |
| 15 | +[See the full documentation on our GitHub pages site](https://bioio-devs.github.io/bioio/OVERVIEW.html) - the generic use and installation instructions there will work for this package. |
| 16 | + |
| 17 | +Information about the base reader this package relies on can be found in the `bioio-base` repository [here](https://github.com/bioio-devs/bioio-base) |
| 18 | + |
11 | 19 | ## Installation
|
12 | 20 |
|
13 | 21 | **Stable Release:** `pip install bioio-lif`<br>
|
14 | 22 | **Development Head:** `pip install git+https://github.com/bioio-devs/bioio-lif.git`
|
15 | 23 |
|
16 |
| -## Quickstart |
| 24 | +## Example Usage (see full documentation for more examples) |
17 | 25 |
|
| 26 | +Install bioio-lif alongside bioio: |
| 27 | + |
| 28 | +`pip install bioio bioio-lif` |
| 29 | + |
| 30 | + |
| 31 | +This example shows a simple use case for just accessing the pixel data of the image |
| 32 | +by explicitly passing this `Reader` into the `BioImage`. Passing the `Reader` into |
| 33 | +the `BioImage` instance is optional as `bioio` will automatically detect installed |
| 34 | +plug-ins and auto-select the most recently installed plug-in that supports the file |
| 35 | +passed in. |
18 | 36 | ```python
|
19 |
| -from bioio_lif import Reader |
| 37 | +from bioio import BioImage |
| 38 | +import bioio_lif |
20 | 39 |
|
21 |
| -r = Reader("my-image.ext") |
22 |
| -r.dims |
| 40 | +img = BioImage("my_file.lif", reader=bioio_lif.Reader) |
| 41 | +img.data |
23 | 42 | ```
|
24 | 43 |
|
25 |
| -## Documentation |
| 44 | +## Issues |
| 45 | +[_Click here to view all open issues in bioio-devs organization at once_](https://github.com/search?q=user%3Abioio-devs+is%3Aissue+is%3Aopen&type=issues&ref=advsearch) or check this repository's issue tab. |
26 | 46 |
|
27 |
| -For full package documentation please visit [bioio-devs.github.io/bioio-lif](https://bioio-devs.github.io/bioio-lif). |
28 | 47 |
|
29 | 48 | ## Development
|
30 | 49 |
|
31 | 50 | See [CONTRIBUTING.md](CONTRIBUTING.md) for information related to developing the code.
|
32 |
| - |
33 |
| -**MIT License** |
|
0 commit comments