This repository has been archived by the owner on Mar 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX #93: Exported OME tiffs have incorrect channel name data
- Loading branch information
Showing
43 changed files
with
531 additions
and
476 deletions.
There are no files selected for viewing
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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" /> | ||
<meta name="generator" content="pdoc 0.8.4" /> | ||
<meta name="generator" content="pdoc 0.8.5" /> | ||
<title>imctools API documentation</title> | ||
<meta name="description" content="imctools …" /> | ||
<link rel="preload stylesheet" as="style" href="https://cdnjs.cloudflare.com/ajax/libs/10up-sanitize.css/11.0.1/sanitize.min.css" integrity="sha256-PK9q560IAAa6WVRRh76LtCaI8pjTJ2z11v0miyNNjrs=" crossorigin> | ||
|
@@ -49,15 +49,15 @@ <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.1 | ||
<pre><code>pip install imctools==2.1.0 | ||
</code></pre> | ||
<p>In old IMC segmentation pipelines versions 1.x should be used!</p> | ||
<pre><code>pip install imctools==1.0.8 | ||
</code></pre> | ||
<h2 id="usage-of-version-2x">Usage of version 2.x</h2> | ||
<p><code><a title="imctools" href="#imctools">imctools</a></code> is often used from Jupyter as part of the pre-processing pipeline, mainly using the <strong>converters</strong> wrapper functions. Please check the <a href="https://github.com/BodenmillerGroup/ImcSegmentationPipeline/blob/development/scripts/imc_preprocessing.ipynb">following example</a> as a template.</p> | ||
<p>Further <code><a title="imctools" href="#imctools">imctools</a></code> can be directly used as a module:</p> | ||
<pre><code class="python">from imctools.io.mcd.mcdparser import McdParser | ||
<pre><code class="language-python">from imctools.io.mcd.mcdparser import McdParser | ||
|
||
fn_mcd = "/home/vitoz/Data/varia/201708_instrument_comp/mcd/20170815_imccomp_zoidberg_conc5_acm1.mcd" | ||
|
||
|
@@ -93,7 +93,7 @@ <h2 id="usage-of-version-2x">Usage of version 2.x</h2> | |
parser.close() | ||
</code></pre> | ||
<h3 id="usage-of-previous-version-1x">Usage of previous version 1.x</h3> | ||
<pre><code class="python">import imctools.io.mcdparser as mcdparser | ||
<pre><code class="language-python">import imctools.io.mcdparser as mcdparser | ||
import imctools.io.txtparser as txtparser | ||
import imctools.io.ometiffparser as omeparser | ||
import imctools.io.mcdxmlparser as meta | ||
|
@@ -140,7 +140,7 @@ <h3 id="usage-of-previous-version-1x">Usage of previous version 1.x</h3> | |
|
||
__author__ = """Vito Zanotelli, Anton Rau""" | ||
__email__ = "[email protected], [email protected]" | ||
__version__ = "2.0.1"</code></pre> | ||
__version__ = "2.1.0"</code></pre> | ||
</details> | ||
</section> | ||
<section> | ||
|
@@ -200,7 +200,7 @@ <h1>Index</h1> | |
</nav> | ||
</main> | ||
<footer id="footer"> | ||
<p>Generated by <a href="https://pdoc3.github.io/pdoc"><cite>pdoc</cite> 0.8.4</a>.</p> | ||
<p>Generated by <a href="https://pdoc3.github.io/pdoc"><cite>pdoc</cite> 0.8.5</a>.</p> | ||
</footer> | ||
</body> | ||
</html> |
Oops, something went wrong.