Mercurial > repos > rv43 > chess_tomo
changeset 32:98eee43a8c8c draft
planemo upload for repository https://github.com/rolfverberg/galaxytools commit f8c4bdb31c20c468045ad5e6eb255a293244bc6c-dirty
| author | rv43 |
|---|---|
| date | Wed, 22 Mar 2023 12:56:22 +0000 |
| parents | dd37989f425a |
| children | 50923144fb56 |
| files | workflow/run_tomo.py |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/workflow/run_tomo.py Wed Mar 22 12:52:50 2023 +0000 +++ b/workflow/run_tomo.py Wed Mar 22 12:56:22 2023 +0000 @@ -303,7 +303,7 @@ raise ValueError(f'Invalid nxentry ({nxentry})') if center_rows is not None: if self.galaxy_flag: - is not is_int_pair(center_rows, ge=-1): + if not is_int_pair(center_rows, ge=-1): raise ValueError(f'Invalid parameter center_rows ({center_rows})') if (center_rows[0] != -1 and center_rows[1] != -1 and center_rows[0] > center_rows[1]):
