From 6bda6e50e72812d7df24eb930a474c59c3fecf1c Mon Sep 17 00:00:00 2001 From: Christine Markwalter <47062082+cfmw@users.noreply.github.com> Date: Thu, 21 Sep 2023 12:27:08 -0400 Subject: [PATCH] Update vignette SampleName should be character --- vignettes/bistro.Rmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vignettes/bistro.Rmd b/vignettes/bistro.Rmd index 4b2eac3..987f235 100644 --- a/vignettes/bistro.Rmd +++ b/vignettes/bistro.Rmd @@ -68,7 +68,7 @@ Two required, and one optional but often recommended, datasets are required to r ### Bloodmeal STR profiles (`bloodmeal_profiles`) -The bloodmeal STR profiles dataset should have one row per allele for each bloodmeal and marker, and include the allele peak height. Homozygous markers should only be included once (i.e. as one row). It must have four columns named SampleName, Marker, Allele, and Height. Here is an example included with `bistro`: +The bloodmeal STR profiles dataset should have one row per allele for each bloodmeal and marker, and include the allele peak height. Homozygous markers should only be included once (i.e. as one row). It must have four columns named SampleName, Marker, Allele, and Height. The SampleName column should hold character values. Here is an example included with `bistro`: ```{r} head(bloodmeal_profiles) @@ -83,7 +83,7 @@ unique(bloodmeal_profiles$SampleName) ### Human STR profiles (`human_profiles`) -The human STR profiles dataset takes a similar format to the bloodmeal STR profiles dataset - it should have one row per allele for each human and marker, but does not require peak heights. Again, homozygous markers should only be included once. The dataset must have three columns named SampleName, Marker, and Allele. Here is an example: +The human STR profiles dataset takes a similar format to the bloodmeal STR profiles dataset - it should have one row per allele for each human and marker, but does not require peak heights. Again, homozygous markers should only be included once. The dataset must have three columns named SampleName, Marker, and Allele. The SampleName column should hold character values. Here is an example: ```{r} head(human_profiles)