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
In IdentifyFailures.R,Somtimes have error "Error in `[.default`(exons$Custom.Exon, a) : invalid subscript type 'list' "
I fount the reason: "a" is a list, exons$Custom[a] can not return values from a list. Can you fix it ?
151 Brca<-which(colSums(brca)!=0) 152 153 a<-apply(brca[,Brca,drop=F],2,which) 154 155 Clinical_Numbering=rep("NA",length(Exon)) 156 157 Clinical_Numbering[paste(Exon)%in%row.names(failed.calls[Brca,])] = exons$Custom[a]
The text was updated successfully, but these errors were encountered:
I also faced the same problem. I don't know how to fix it. @polymerase2010 Is this problem solved successfully?
Sorry, something went wrong.
No branches or pull requests
I fount the reason: "a" is a list, exons$Custom[a] can not return values from a list.
Can you fix it ?
151 Brca<-which(colSums(brca)!=0)
152
153 a<-apply(brca[,Brca,drop=F],2,which)
154
155 Clinical_Numbering=rep("NA",length(Exon))
156
157 Clinical_Numbering[paste(Exon)%in%row.names(failed.calls[Brca,])] = exons$Custom[a]
The text was updated successfully, but these errors were encountered: