-
Notifications
You must be signed in to change notification settings - Fork 23
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
v1.1.0 #98
Merged
Merged
v1.1.0 #98
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
1.1.0 (12.04.2024)
Added a check for the subset of cell types in li.multi.dea_to_lr. Related to Add a check that for the subset of cell types in
li.multi.dea_to_lr
#92.Split Local and Global Bivariate metrics. Specifically, I reworked completely the underlying code, though the API should remain relatively unchanged. With the exceptions of: 1)
lr_bivar
is now removed andbivar
has been renamed tobivariate
. This allowed me to remove a lot of redundancies between the two functions. 2)nz_threshold
has been renamed tonz_prop
for consistency withexpr_prop
in the remainder of the package. Related to Split global from local scores #44.li.mt.bivariate
parametermod_added
has been renamed tokey_added
due to this now refer to both.obsm
and.mod
- depedening whether an AnnData or MuData object is passed.Added Global Lee's statistic, along with a note on weighted product that upon z-scaling it is equivalent to Lee's local statistic.
The Global L statistic and Global Moran's R are themselves basically identical. See Eq.22 from Lee and Eq.1 in Supps of SpatialDM.
Changed the
li.mt.bivar
parameterfunction_name
tolocal_name
for consistency and to avoid ambiguity with the newly-addedglobal_name
parameter.Added
bumpversion
to manage versioning. Related to Add bumpversion + metadata #73.Added
max_runs
andstable_runs
parameters to enable the inference of robust causal networks with CORNETO. Related to Generate Union of Causal Net Predictions #82.Optimized MISTy such that the matrix multiplication by weights is done only once, rather than for each target. Users can now obtain the weighted matrix via the
misty.get_weighted_matrix
function.MISTy models are now passed externally, rather than being hardcoded. This allows for more flexibility in the models used. As an example, I also added a RobustLinearModel from statsmodels. Related to External + GPU-enabled MISTy models #74.
Removed forced conversion to sparse csr_matrix matrices in MISTy. Related to By default do not convert views to
csr_matrix
when buildingMistyData
. #57.