Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add quiet=FALSE to coloc.abf() #148

Open
oborisov opened this issue Mar 12, 2024 · 0 comments
Open

Add quiet=FALSE to coloc.abf() #148

oborisov opened this issue Mar 12, 2024 · 0 comments

Comments

@oborisov
Copy link

combine.abf() function has a useful "quiet=FALSE" parameter. Unfortunately, It is not possible to pass this parameter when calling coloc.abf() (which internally calls combine.abf).

Suggestion:

coloc/R/claudia.R

Lines 324 to 325 in 0afe607

coloc.abf <- function(dataset1, dataset2, MAF=NULL,
p1=1e-4, p2=1e-4, p12=1e-5) {

coloc.abf <- function(dataset1, dataset2, MAF=NULL, 
                      p1=1e-4, p2=1e-4, p12=1e-5, quiet=FALSE) {

...

pp.abf <- combine.abf(merged.df$lABF.df1, merged.df$lABF.df2, p1, p2, p12)

    pp.abf <- combine.abf(merged.df$lABF.df1, merged.df$lABF.df2, p1, p2, p12, quiet)  
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant