-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
68 lines (50 loc) · 2.17 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# bistro: bloodmeal identification by STR overlap <a href='https://github.com/duke-malaria-collaboratory/bistro'><img src='man/figures/logo.png' align="right" height="120" /></a>
<!-- badges: start -->
[![R-CMD-check](https://github.com/duke-malaria-collaboratory/bistro/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/duke-malaria-collaboratory/bistro/actions/workflows/R-CMD-check.yaml)
[![Codecov test coverage](https://codecov.io/gh/duke-malaria-collaboratory/bistro/branch/main/graph/badge.svg)](https://app.codecov.io/gh/duke-malaria-collaboratory/bistro?branch=main)
[![License: LGPL v3](https://img.shields.io/badge/License-LGPL_v3-blue.svg)](https://www.gnu.org/licenses/lgpl-3.0)
[![DOI](https://zenodo.org/badge/687221823.svg)](https://zenodo.org/badge/latestdoi/687221823)
<!-- badges: end -->
Functions to allow for the identification of matches between bloodmeals and the people they bit using short tandem repeat (STR) profiles of human blood from freshly fed bloodmeals and from people.
## Installation
You can install bistro like so:
``` r
# install.packages("remotes")
remotes::install_github("duke-malaria-collaboratory/bistro")
```
## Dependencies:
```{r deps, echo = FALSE, message = FALSE, warning = FALSE}
library(dplyr)
description <- utils::packageDescription("bistro",
fields = c("Depends", "Imports", "Suggests")
)
deps <- lapply(
names(description),
function(x) {
paste0(
"- ", x, ": ",
description[[x]] %>%
gsub("\n", " ", .)
)
}
) %>%
unlist() %>%
paste(., collapse = "\n")
```
`r deps`
## Usage
Check out the [vignette](https://duke-malaria-collaboratory.github.io/bistro/articles/bistro.html) for more information.
## Have questions or need help troubleshooting?
Open up an [issue](https://github.com/duke-malaria-collaboratory/bistro/issues) on our GitHub page or contact us (Christine: [email protected], Zena: [email protected]) and we can help out.