Skip to content

Instantly share code, notes, and snippets.

@joowkim
Created April 22, 2022 22:24
Show Gist options
  • Save joowkim/52b6b77b57a75a71fb9506a8c1406f89 to your computer and use it in GitHub Desktop.
Save joowkim/52b6b77b57a75a71fb9506a8c1406f89 to your computer and use it in GitHub Desktop.
RLE for DEseq2
rle <- function(vec) {
n <- length(vec)
return (round( (prod(vec) ^ (1/n))))
}
vec <- c(65,78,67,34,56,23)
rle(vec)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment