Skip to content

Commit

Permalink
fix help msgs
Browse files Browse the repository at this point in the history
  • Loading branch information
psathyrella committed Feb 26, 2024
1 parent 4754846 commit ec8ed6b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions projects/replay-plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,16 +321,16 @@ def compare_plots(hname, plotdir, hists, labels, abtype, diff_vals):
# ----------------------------------------------------------------------------------------
ustr = """
Compare various distributions (especially abundances) in simu and gcreplay data:
replay-plot.py --gcreplay-dir <replay data dir> --data-dir <> --simu-dir <>
replay-plot.py --data-dir <> --simu-dir <>
--data-dir /fh/fast/matsen_e/dralph/gcdyn/gcreplay-observed
--simu-dir /fh/fast/matsen_e/dralph/partis/gcdyn/vary-all/v1/n-trials-5000/simu-bundle-size-1/simu
--outdir /fh/fast/matsen_e/dralph/partis/gcdyn/vary-all/v1/n-trials-5000/simu-bundle-size-1/process
"""
parser = argparse.ArgumentParser(usage=ustr)
parser.add_argument('--data-dir')
parser.add_argument('--data-dir', help='dir from which to read gctree trees on gcreplay data')
# NOTE there's other scripts that process gcreplay results for partis input here: partis/datascripts/meta/taraki-gctree-2021-20
parser.add_argument('--gcreplay-dir', default='/fh/fast/matsen_e/data/taraki-gctree-2021-10')
parser.add_argument('--simu-dir')
parser.add_argument('--gcreplay-dir', default='/fh/fast/matsen_e/data/taraki-gctree-2021-10', help='dir with gctree otuput from which we read seqs, affinity, and mutation info from a csv file (trees and leaf/internal info are read from --data-dir)')
parser.add_argument('--simu-dir', help='dir from which to read simulation trees and mutation info')
parser.add_argument('--outdir')
parser.add_argument('--min-seqs-per-gc', type=int, default=70)
parser.add_argument('--max-seqs-per-gc', type=int, default=70)
Expand Down

0 comments on commit ec8ed6b

Please sign in to comment.