The lazychromosomes package allows quantitative assessment of chromosome segregation via the laziness statistic which measures how far a chromosome is from the other chromosomes associated with the same daughter cell.
The lazychromosomes package is available on github and can be installed via
devtools::install_github("shug3502/lazychromosomes",ref="main")
library(dplyr)
library(lazychromosomes)
data(kttracks)
kttracks %>%
annotate_anaphase_onset_for_cell(method="manual",t_ana_frame=86) %>%
get_laziness() %>%
group_by(SisterPairID) %>%
summarise(max_laziness=max(laziness,na.rm=T))
To use with your own data, first track a movie using the kinetochore tracking software KiT available from github
Export the tracks from MATLAB as a csv file using kitMakeAnalysisTable. These tracks can be loaded and processed in R using the lazychromosomes::process_jobset function.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.