Nothing
### CSR
crudeSequenceRatio <- function(table) {
n_index_before_marker <- table |>
dplyr::pull("index_first") |>
sum()
n_marker_before_index <- table |>
dplyr::pull("marker_first") |>
sum()
crudeSequenceRatio <- n_index_before_marker / n_marker_before_index
return(crudeSequenceRatio)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.