PCR増幅曲線

リアルタイムPCR増幅曲線テンプレート。Ct値の決定に使用。

PCRCt値増幅
PCR増幅曲線

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Cycle number", limits = c(0, 40)) +
  scale_y_continuous(name = "Fluorescence (RFU)", limits = c(0, 5000)) +
  labs(title = "PCR Amplification Curve") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))