Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
✓DOI references
Found 3 DOI reference(s) in README -
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (12.0%) to scientific vocabulary
Keywords
qpcr
r
Last synced: 10 months ago
·
JSON representation
Repository
Real-Time PCR Data Sets by Karlen et al. (2007)
Basic Info
- Host: GitHub
- Owner: ramiromagno
- License: cc-by-4.0
- Language: R
- Default Branch: main
- Homepage: https://rmagno.eu/karlen/
- Size: 5.81 MB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Topics
qpcr
r
Created about 2 years ago
· Last pushed about 2 years ago
Metadata Files
Readme
License
README.Rmd
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# karlen
[](https://CRAN.R-project.org/package=karlen)
[](https://github.com/ramiromagno/karlen/actions/workflows/R-CMD-check.yaml)
`{karlen}` provides real-time PCR data sets by Karlen et al. (2007) in tidy
format.
## Installation
``` r
install.packages("karlen")
```
## Data
The raw PCR amplification curve data by Karlen et al. (2007) is provided as one
single eponymously named data set: `karlen`. In the original publication each
data set pertaining one PCR plate is provided as a separate spreadsheet file.
The column `plate` in `karlen` distinguishes each data set.
The `karlen` data set comprises quantitative real-time PCRs for
four samples (S1 thru S4), for seven amplicons targeting seven genes: Cav1,
Ctfg, Eln, Fn1, Rpl27, Hspg2, Serpine1.
For each sample/target combination a dilution series was performed. One PCR
plate was used per amplicon, except for Rpl27 (L27) that was assayed twice
(plates L27_1 and L27_2). The `target` column indicates the mouse gene symbol
matching the targeted amplicon.
```{r}
library(ggplot2)
library(dplyr, warn.conflicts = FALSE)
library(karlen)
karlen |>
dplyr::distinct(plate, target, sample, sample_type) |>
print(n = Inf)
```
Two dilution series schemes were assayed:
1. Scheme 1 (Cav1, Eln, Hspg2, Serpine1): 1-fold, 10-fold, 50-fold, and 100-fold;
2. Scheme 2 (Ctgf, Rpl27, Fn1): 1-fold, 10-fold, 50-fold, 100-fold and 1000-fold (two replicates only).
```{r}
karlen |>
dplyr::filter(sample_type == "std") |>
dplyr::distinct(plate, target, dilution) |>
print(n = Inf)
```
Visualization of amplification curves (NTC curves are omitted):
```{r example, dev='png', dpi=400, fig.width=10, fig.height=15}
karlen |>
dplyr::filter(sample_type != "ntc") |>
ggplot(aes(x = cycle, y = fluor, group = well, col = as.factor(dilution))) +
geom_line(linewidth = 0.1) +
geom_point(size = 0.05) +
facet_grid(rows = vars(plate), cols = vars(sample), scales = "free_y") +
labs(color = "Fold dilution")
```
## References
Yann Karlen, Alan McNair, Sébastien Perseguers, Christian Mazza, and Nicolas
Mermod. _Statistical significance of quantitative PCR_. BMC Bioinformatics 8, 131
(2007). doi: [10.1186/1471-2105-8-131](https://doi.org/10.1186/1471-2105-8-131).
Owner
- Name: Ramiro Magno
- Login: ramiromagno
- Kind: user
- Company: Pattern Institute
- Repositories: 65
- Profile: https://github.com/ramiromagno
Data Scientist
GitHub Events
Total
Last Year
Issues and Pull Requests
Last synced: 10 months ago
All Time
- Total issues: 0
- Total pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Total issue authors: 0
- Total pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- cran 151 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 1
- Total maintainers: 1
cran.r-project.org: karlen
Real-Time PCR Data Sets by Karlen et al. (2007)
- Homepage: https://rmagno.eu/karlen/
- Documentation: http://cran.r-project.org/web/packages/karlen/karlen.pdf
- License: CC BY 4.0
-
Latest release: 0.0.2
published about 2 years ago
Rankings
Dependent packages count: 27.8%
Average: 31.7%
Dependent repos count: 35.7%
Maintainers (1)
Last synced:
10 months ago
Dependencies
.github/workflows/R-CMD-check.yaml
actions
- actions/checkout v4 composite
- r-lib/actions/check-r-package v2 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
.github/workflows/pkgdown.yaml
actions
- JamesIves/github-pages-deploy-action v4.5.0 composite
- actions/checkout v4 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
DESCRIPTION
cran
- R >= 2.10 depends
- tibble * imports