r Sys.Date()
r params$n_primers
r params$primer_names
r params$format
r params$exclude_border
sp <- params$sample_prep colnames(sp) <- c("Sample", "[RNA]", names(sp)[-c(1:2)]) sp |> gt::gt() |> gt::fmt_number(c("diluted_rna_to_add", "water_to_add")) |> gt::cols_label( dilution_factor = "Dil. Factor", diluted_concentration = "Dil. [RNA] ", diluted_rna_to_add = "Vol. dil. [RNA]", water_to_add = "Vol. H2O", final_vol = "Vol. final (uL)" ) |> gt::tab_style( style = list( gt::cell_fill(color = "#2C5295"), gt::cell_text(color = "#FFFFFF"), gt::cell_borders(color = "#1C345F") ), locations = gt::cells_body() ) |> gt::tab_style( style = list( gt::cell_fill(color = "#1C345F"), gt::cell_text(weight = "bold", color = "#FFFFFF"), gt::cell_borders(color = "#1C345F") ), locations = gt::cells_column_labels() ) |> gt::tab_options(table.align = "left") |> gt::tab_options( column_labels.border.bottom.color = "#1C345F" ) |> gt::opt_table_outline(color = "#1C345F")
params$mm_prep |> gt::gt() |> gt::fmt_number( c("vol") ) |> gt::cols_label( reagent = "Reagent", vol = "Volume (uL)" ) |> gt::tab_style( style = list( gt::cell_fill(color = "#2C5295"), gt::cell_text(color = "#FFFFFF"), gt::cell_borders(color = "#1C345F") ), locations = gt::cells_body() ) |> gt::tab_style( style = list( gt::cell_fill(color = "#1C345F"), gt::cell_text(weight = "bold", color = "#FFFFFF"), gt::cell_borders(color = "#1C345F") ), locations = gt::cells_column_labels() ) |> gt::tab_options(table.align = "left") |> gt::tab_options( column_labels.border.bottom.color = "#1C345F" ) |> gt::opt_table_outline(color = "#1C345F")
gplate::gp_plot(params$plate, primers)
gplate::gp_plot(params$plate, samples)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.