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.1%) to scientific vocabulary
Keywords
qpcr
r
Last synced: 6 months ago
·
JSON representation
Repository
Real-Time PCR Data Sets by Batsch et al. (2008)
Basic Info
- Host: GitHub
- Owner: ramiromagno
- License: cc-by-4.0
- Language: R
- Default Branch: main
- Homepage: https://rmagno.eu/batsch/
- Size: 2.89 MB
Statistics
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Topics
qpcr
r
Created about 3 years ago
· Last pushed almost 2 years ago
Metadata Files
Readme
Changelog
License
Code of conduct
README.Rmd
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
library(tidyverse)
```
# batsch
[](https://CRAN.R-project.org/package=batsch)
[](https://github.com/ramiromagno/batsch/actions/workflows/R-CMD-check.yaml)
`{batsch}` provides real-time PCR data sets by Batsch et al. (2008) in tidy
format. There are five data sets bundled with this package, one for each PCR
target:
- `SLC6A14r` for *rat SLC6A14*
- `SLC22A13h` for *human SLC22A13*
- `EMTp` for *pig EMT*
- `ETTch` for *chicken ETT*
- `GAPDHh` for *human GAPDH*
Each data set comprises a five-point, four-fold dilution series. For each
concentration there are three replicates. Each amplification curve is 45 cycles
long.
## Installation
Install `{batsch}` from CRAN:
``` r
# Install from CRAN
install.packages("batsch")
```
You can instead install the development version of `{batsch}` from GitHub:
``` r
# install.packages("remotes")
remotes::install_github("ramiromagno/batsch")
```
## Usage
### Rat SLC6A14
```{r dpi=300, fig.width=8, fig.height=4}
library(batsch)
SLC6A14r |>
ggplot(mapping = aes(
x = cycle,
y = fluor,
group = interaction(dilution, replicate),
col = as.factor(dilution)
)) +
geom_line(linewidth = 0.5) +
labs(y = "Raw fluorescence", colour = "Dilution factor", title = "Rat SLC6A14") +
guides(color = guide_legend(override.aes = list(size = 0.5)))
```
### Human SLC22A13
```{r dpi=300, fig.width=8, fig.height=4}
SLC22A13h |>
ggplot(mapping = aes(
x = cycle,
y = fluor,
group = interaction(dilution, replicate),
col = as.factor(dilution)
)) +
geom_line(linewidth = 0.5) +
labs(y = "Raw fluorescence", colour = "Dilution factor", title = "Human SLC22A13") +
guides(color = guide_legend(override.aes = list(size = 0.5)))
```
### Pig EMT
```{r dpi=300, fig.width=8, fig.height=4}
EMTp |>
ggplot(mapping = aes(
x = cycle,
y = fluor,
group = interaction(dilution, replicate),
col = as.factor(dilution)
)) +
geom_line(linewidth = 0.5) +
labs(y = "Raw fluorescence", colour = "Dilution factor", title = "Pig EMT") +
guides(color = guide_legend(override.aes = list(size = 0.5)))
```
### Chicken ETT
```{r dpi=300, fig.width=8, fig.height=4}
ETTch |>
ggplot(mapping = aes(
x = cycle,
y = fluor,
group = interaction(dilution, replicate),
col = as.factor(dilution)
)) +
geom_line(linewidth = 0.5) +
labs(y = "Raw fluorescence", colour = "Dilution factor", title = "Chicken ETT") +
guides(color = guide_legend(override.aes = list(size = 0.5)))
```
### Human GAPDH
```{r dpi=300, fig.width=8, fig.height=4}
GAPDHh |>
ggplot(mapping = aes(
x = cycle,
y = fluor,
group = interaction(dilution, replicate),
col = as.factor(dilution)
)) +
geom_line(linewidth = 0.5) +
labs(y = "Raw fluorescence", colour = "Dilution factor", title = "Human GAPDH") +
guides(color = guide_legend(override.aes = list(size = 0.5)))
```
## Code of Conduct
Please note that the `{batsch}` project is released with a [Contributor Code of
Conduct](https://contributor-covenant.org/version/2/1/CODE_OF_CONDUCT.html). By
contributing to this project, you agree to abide by its terms.
## References
- Anke Batsch, Andrea Noetel, Christian Fork, Anita Urban, Daliborka Lazic, Tina Lucas, Julia Pietsch, Andreas Lazar, Edgar Schömig & Dirk Gründemann. _Simultaneous fitting of real-time PCR data with efficiency of amplification modeled as Gaussian function of target fluorescence_. BMC Bioinformatics 9:95 (2008). doi: [10.1186/1471-2105-9-95](https://doi.org/10.1186/1471-2105-9-95).
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: 7 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 610 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 2
- Total maintainers: 1
cran.r-project.org: batsch
Real-Time PCR Data Sets by Batsch et al. (2008)
- Homepage: https://github.com/ramiromagno/batsch
- Documentation: http://cran.r-project.org/web/packages/batsch/batsch.pdf
- License: CC BY 4.0
-
Latest release: 0.1.1
published almost 2 years ago
Rankings
Forks count: 28.8%
Dependent packages count: 29.8%
Stargazers count: 35.2%
Dependent repos count: 35.5%
Average: 36.3%
Downloads: 52.3%
Maintainers (1)
Last synced:
7 months ago