forked from biodosetools-team/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.Rmd
More file actions
63 lines (52 loc) · 2.68 KB
/
Copy pathindex.Rmd
File metadata and controls
63 lines (52 loc) · 2.68 KB
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
---
title: "Biodose Tools"
subtitle: "User Manual & Documentation"
author: "Alfredo Hernández, Joan Francesc Barquinero"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
output: bookdown::bs4_book
documentclass: scrartcl
bibliography: [bib/articles.bib, bib/manuals.bib, bib/software.bib, bib/packages.bib, bib/extra.bib]
biblio-style: abbrv
# biblio-style: apalike
link-citations: yes
github-repo: biodosetools-team/documentation
description: "User Guide & Documentation for Biodose Tools"
apple-touch-icon: "favicon-highres.png"
apple-touch-icon-size: 120
favicon: "favicon.png"
cover-image: "images/cover.png"
---
# Welcome {-}
```{r setup, include=FALSE}
library(dplyr)
library(biodosetools)
options(knitr.graphics.auto_pdf = TRUE)
source("contents/aux_functions.R")
```
```{r echo=FALSE, out.width = '60%', fig.align='center'}
knitr::include_graphics("images/home.svg")
```
[Biodose Tools](https://biodosetools-team.github.io/biodosetools/) ([Hernández et al. 2023](https://doi.org/10.1080/09553002.2023.2176564)) is an open source project that aims to be a tool to perform all different tests and calculations needed by biological dosimetry laboratories. The app is developed using the [R](https://www.r-project.org/about.html) [@R-base] programming language and [Shiny](https://shiny.rstudio.com/) [@R-shiny] as a framework to offer an online, easy-to-use solution. Although the intention is to provide the application as a website, all R routines are available as an R package, which can be downloaded for improvement or personal use.
We also aim to clarify and explain the tests used and to propose those considered most appropriate. Each laboratory in its routine work should choose the most suitable method, but the project aims to reach a consensus that will help us in case of mutual assistance or intercomparisons.
The project is initially developed by [RENEB](https://www.reneb.net/) association, but contributions are always welcome.
```{r, echo = FALSE, out.width = '15%', fig.align = "center"}
knitr::include_graphics("images/cc-by-nc-sa.png", dpi = 192)
```
The online version of this book is licensed under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-nc-sa/4.0/).
```{r include=FALSE}
# Automatically create a bib database for R packages
knitr::write_bib(c(
.packages(),
# Markdown
"bookdown", "knitr", "rmarkdown", "markdown",
# R API
"tidyverse", "dplyr", "tidyr", "rlang", "ggplot2", "magrittr",
"stats", "MASS", "maxLik", "mixtools", "msm", "cli",
# Shiny
"shiny", "shinydashboard", "shinyWidgets", "bsplus",
"rhandsontable", "pander", "xtable",
# Golem
"config", "golem"
), "bib/packages.bib")
```