11
|
1 ---
|
|
2 title: 'Kmer Content'
|
|
3 output:
|
|
4 html_document:
|
|
5 number_sections: true
|
|
6 toc: true
|
|
7 theme: cosmo
|
|
8 highlight: tango
|
|
9 ---
|
|
10
|
|
11 ```{r setup, include=FALSE, warning=FALSE, message=FALSE}
|
|
12 knitr::opts_chunk$set(
|
|
13 echo = ECHO,
|
|
14 error = TRUE
|
|
15 )
|
|
16 ```
|
|
17
|
|
18 ### Kmer Content {.tabset}
|
|
19
|
|
20 #### Before
|
|
21
|
|
22 ```{r 'Kmer Content (before)', fig.width=10}
|
|
23 kc_1 = extract_data_module('REPORT_DIR/reads_1_fastqc_data.txt', 'Kmer Content')
|
|
24 knitr::kable(kc_1)
|
|
25 ```
|
|
26
|
|
27 #### After
|
|
28 ```{r 'Kmer Content (after)', fig.width=10}
|
|
29 kc_2 = extract_data_module('REPORT_DIR/reads_2_fastqc_data.txt', 'Kmer Content')
|
|
30 knitr::kable(kc_2)
|
|
31 ``` |