Mercurial > repos > rv43 > tomo
diff tomo_reconstruct.py @ 75:d5e1d4ea2b7e draft default tip
planemo upload for repository https://github.com/rolfverberg/galaxytools commit 6afde341a94586fe3972bdbbfbf5dabd5e8dec69
author | rv43 |
---|---|
date | Thu, 23 Mar 2023 13:39:14 +0000 |
parents | 1cf15b61cd83 |
children |
line wrap: on
line diff
--- a/tomo_reconstruct.py Tue Mar 21 17:40:03 2023 +0000 +++ b/tomo_reconstruct.py Thu Mar 23 13:39:14 2023 +0000 @@ -14,7 +14,7 @@ def __main__(): # Parse command line arguments parser = argparse.ArgumentParser( - description='Reduce tomography data') + description='Perform a tomography reconstruction') parser.add_argument('-i', '--input_file', required=True, type=pathlib.Path, @@ -106,5 +106,8 @@ # stopping memory monitoring # tracemalloc.stop() + logging.info('Completed tomography reconstruction') + + if __name__ == "__main__": __main__()