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
As mentioned in #13 (comment), text representation could be updated to better reflect the hierarchy in the object as well as to indicate axes.
The text was updated successfully, but these errors were encountered:
Implement modality structure representation
731df86
Resolves #44
#51 brings enhancements that should improve user experience namely displaying the hierarchy of modalities
print(mdata.mod) # MuData # ├─ rna AnnData (10100 x 1234) # └─ prot AnnData (10100 x 42)
and spelling out the shared axes for non-default axes
print(rna_mdata) # MuData object with n_obs × n_vars = 100 × 10 (shared obs and var) # 2 modalities # raw: 10100 x 1234 # preproc: 9999 x 1111
which works together for nested MuData objects:
print(nested_mdata.mod) # MuData # ├─ rna MuData [shared obs and var] (10100 × 1234) # │ ├─ raw AnnData (10100 x 1234) # │ └─ preproc AnnData (9999 x 1111) # └─ prot AnnData (10100 x 42)
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
As mentioned in #13 (comment), text representation could be updated to better reflect the hierarchy in the object as well as to indicate axes.
The text was updated successfully, but these errors were encountered: