Skip to content

How label Group list after integratin scRNA-seq and scATAC-seq data #2292

@IqRaZaFaR16

Description

@IqRaZaFaR16

Hello everyOne i have a question related to created Group list after integrating scRNA-seq data with scATAC-seq data we have identify totaly 6 clusters from both scRNA and scATAC-seq
whats the logic behind this to generate group list
Image
should i consider number of cells compared with scRNA-seq and scATAC-seq

# Define the groupList based on the clusters and developmental stages
groupList <- SimpleList(
    G1 = SimpleList(
        ATAC = Merged.proj2.SPG$cellNames[
            Merged.proj2.SPG$Clusters %in% c("C4")  
        ],
        RNA = colnames(SPG.seRNA)[
            SPG.seRNA$idents.rename2 %in% c("G1") 
        ]
    ),
    preL = SimpleList(
        ATAC = Merged.proj2.SPc$cellNames[
            Merged.proj2.SPc$Clusters %in% c("C3")  
        ],
        RNA = colnames(SPc.seRNA)[
            SPc.seRNA$idents.rename2 %in% c("preL") 
        ]
    ),
    ePL = SimpleList(
        ATAC = Merged.proj2.SPc$cellNames[
            Merged.proj2.SPc$Clusters %in% c("C5")  
        ],
        RNA = colnames(SPc.seRNA)[
            SPc.seRNA$idents.rename2 %in% c("ePL")
        ]
    ),
    IPL = SimpleList(
        ATAC = Merged.proj2.SPc$cellNames[
            Merged.proj2.SPc$Clusters %in% c("C2")  
        ],
        RNA = colnames(SPc.seRNA)[
            SPc.seRNA$idents.rename2 %in% c("IPL")
        ]
    )
    mPL = SimpleList(
        ATAC = Merged.proj2.SPc$cellNames[
            Merged.proj2.SPc$Clusters %in% c("C6")  
        ],
        RNA = colnames(SPc.seRNA)[
            SPc.seRNA$idents.rename2 %in% c("mPL")
        ]
    ),
    L = SimpleList(
        ATAC = Merged.proj2.SPc$cellNames[
            Merged.proj2.SPc$Clusters %in% c("C1")  
        ],
        RNA = colnames(SPc.seRNA)[
            SPc.seRNA$idents.rename2 %in% c("L")
        ]
    ),)

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions