view tomo/tmp.txt @ 123:a0c32ddc3d96 draft

planemo upload for repository https://github.com/CHESSComputing/ChessAnalysisPipeline commit 6697892ecc504b00077394d0c167431ec3ac12f7-dirty
author ximgchess
date Tue, 30 May 2023 15:07:57 +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