Skip to content

Commit

Permalink
description
Browse files Browse the repository at this point in the history
  • Loading branch information
abhisrkckl committed Dec 18, 2024
1 parent 9813a57 commit d596510
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/src/pyvela.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ syntax.
```
$ pyvela -h
A command line interface for the Vela.jl pulsar timing & noise analysis package
usage: pyvela [-h] [-P PRIOR_FILE] [--cheat_prior_scale CHEAT_PRIOR_SCALE] [-o OUTDIR] [-N NSTEPS] [-b BURNIN] [-t THIN] par_file tim_file
positional arguments:
Expand Down
5 changes: 4 additions & 1 deletion pyvela/pyvela/pyvela_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ def info_dict(args):


def parse_args(argv):
parser = ArgumentParser()
parser = ArgumentParser(
prog="pyvela",
description="A command line interface for the Vela.jl pulsar timing & noise analysis package",
)
parser.add_argument("par_file")
parser.add_argument("tim_file")
parser.add_argument("-P", "--prior_file")
Expand Down

0 comments on commit d596510

Please sign in to comment.