Mercurial > repos > stevecassidy > alveoimport
comparison alveo_api_key.py @ 18:5e1b7d922ea3 draft default tip
planemo upload for repository https://github.com/Alveo/alveo-galaxy-tools commit 53cde5cc9b8c1adcccdc3cfa52d8ca82079aeda7
author | stevecassidy |
---|---|
date | Mon, 15 Jan 2018 18:34:57 -0500 |
parents | a38315ecf593 |
children |
comparison
equal
deleted
inserted
replaced
17:b69f6d41d17c | 18:5e1b7d922ea3 |
---|---|
14 def main(): | 14 def main(): |
15 args = parser() | 15 args = parser() |
16 try: | 16 try: |
17 write_key(args.api_key, args.output_path) | 17 write_key(args.api_key, args.output_path) |
18 except Exception as e: | 18 except Exception as e: |
19 print("ERROR: " + str(e), file=sys.stderr) | 19 print(e, file=sys.stderr) |
20 # print("ERROR: " + str(e), file=sys.stderr) | |
20 sys.exit(1) | 21 sys.exit(1) |
21 | 22 |
22 | 23 |
23 if __name__ == '__main__': | 24 if __name__ == '__main__': |
24 main() | 25 main() |