Skip to content
This repository has been archived by the owner on Mar 31, 2022. It is now read-only.

Commit

Permalink
Fix Path instance file name when dealing with xtiff.
Browse files Browse the repository at this point in the history
  • Loading branch information
plankter committed Aug 14, 2020
1 parent bd05f6b commit 4bb23c3
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 20 deletions.
9 changes: 4 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [2.0.1] - 2020-08-14
- Fix Path instance file name when dealing with `xtiff`

## [2.0.dev1] - 2019-11-22

### Added
- Blah-blah
## [2.0.0] - 2020-08-12
- Initial release
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Version 1.x documentation (deprecated): https://imctools.readthedocs.io

Preferable way to install `imctools` is via official PyPI registry. Please define package version explicitly in order to avoid incompatibilities between v1.x and v2.x versions:
```
pip install imctools==2.0.0
pip install imctools==2.0.1
```
In old IMC segmentation pipelines versions 1.x should be used!
```
Expand Down
7 changes: 3 additions & 4 deletions docs/data/acquisitiondata.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ <h1 class="title">Module <code>imctools.data.acquisitiondata</code></h1>
<span>Expand source code</span>
</summary>
<pre><code class="python">import logging
import os
import re
from pathlib import Path
from typing import Optional, Sequence, Union
Expand Down Expand Up @@ -164,7 +163,7 @@ <h1 class="title">Module <code>imctools.data.acquisitiondata</code></h1>
data = np.array(self._get_image_stack_cyx(order), dtype=dtype)
to_tiff(
data,
filename,
str(filename),
ome_xml_fun=get_ome_xml,
channel_names=channel_labels,
channel_fluors=channel_names,
Expand Down Expand Up @@ -389,7 +388,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
data = np.array(self._get_image_stack_cyx(order), dtype=dtype)
to_tiff(
data,
filename,
str(filename),
ome_xml_fun=get_ome_xml,
channel_names=channel_labels,
channel_fluors=channel_names,
Expand Down Expand Up @@ -715,7 +714,7 @@ <h2 id="parameters">Parameters</h2>
data = np.array(self._get_image_stack_cyx(order), dtype=dtype)
to_tiff(
data,
filename,
str(filename),
ome_xml_fun=get_ome_xml,
channel_names=channel_labels,
channel_fluors=channel_names,
Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ <h2 id="prerequisites">Prerequisites</h2>
</ul>
<h2 id="installation">Installation</h2>
<p>Preferable way to install <code><a title="imctools" href="#imctools">imctools</a></code> is via official PyPI registry. Please define package version explicitly in order to avoid incompatibilities between v1.x and v2.x versions:</p>
<pre><code>pip install imctools==2.0.0
<pre><code>pip install imctools==2.0.1
</code></pre>
<p>In old IMC segmentation pipelines versions 1.x should be used!</p>
<pre><code>pip install imctools==1.0.8
Expand Down Expand Up @@ -140,7 +140,7 @@ <h3 id="usage-of-previous-version-1x">Usage of previous version 1.x</h3>

__author__ = &#34;&#34;&#34;Vito Zanotelli, Anton Rau&#34;&#34;&#34;
__email__ = &#34;[email protected], [email protected]&#34;
__version__ = &#34;2.0.0&#34;</code></pre>
__version__ = &#34;2.0.1&#34;</code></pre>
</details>
</section>
<section>
Expand Down
2 changes: 1 addition & 1 deletion imctools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

__author__ = """Vito Zanotelli, Anton Rau"""
__email__ = "[email protected], [email protected]"
__version__ = "2.0.0"
__version__ = "2.0.1"
3 changes: 1 addition & 2 deletions imctools/data/acquisitiondata.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import logging
import os
import re
from pathlib import Path
from typing import Optional, Sequence, Union
Expand Down Expand Up @@ -136,7 +135,7 @@ def save_ome_tiff(
data = np.array(self._get_image_stack_cyx(order), dtype=dtype)
to_tiff(
data,
filename,
str(filename),
ome_xml_fun=get_ome_xml,
channel_names=channel_labels,
channel_fluors=channel_names,
Expand Down
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api"

[tool.poetry]
name = "imctools"
version = "2.0.0"
version = "2.0.1"
description = "Tools to handle Fluidigm IMC data"
license = "MIT"
authors = ["Vito Zanotelli <[email protected]>", "Anton Rau <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.0
current_version = 2.0.1
commit = False
tag = False

Expand Down

0 comments on commit 4bb23c3

Please sign in to comment.