Mercurial > repos > iuc > meningotype
annotate check_output.py @ 0:b5f872c50249 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotype commit b4e0bbb9a2a23cbac9137a96d59bc1775c23c8a5
author | iuc |
---|---|
date | Tue, 13 Jun 2023 11:04:30 +0000 |
parents | |
children |
rev | line source |
---|---|
0
b5f872c50249
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotype commit b4e0bbb9a2a23cbac9137a96d59bc1775c23c8a5
iuc
parents:
diff
changeset
|
1 #!/usr/bin/env python3 |
b5f872c50249
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotype commit b4e0bbb9a2a23cbac9137a96d59bc1775c23c8a5
iuc
parents:
diff
changeset
|
2 |
b5f872c50249
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotype commit b4e0bbb9a2a23cbac9137a96d59bc1775c23c8a5
iuc
parents:
diff
changeset
|
3 import argparse |
b5f872c50249
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotype commit b4e0bbb9a2a23cbac9137a96d59bc1775c23c8a5
iuc
parents:
diff
changeset
|
4 import sys |
b5f872c50249
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotype commit b4e0bbb9a2a23cbac9137a96d59bc1775c23c8a5
iuc
parents:
diff
changeset
|
5 |
b5f872c50249
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotype commit b4e0bbb9a2a23cbac9137a96d59bc1775c23c8a5
iuc
parents:
diff
changeset
|
6 if __name__ == '__main__': |
b5f872c50249
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotype commit b4e0bbb9a2a23cbac9137a96d59bc1775c23c8a5
iuc
parents:
diff
changeset
|
7 parser = argparse.ArgumentParser() |
b5f872c50249
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotype commit b4e0bbb9a2a23cbac9137a96d59bc1775c23c8a5
iuc
parents:
diff
changeset
|
8 parser.add_argument('meningotype_file', type=argparse.FileType()) |
b5f872c50249
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotype commit b4e0bbb9a2a23cbac9137a96d59bc1775c23c8a5
iuc
parents:
diff
changeset
|
9 args = parser.parse_args() |
b5f872c50249
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotype commit b4e0bbb9a2a23cbac9137a96d59bc1775c23c8a5
iuc
parents:
diff
changeset
|
10 for line in args.meningotype_file: |
b5f872c50249
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotype commit b4e0bbb9a2a23cbac9137a96d59bc1775c23c8a5
iuc
parents:
diff
changeset
|
11 if 'ERROR:' in line: |
b5f872c50249
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotype commit b4e0bbb9a2a23cbac9137a96d59bc1775c23c8a5
iuc
parents:
diff
changeset
|
12 sys.exit('Found error in meningotype output: ' + line.strip()) |