-
Notifications
You must be signed in to change notification settings - Fork 17
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
Error of cell_type_specific_TF_RE_binding_chr() function #38
Comments
I found how to fix this problem, I changed the lines Thanks! |
Were you able the run the whole tutorial? Because several others have pointed out that they're facing the following error:
|
Hello,
I used LINGER 1.67 version. I had errors showing "raise KeyError(f"{not_found} not in index")" when I run
LL_net.cell_type_specific_TF_RE_binding(GRNdir,adata_RNA,adata_ATAC,genome,celltype,outdir,method)
using example data and pipeline.Then I checked the source code and tested code by line, I think there are errors of function
**cell_type_specific_TF_RE_binding_chr()**
.RE=RE.loc[N_overlap]
, I changed it intoset_N_overlap = set(N_overlap) overlap_index = RE.index.isin(set_N_overlap) RE = RE[overlap_index]
; but then I have new error ofS = np.log(RE_cluster+0.1) + np.log(mat+TFbinding+0.1) + np.log(TF_cluster+0.1)
.Could you help to check this function?
Thanks!
The text was updated successfully, but these errors were encountered: