Replacing the Read-Count slot of a BCdat objects.
Replacing the Read-Count slot of a BCdat objects.
setReads(object, value)
object |
a BCdat object. |
value |
a data.frame caontaining two columns called "read_count" and "barcode". |
a BCdat object.
data(BC_dat) require("dplyr") bcs <- unlist(lapply(1:20, function(x) { c("A", "C", "T", "G") %>% sample(replace = TRUE, size = 32) %>% paste0(collapse = "") })) new_read_count_table <- data.frame(read_count = sample(1:1000, size = 20), barcode = bcs) BC_dat_new <- setReads(BC_dat, new_read_count_table)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.