-
Notifications
You must be signed in to change notification settings - Fork 10
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
Determine pairs through optimized bipartite matching .. #29
Comments
I got the same problem. and didn`t get any solution now. Did you solved? |
Un fortunately,not yet.
发自我的iPhone
…------------------ Original ------------------
From: chenc ***@***.***>
Date: Fri,Apr 14,2023 2:45 PM
To: buenrostrolab/FigR ***@***.***>
Cc: liziyu-000 ***@***.***>, Author ***@***.***>
Subject: Re: [buenrostrolab/FigR] Determine pairs through optimized bipartitematching .. (Issue #29)
I got the same problem. and didn`t get any solution now. Did you solved?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
I have tried re-install, nothing changes... |
Hey bro, I think it could be something wrong with this package. I HAVE tried on different PC or Linux system, but the same error like you said stopping at |
Hi there - apologies for the delayed response on this issue. I'll look into this shortly, that is a bit strange and I haven't encountered that issue in the past (others have been able to run the same function through as well, but there are some constraints on params specified wrt the size of the input dataset which maybe we can figure out here). Few questions, do all the logs print OK up until that point? (e.g. number of cells being paired, subgraph size, search threshold params etc.?). Also, can you try only running this using the first 100 or 500 cells of your 5,000 cell dataset (toy test), to make sure you can get from start to end, and it is the match step where it is getting stuck / taking too long when applied to your full dataset (scaling issue)? |
The logs printed before that point is as follows: KNN subgraphs detected:1 |
Can you add the following parameter to your FigR::pairCells call?
And try again? Essentially I think it's taking a very long time because the number of possible options it has to iterate over is very large. Reducing that search space (default 0.2*number of cells) might help here, so I suggested trying with a smaller fraction. Let me know what you see |
How long will this step take ordinarily using less than ten thousands cells? Did you change that parameter when running the pipeline? Thanks!!! |
I guess the problem is caused by Line 420 in 094f5aa
I run the code step by step with your toy data, and the same like before: |
Have you resolved it? I have been stuck in this step for half a month. |
Hi there - were you able to try my above suggestion of changing the default search_range parameter? You can specify this directly in the
The reason that fullmatch step is taking long is because you're evaluating over a very large number of possible pairs, so I had suggested reducing that using the search_range parameter (default is 0.2*num cells, so try reducing to 0.05 or 0.01 and see if it helps speed it up). |
by increase the I try to decrease the
|
Additionally, when increase is the problem caused by memory overflow? (btw,I run with 200GB) if I incerased |
I have already tried to downsize the search_range parameter just as you suggested, but it still doesn't work~😭 |
Have you fixed that problem, bro? |
Hi, @vkartha I have encountered the same issue. I first tried using the Thanks so much for looking at this and providing suggestions. |
Hello, I encountered this problem while implementing FigR::pairCells function in order to achieve cell matching between scRNA dataset containing ~5000 cells and scATAC dataset containing ~5000 cells. My Rstudio hasn't given any feedback after showing 'Determing pairs through optimized bipartite matching' .. for several days. I'm not able to confirm whether it will succeed eventually. Is this step that time-consuming? What can I do to speed it up or check its running state?
The text was updated successfully, but these errors were encountered: