view tomo/tmp.txt @ 118:c90f17a31ed5 draft

planemo upload for repository https://github.com/CHESSComputing/ChessAnalysisPipeline commit 6697892ecc504b00077394d0c167431ec3ac12f7-dirty
author ximgchess
date Tue, 30 May 2023 14:29:40 +0000
parents 99b91cd171fb
children
line wrap: on
line source

try:
    from pyspec.file.spec import FileSpec
    from pyspec.file.tiff import TiffFile
except:
    import sys
    home = '/home/galaxy'
    localpippath = f'{home}/.local/lib/python3.11/site-packages'
    if localpippath not in sys.path:
        sys.path.insert(0, localpippath)
    from pyspec.file.spec import FileSpec
    from pyspec.file.tiff import TiffFile