Skip to content

Commit

Permalink
typo and changed default val for one tole
Browse files Browse the repository at this point in the history
  • Loading branch information
Rosemeis committed Aug 16, 2024
1 parent 982ba6f commit f90d41f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pcangsd/pcangsd.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
help="Compute the per-individual inbreeding coefficients")
parser.add_argument("--inbreed_iter", metavar="INT", type=int, default=500,
help="Maximum iterations for inbreeding coefficients estimation - EM (500)")
parser.add_argument("--inbreed_tole", metavar="FLOAT", type=float, default=1e-6,
help="Tolerance for inbreeding coefficients estimation update - EM (1e-6)")
parser.add_argument("--inbreed_tole", metavar="FLOAT", type=float, default=1e-5,
help="Tolerance for inbreeding coefficients estimation update - EM (1e-5)")
parser.add_argument("--geno", metavar="FLOAT", type=float,
help="Call genotypes from posterior probabilities with threshold")
parser.add_argument("--geno_inbreed", metavar="FLOAT", type=float,
Expand All @@ -79,7 +79,7 @@
parser.add_argument("--admix_alpha", metavar="FLOAT", type=float, default=0,
help="Alpha value for regularization in admixture estimations - NMF (0)")
parser.add_argument("--admix_seed", metavar="INT", type=int, default=0,
help="Random sede used in admixture estimations - NMF (0)")
help="Random seed used in admixture estimations - NMF (0)")
parser.add_argument("--admix_auto", metavar="FLOAT", type=float,
help="Enable automatic search for alpha by giving soft upper search bound")
parser.add_argument("--admix_depth", metavar="INT", type=int, default=7,
Expand Down

0 comments on commit f90d41f

Please sign in to comment.