Hi,
while running your package, I got an error Error: object 'is_ref2' not found. I then checked impute.R code and saw that there's a problem at line 429:
if(hetero){
is_ref2
is_ref <- is_ref[sort(rep(1:length(is_ref),2))]
}
I guess it should be:
if(hetero){
is_ref2 <- is_ref[sort(rep(1:length(is_ref),2))]
}
Would be nice if you could fix it and update the package.
Thanks!
Hi,
while running your package, I got an error
Error: object 'is_ref2' not found. I then checkedimpute.Rcode and saw that there's a problem at line 429:I guess it should be:
Would be nice if you could fix it and update the package.
Thanks!