From 735dd46342001c496280b9198414a8793fc8fe13 Mon Sep 17 00:00:00 2001 From: Zena Lapp Date: Thu, 16 Nov 2023 19:57:14 -0700 Subject: [PATCH] Fix typo in function name resolves #3 --- .Rbuildignore | 2 ++ .gitignore | 2 ++ vignettes/bistro.Rmd | 4 ++-- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.Rbuildignore b/.Rbuildignore index 12942fb..38d70a4 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -8,3 +8,5 @@ ^docs$ ^pkgdown$ ^codecov\.yml$ +^doc$ +^Meta$ diff --git a/.gitignore b/.gitignore index 8ff9bf4..298da54 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,5 @@ .DS_Store inst/doc docs +/doc/ +/Meta/ diff --git a/vignettes/bistro.Rmd b/vignettes/bistro.Rmd index 987f235..4c0bfaf 100644 --- a/vignettes/bistro.Rmd +++ b/vignettes/bistro.Rmd @@ -231,9 +231,9 @@ We have also implemented a few other matching algorithms including: - `match_exact()`: Exact matching of all markers and alleles - `match_similarity()`: Similarity matching based on the highest similarity value between humans in a reference database -- `match_static_threshold()`: Matching based on static log10LR threshold. +- `match_static_thresh()`: Matching based on static log10LR threshold. -These algorithms take similar inputs to `bistro()`, or in the case of `match_static_threshold()`, a `bistro()` output. +These algorithms take similar inputs to `bistro()`, or in the case of `match_static_thresh()`, a `bistro()` output. Look out for our upcoming manuscript for a comparison of these methods.