Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update vignette #1

Merged
merged 1 commit into from
Oct 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions vignettes/bistro.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down