# HG changeset patch # User imgteam # Date 1713946342 0 # Node ID 2592a29a785e865a9ce4761805cd6b37c767ea67 # Parent 4c43875c790cbf2bff7ce79474a24fa4d578b7cd planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/concat_channels/ commit c86a1b93cb7732f7331a981d13465653cc1a2790 diff -r 4c43875c790c -r 2592a29a785e concat_channels.py --- a/concat_channels.py Thu Apr 04 15:25:29 2024 +0000 +++ b/concat_channels.py Wed Apr 24 08:12:22 2024 +0000 @@ -1,5 +1,6 @@ import argparse +import giatools.io import numpy as np import skimage.io import skimage.util @@ -9,7 +10,7 @@ images = [] for image_path in input_image_paths: - raw_image = skimage.io.imread(image_path) + raw_image = giatools.io.imread(image_path) if len(raw_image.shape) == 2: if axis == 0: raw_image = [raw_image] diff -r 4c43875c790c -r 2592a29a785e concat_channels.xml --- a/concat_channels.xml Thu Apr 04 15:25:29 2024 +0000 +++ b/concat_channels.xml Wed Apr 24 08:12:22 2024 +0000 @@ -1,4 +1,4 @@ - + creators.xml @@ -17,6 +17,7 @@ scikit-image numpy tifffile + giatools