Calculate the Ralative Quantity from a qPCR analysis set.
Find a file
2024-07-03 13:17:34 -03:00
data Initial commit 2024-06-28 10:48:53 -03:00
man Initial commit 2024-06-28 10:48:53 -03:00
R return samples table instead of means tables 2024-07-03 13:17:34 -03:00
.gitignore Initial commit 2024-06-28 10:48:53 -03:00
.Rbuildignore Initial commit 2024-06-28 10:48:53 -03:00
DESCRIPTION return samples table instead of means tables 2024-07-03 13:17:34 -03:00
LICENSE.md Initial commit 2024-06-28 10:48:53 -03:00
NAMESPACE Initial commit 2024-06-28 10:48:53 -03:00
README.md Initial commit 2024-06-28 10:57:24 -03:00
README.Rmd Initial commit 2024-06-28 10:57:24 -03:00
rq.Rproj Initial commit 2024-06-28 10:48:53 -03:00

rq

The goal of rq is to calculate the Relative Quantity of qPCR sets.

Installation

You can install the latest version of rq by downloading the latest release from this repository and executing:

install.packages('rq_<version>.tar.gz', repos = NULL, type = 'source', dependencies = TRUE)

or directly from R with an internet connection using devtools:

devtools::install_github('godrigos/rq', dependencies = TRUE)

Example

This is an example on how to use rq:

library(rq)
RQ <- rq(qpcr, "pUC18", "WT", "ITS2")
RQ

For more details consult the package help files inside R.