diff options
author | Peter Amstutz | 2020-04-07 13:31:49 -0400 |
---|---|---|
committer | Peter Amstutz | 2020-04-07 13:31:49 -0400 |
commit | afbc3ec99f638a2f8df96a8e952b5b9616dc99a8 (patch) | |
tree | 053026743a51c1dde44b5ff1f8b1d6aa248ac54b /bh20sequploader | |
parent | 9b1c125f91469074c7586a1278d89b85919e3eae (diff) | |
download | bh20-seq-resource-afbc3ec99f638a2f8df96a8e952b5b9616dc99a8.tar.gz bh20-seq-resource-afbc3ec99f638a2f8df96a8e952b5b9616dc99a8.tar.lz bh20-seq-resource-afbc3ec99f638a2f8df96a8e952b5b9616dc99a8.zip |
Now moves collections into 'validated sequences' project
Improve logging for seq service
Fix uploader bug
Runs workflow with all validated sequences.
Diffstat (limited to 'bh20sequploader')
-rw-r--r-- | bh20sequploader/main.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bh20sequploader/main.py b/bh20sequploader/main.py index 17ad492..d3ebc0c 100644 --- a/bh20sequploader/main.py +++ b/bh20sequploader/main.py @@ -49,4 +49,5 @@ def main(): (properties['upload_user'], properties['upload_ip']), properties=properties, ensure_unique_name=True) -main() +if __name__ == "__main__": + main() |