Skip to content

Missing G2 phase in LengESCData #51

@bug1303

Description

@bug1303

Column metadata for this dataset supposedly contains experimentally determined cell cycle phase for each cell, however:

sce.ref <- scRNAseq::LengESCData()

table(sce.ref$Phase, useNA="ifany")
 
   G1    S <NA> 
   91   80  289 

So, I looked back at the data and the code used to create this dataset, and found that G2 in fact is present:

phase <- sub("_Exp.*", "", colnames(sce.ref)) 
table(phase)
phase
 G1  G2  H1   S 
 91  76 213  80 

So, this line of code:
phase[!phase %in% c("G1", "S", "G2M")] <- NA
should be changed into
phase[!phase %in% c("G1", "S", "G2")] <- NA

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions