-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* DESCRIPTION for rOpensci * News out of README.md * Create NEWS.md * Links to ropensci in README.md * ropensci in codemeta.json * Create codemeta.json * Addressed CRAN gotchas See https://devguide.ropensci.org/building.html#crangotchas * NEWS.md link from README * reword code of conduct lines in README As described in https://devguide.ropensci.org/collaboration.html * Update CONTRIBUTING.md * Removed duplicated development Co-authored-by: Samuel Joseph Haynes <[email protected]>
- Loading branch information
Showing
5 changed files
with
96 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
Package: tidyqpcr | ||
Type: Package | ||
Title: Quantitative PCR Analysis with the Tidyverse | ||
Version: 0.5 | ||
Version: 1.0 | ||
Authors@R: c(person("Edward", "Wallace", email = "[email protected]", role = c("aut", "cre")), | ||
person("Sam", "Haynes", email = "[email protected]", role = c("ctb"))) | ||
Description: This package is for reproducible quantitative PCR (qPCR) analysis using packages from the tidyverse, notably dplyr and ggplot2. It normalizes (by ddCq), summarizes, and plots pre-calculated Cq data, and plots raw amplification and melt curves from Roche lightcycler machines. It does NOT (yet) calculate Cq data from amplification curves. | ||
Description: For reproducible quantitative PCR (qPCR) analysis building on packages from the ’tidyverse’, notably ’dplyr’ and ’ggplot2’. It normalizes (by ddCq), summarizes, and plots pre-calculated Cq data, and plots raw amplification and melt curves from Roche Lightcycler (tm) machines. It does NOT (yet) calculate Cq data from amplification curves. | ||
Depends: | ||
R (>= 3.1.0), | ||
tibble | ||
|
@@ -27,6 +27,6 @@ License: Apache License (>= 2) | |
LazyData: true | ||
RoxygenNote: 7.1.2 | ||
Encoding: UTF-8 | ||
URL: https://github.com/ewallace/tidyqpcr, https://ewallace.github.io/tidyqpcr/ | ||
BugReports: https://github.com/ewallace/tidyqpcr/issues | ||
URL: https://docs.ropensci.org/tidyqpcr, https://github.com/ropensci/tidyqpcr | ||
BugReports: https://github.com/ropensci/tidyqpcr/issues | ||
Language: en-GB |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## News | ||
|
||
* June 2022, removed plot helper functions `scale_..._nice` and `scale_loglog` from tidyqpcr, because those capabilities are now available in the [scales package](https://scales.r-lib.org) using `label_log` and similar functions. Older code may need to change `scale_y_log10nice` to `scale_y_log10(labels = scales::label_log())`, for example. | ||
* May 2022, Improvements in documentation and testing. Reorganized `display_plate` function to be more flexible, so older code will need to use `display_plate_qpcr` to ensure that `sample_id` and `target_id` info displays. Updated to v0.5. | ||
* January 2022, Improvements in documentation and argument-checking for v0.4. | ||
* October 2021, Unit tests now cover over 75% of tidyqpcr code. | ||
* June 2021, [tidyqpcr blogpost in eLife labs](https://elifesciences.org/labs/f23e268f/tidyqpcr-quantitative-pcr-analysis-in-the-tidyverse) | ||
* August 2020, relative quantification (delta delta Cq) added with function `calculate_deltadeltacq_bytargetid`, and a vignette illustrating this with a small data set from a 96-well plate. | ||
* June 2020, upgrades that break previous code. All function and variable names have been changed to snake case, i.e. lower case with underscore. Commits up to #ee6d192 change variable and function names. tidyqpcr now uses `sample_id` for nucleic acid sample (replaces Sample or SampleID), `target_id` for primer set/ probe (replaces TargetID or Probe), `prep_type` for nucleic acid preparation type (replaces Type), and `cq` for quantification cycle (replaces Cq or Ct). It should be possible to upgrade old analysis code by (case-sensitive) search and replace. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.