diff options
author | Aaron LI <aly@aaronly.me> | 2017-10-04 13:35:18 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-10-04 13:35:18 +0800 |
commit | fd40bc26b473c48dfecdc544ba9bb49cc2335737 (patch) | |
tree | be6d1f35def6932656eb91ab320902f638134489 /bin | |
parent | ae1ffdaa01cf072e5e1aa69228ea7514ae8db23c (diff) | |
download | fg21sim-fd40bc26b473c48dfecdc544ba9bb49cc2335737.tar.bz2 |
bin/fg21sim-download-data: Update description
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/fg21sim-download-data | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/fg21sim-download-data b/bin/fg21sim-download-data index 67dbd33..94bbf6f 100755 --- a/bin/fg21sim-download-data +++ b/bin/fg21sim-download-data @@ -4,7 +4,8 @@ # MIT license """ -Download the required data (e.g., template maps) for simulations. +Download the data (e.g., template maps) for simulations according to the +manifest file. """ import os @@ -20,7 +21,7 @@ from fg21sim.utils.download import download_file def main(): parser = argparse.ArgumentParser( - description="Retrieve required input templates and catalogs") + description="Download data according to a manifest file") parser.add_argument("manifest", help="data manifest file") parser.add_argument("outdir", nargs="?", default=".", help="output directory to save the downloaded data " + |