-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.Rmd
87 lines (70 loc) · 1.86 KB
/
index.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
title: "3D'omics | Colon microdissection test"
subtitle: "Developmental work"
author:
- Antton Alberdi^[University of Copenhagen, antton.alberdi@sund.ku.dk]
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
documentclass: book
bibliography: [book.bib, packages.bib]
url: https://3d-omics.github.io/ANMI007_colon_test
description: |
Data analysis code for data analysis of the half-volume reaction and Celero adaptor test
link-citations: yes
github-repo: 3d-omics/ANMI007_colon_test
---
```{r knitr_opts, echo=FALSE}
knitr::opts_chunk$set(
class.source = "script-source",
class.output = "script-output",
comment = NA)
```
# Introduction
This webbook contains all the code used for the study on the effect of probiotics on Salmonella infection in broiler chicken.
## Prepare the R environment
### Environment
To reproduce all the analyses locally, clone this repository in your computer using:
```
RStudio > New Project > Version Control > Git
```
And indicating the following git repository:
> https://github.com/3d-omics/ANMI011_two_chicken_colon.git
Once the R project has been created, follow the instructions and code chunks shown in this webbook.
### Libraries
The following R packages are required for the data analysis.
```{r load_libraries, warning=FALSE, comments="", message=FALSE}
# Base
library(R.utils)
library(knitr)
library(tidyverse)
library(devtools)
library(tinytable)
library(broom)
library(broom.mixed)
library(rairtable)
# For tree handling
library(ape)
library(phyloseq)
library(phytools)
# For plotting
library(ggplot2)
library(ggrepel)
library(ggpubr)
library(ggnewscale)
library(gridExtra)
library(ggtreeExtra)
library(ggtree)
library(ggh4x)
library(jpeg)
library(patchwork)
# For statistics
library(spaa)
library(vegan)
library(Rtsne)
library(geiger)
library(hilldiv2)
library(distillR)
library(ANCOMBC)
library(lme4)
library(Hmsc)
```