ゲル電気泳動

アガロースゲル電気泳動の分子量推定テンプレート。DNA断片のサイズ推定に使用。

電気泳動DNA分子量
ゲル電気泳動

R Code (ggplot2)

library(ggplot2)

# ---- Gel Electrophoresis ----
# あなたのデータを入力してください
df <- data.frame(
  x = c(),
  y = c()
)

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Migration distance (cm)", limits = c(0, 10)) +
  scale_y_continuous(name = "log MW (bp)", limits = c(2, 5)) +
  labs(title = "Gel Electrophoresis") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))