Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ramiromagno/boggy

Real-Time PCR Data Sets by Boggy et al. (2010)
https://github.com/ramiromagno/boggy

qpcr r

Last synced: 8 days ago
JSON representation

Real-Time PCR Data Sets by Boggy et al. (2010)

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# boggy

[![CRAN status](https://www.r-pkg.org/badges/version/boggy)](https://CRAN.R-project.org/package=boggy)
[![R-CMD-check](https://github.com/ramiromagno/boggy/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/ramiromagno/boggy/actions/workflows/R-CMD-check.yaml)

`{boggy}` provides the real-time PCR data set _s1_ by Boggy et al. (2010) in
tidy format.

## Installation

``` r
install.packages("boggy")
```

## Usage

```{r example, dev='svg'}
library(boggy)
library(ggplot2)

s1 |>
ggplot(mapping = aes(
x = cycle,
y = fluor,
group = well,
col = format(copies, big.mark = ",", scientific = FALSE)
)) +
geom_line(linewidth = 0.2) +
geom_point(size = 0.2) +
labs(color = "Copy number")
```

## References

Gregory J. Boggy & Peter J. Woolf. A Mechanistic Model of PCR for Accurate
Quantification of Quantitative PCR Data. PLoS ONE 5:8 (2010). doi:
[10.1371/journal.pone.0012355](https://doi.org/10.1371/journal.pone.0012355).