Skip to content

Commit

Permalink
On branch master
Browse files Browse the repository at this point in the history
PyLOH.py, run_model.py: --priors_file_name -> --priors
  • Loading branch information
yil8 committed Sep 30, 2013
1 parent c245d49 commit 7a3fd3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PyLOH.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
parser_run_model.add_argument('--allele_number_max', default=2, type=int,
help='''Maximum copy number of each allele allows to take. Default is 2.''')

parser_run_model.add_argument('--priors_file_name', default=None, type=str,
parser_run_model.add_argument('--priors', default=None, type=str,
help='''File of the prior distribution. If not provided,
use uniform prior. Default is None.''')

Expand Down
2 changes: 1 addition & 1 deletion pyloh/model/run_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run_poisson_model(args):
restart_num = len(restart_parameters_list)

model = PoissonProbabilisticModel(args.allele_number_max)
model.read_priors(args.priors_file_name)
model.read_priors(args.priors)
model.read_data(args.filename_base)
model.preprocess()

Expand Down

0 comments on commit 7a3fd3e

Please sign in to comment.