Git Product home page Git Product logo

Comments (5)

mvfki avatar mvfki commented on August 23, 2024

Hi,

Currently, LIGER only provides calcARI() and calcPurity() for quantitatively evaluating clustering similarity. However, they might not be directly what you expect but I'd still explain a bit, in case. So subjectively looking at the Sankey plot allows using the joint-clustering result as a reference and see how the (preferably existing) cell types from two species map to it. The two metrics, ARI and Purity, simply compares two sets of annotation applied on the same set of cells. So if you want to compare the known annotation of cells from species A against the annotation of cells from species B, these metrics won't work. But after running integration and getting joint clustering, you can compare the joint clustering subset to species A with the known annotation of species A, and then do the same with species B. If metric values for both comparisons turn out to be high, that can imply that the integrated joint clustering well captures the original cell type population from each species.

Best,
Yichen

from liger.

HaixJiang avatar HaixJiang commented on August 23, 2024

@mvfki
Thank you for your prompt reply. Is it possible for me to add the annotations for Species A and Species B in the lig's metadata, and then calculate the distance between the UMAP coordinates of each cell subset from the two species to quantify the similarity between the two species?

from liger.

mvfki avatar mvfki commented on August 23, 2024

You definitely can! For operation on metadata, you can do cellMeta(lig, "ann", useDataset = "A") <- annotation_A and then for B, or combine them first and then insert:

ann_comb <- c(annotation_A, annotation_B)
lig$ann <- ann_comb

Note that, the expected order of cells can be checked with colnames(lig). And there are more details in our documentation.

Beyond that, if you would like to use the subset distance approach, I don't think it's very necessary to insert metadata because the insertion is only required for a rliger package function to make use of it, while we don't currently have any function that can do what you propose. Furthermore, if you would like to calculate the distance, it should make more sense to use the integrated low-dimensional representation which can be accessed with getMatrix(lig, "H.norm"), rather than using UMAP which distorts it in some degree.

from liger.

HaixJiang avatar HaixJiang commented on August 23, 2024

@mvfki
Thank you for your advice. Is H.norm the multi-species integrated factor matrix I obtained after performing UINMF?

from liger.

mvfki avatar mvfki commented on August 23, 2024

Yes, you run runUINMF() first and then quantileNorm() to finish the factor alignment. H.norm is what you get after quantile normalization.

from liger.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.