Skip to content

Commit

Permalink
COMMIT: updated README (git test).
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordi Abante committed Aug 19, 2019
1 parent 3ca8c67 commit 074fd12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ b2 = "$(dir)/bam/example.a2.bam"
fa = "$(dir)/fasta/example.fa"
vcf = "$(dir)/vcf/example.vcf"
out = "$(dir)/out/"
run_analysis(b1,b2,b1,vcf,fa,out;blk_size=20,cov_ths=3,cov_b=20.0,win_exp=10,mc_null=1000,n_max=5)
run_analysis(b1,b2,b1,vcf,fa,out;blk_size=25,cov_ths=3,cov_b=20.0,win_exp=5,mc_null=1000,n_max=10)
```

## Authors
Expand Down
2 changes: 1 addition & 1 deletion src/juliASM_estimation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ function est_theta_em(n::Vector{Int64},xobs::Array{Vector{Int64},1})::Tuple{Vect
# If did not converge move onto new initialization
converged || continue
# If it converged and minimizes minus log-likelihood, then keep estimate
if LogLike(θcand) < min_LogLike
if LogLike(θcand)<min_LogLike
θhat = θcand
min_LogLike = min_LogLike
end
Expand Down

0 comments on commit 074fd12

Please sign in to comment.