-
Notifications
You must be signed in to change notification settings - Fork 25
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
Update filter x #324
base: main
Are you sure you want to change the base?
Update filter x #324
Conversation
Could you highlight what you changed? Did some behavior change? |
@ilan-gold so basically before I did something slightly different than what scanpy does in those functions. Now they do exactly the same thing. I had to pass a qc_var and than I took the value from obs or var and did not recalculate the values |
but have the results changed? like do you still filter out the same genes/cells for the "same" arguments? that's not clear to me |
@ilan-gold The results have not changed but the syntax has. So its a breaking change. |
qc_var: str = "n_cells_by_counts", | ||
min_count: int = None, | ||
max_count: int = None, | ||
min_counts: int | None = None, | ||
min_cells: int | None = None, | ||
max_counts: int | None = None, | ||
max_cells: int | None = None, | ||
inplace: bool = True, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ilan-gold these API changes are what this PR is about.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me!
No description provided.