Skip to content

Commit e57f726

Browse files
Fix example references to renamed odds_ratios_filtered files
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 1a517fe commit e57f726

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

R/plot-chord.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
#' @examples
4242
#' \donttest{
4343
#' path <- clover_example(
44-
#' "ecoli/summary/tables/wt-15-ctl-01/wt-15-ctl-01.odds_ratios.tsv.gz"
44+
#' "ecoli/summary/tables/wt-15-ctl-01/wt-15-ctl-01.odds_ratios_filtered.tsv.gz"
4545
#' )
4646
#' or_data <- read_odds_ratios(path)
4747
#' or_data <- dplyr::filter(or_data, ref == "host-tRNA-Glu-TTC-1-1")

R/read-charging.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ read_charging <- function(path) {
2727
#' Read a per-position-pair odds ratio file produced by the tRNA sequencing
2828
#' pipeline. These files contain pairwise modification co-occurrence statistics.
2929
#'
30-
#' @param path Path to a `{sample}.odds_ratios.tsv.gz` file.
30+
#' @param path Path to a `{sample}.odds_ratios_filtered.tsv.gz` file.
3131
#'
3232
#' @return A tibble with columns including `ref`, `pos1`, `pos2`,
3333
#' `odds_ratio`, `log_odds_ratio`, `p_value`, and `total_obs`.
@@ -36,7 +36,7 @@ read_charging <- function(path) {
3636
#'
3737
#' @examples
3838
#' path <- clover_example(
39-
#' "ecoli/summary/tables/wt-15-ctl-01/wt-15-ctl-01.odds_ratios.tsv.gz"
39+
#' "ecoli/summary/tables/wt-15-ctl-01/wt-15-ctl-01.odds_ratios_filtered.tsv.gz"
4040
#' )
4141
#' read_odds_ratios(path)
4242
read_odds_ratios <- function(path) {
@@ -106,10 +106,10 @@ read_charging_multi <- function(paths) {
106106
#' @examples
107107
#' paths <- c(
108108
#' "wt-15-ctl-01" = clover_example(
109-
#' "ecoli/summary/tables/wt-15-ctl-01/wt-15-ctl-01.odds_ratios.tsv.gz"
109+
#' "ecoli/summary/tables/wt-15-ctl-01/wt-15-ctl-01.odds_ratios_filtered.tsv.gz"
110110
#' ),
111111
#' "wt-15-ctl-02" = clover_example(
112-
#' "ecoli/summary/tables/wt-15-ctl-02/wt-15-ctl-02.odds_ratios.tsv.gz"
112+
#' "ecoli/summary/tables/wt-15-ctl-02/wt-15-ctl-02.odds_ratios_filtered.tsv.gz"
113113
#' )
114114
#' )
115115
#' read_odds_ratios_multi(paths)

man/clover-package.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/plot_chord_or.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/read_odds_ratios.Rd

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/read_odds_ratios_multi.Rd

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vignettes/articles/structure.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ magnitude.
264264
```{r}
265265
#| label: linkages-setup
266266
or_path <- clover_example(
267-
"ecoli/summary/tables/wt-15-ctl-01/wt-15-ctl-01.odds_ratios.tsv.gz"
267+
"ecoli/summary/tables/wt-15-ctl-01/wt-15-ctl-01.odds_ratios_filtered.tsv.gz"
268268
)
269269
or_data <- read_odds_ratios(or_path)
270270

0 commit comments

Comments
 (0)