-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepeatMasquer.Rmd
61 lines (50 loc) · 1.74 KB
/
repeatMasquer.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
---
title: "Masquer les éléments répétés"
author: "CHARRIAT Florian"
date: "22 mars 2018"
output:
html_document:
fig_caption: yes
highlight: zenburn
theme: cerulean
---
```{r knitr setup, include=FALSE, eval=TRUE, echo=FALSE, warning=FALSE}
# knitr::opts_chunk$set(echo=TRUE, eval=TRUE, cache=TRUE, message=FALSE, warning=FALSE, comment="")
library(knitr)
options(width=300)
knitr::opts_chunk$set(
fig.width = 10,
fig.height = 5,
fig.align = "center",
size = "tiny",
echo = TRUE, eval=TRUE,
warning = FALSE, message = FALSE,
results = TRUE, comment = "")
# knitr::asis_output("\\footnotesize")
```
<p style="text-align:justify";>Dans le but de masquer les éléments répétés tels que les éléments transposables, l'outil repeatMasker <a href='biblio.html#annotation1'>[5]</a> a été utilisé. Le script <a href="https://floriancha.github.io/Script/index.html" target="_blank">repeatMasker_build</a> a été réalisé dans le but de lancer tous les assemblages sélectionnés avec l'outil repeatMasker.</p>
```{r Package, echo=FALSE}
if(!require("knitr"))
{
install.packages('knitr')
}
if(!require("DT"))
{
install.packages('DT')
}
library('knitr')
library('DT')
```
#Statistique de l'outil repeatMasker
Ce tableau présente les statistiques données par repeatMasker de chaque souche.
```{r Importation des données, echo = FALSE}
dataQuality <-c()
WD <- 'StatQuality'
file.quality <- file.path(WD,'stat_repeatMasker')
data <- read.table(file=file.quality, sep="\t", header=TRUE)
rownames(data) <- data[,1]
data <- data[,2:ncol(data)]
datatable(data,colnames = c('Id.souche', colnames(data)),extensions = 'Buttons', options = list(dom = 'Blfrtip',buttons = c('copy', 'csv', 'excel', 'pdf', 'print')))
```