diff options
author | Aaron LI <aaronly.me@outlook.com> | 2017-02-11 13:13:53 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2017-02-11 13:13:53 +0800 |
commit | 436455f8a8ec5fa83b8f164cbc28d0f734a69c06 (patch) | |
tree | 3492041e089c1a6bf0a0ad0c49cc698841f4b36e /scripts/results.py | |
parent | 5880e2daed06c4edda1422bcfc0d6a0589110db3 (diff) | |
download | chandra-acis-analysis-436455f8a8ec5fa83b8f164cbc28d0f734a69c06.tar.bz2 |
Add scripts/{manifest,results}.py
* manifest.py: Manage the observation products in YAML format manifest
* results.py: Manage the analysis results in YAML format
Diffstat (limited to 'scripts/results.py')
-rwxr-xr-x | scripts/results.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/scripts/results.py b/scripts/results.py new file mode 100755 index 0000000..7536e2f --- /dev/null +++ b/scripts/results.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python3 +# +# Copyright (c) 2017 Weitian LI <liweitianux@live.com> +# MIT license +# +# Weitian LI +# 2017-02-11 + +""" +Manage the analysis results in YAML format. +""" + +import manifest + + +def main(description="Manage the analysis results (YAML format)", + default_file="results.yaml"): + manifest.main(description=description, default_file=default_file) + + +if __name__ == "__main__": + main() |