We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am trying to train HIBAG models for loci other than HLA. Training the models in parallel causes the following error:
> hlaAllele(true_kir_types_train$sample.id, H1=true_kir_types_train$allele1, H2=true_kir_types_train$allele2, locus="any") .... .... .... > hlaParallelAttrBagging(cl, train.allele, traingeno, nclassifier=10, auto.save="output.RData") Calculating matching proportion: Error in hlaCombineAllele(res, rv[[i]]) : H1$pos.start == H2$pos.start is not TRUE
However, if I change the locus parameter in hlaAllele to some HLA gene, no error is thrown:
locus
hlaAllele
> hlaAllele(true_kir_types_train$sample.id, H1=true_kir_types_train$allele1, H2=true_kir_types_train$allele2, locus="A")
The text was updated successfully, but these errors were encountered:
hlaAllele(sample.id, H1, H2, max.resolution="", locus="any", assembly="auto", locus.pos.start=NA_integer_, locus.pos.end=NA_integer_, prob=NULL, na.rm=TRUE)
You will need to specify locus.pos.start and locus.pos.end.
locus.pos.start
locus.pos.end
Sorry, something went wrong.
Thanks @zhengxw-ab But specifying the locus.pos.start and locus.pos.end still causes the same error.
zhengxwen
No branches or pull requests
I am trying to train HIBAG models for loci other than HLA. Training the models in parallel causes the following error:
However, if I change the
locus
parameter inhlaAllele
to some HLA gene, no error is thrown:The text was updated successfully, but these errors were encountered: