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

Commit

Permalink
Updated docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
plankter committed Mar 3, 2021
1 parent e00619b commit 18d2583
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
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.1.4&#34;</code></pre>
__version__ = &#34;2.1.5&#34;</code></pre>
</details>
</section>
<section>
Expand Down
4 changes: 2 additions & 2 deletions docs/io/ometiff/ometiffparser.html
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ <h1 class="title">Module <code>imctools.io.ometiff.ometiffparser</code></h1>

channels = img.findall(f&#34;{ns}Pixels/{ns}Channel&#34;)
chan_dict = {
int(chan.attrib[&#34;ID&#34;].split(&#34;:&#34;)[2]): (chan.attrib[&#34;Name&#34;], chan.attrib[&#34;Fluor&#34;]) for chan in channels
int(chan.attrib[&#34;ID&#34;].split(&#34;:&#34;)[2]): (chan.attrib.get(&#34;Name&#34;, chan.attrib[&#34;Fluor&#34;]), chan.attrib[&#34;Fluor&#34;]) for chan in channels
}

image_name = img.attrib[&#34;Name&#34;]
Expand Down Expand Up @@ -293,7 +293,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>

channels = img.findall(f&#34;{ns}Pixels/{ns}Channel&#34;)
chan_dict = {
int(chan.attrib[&#34;ID&#34;].split(&#34;:&#34;)[2]): (chan.attrib[&#34;Name&#34;], chan.attrib[&#34;Fluor&#34;]) for chan in channels
int(chan.attrib[&#34;ID&#34;].split(&#34;:&#34;)[2]): (chan.attrib.get(&#34;Name&#34;, chan.attrib[&#34;Fluor&#34;]), chan.attrib[&#34;Fluor&#34;]) for chan in channels
}

image_name = img.attrib[&#34;Name&#34;]
Expand Down

0 comments on commit 18d2583

Please sign in to comment.