-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathREADME.Rmd
39 lines (29 loc) · 988 Bytes
/
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
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
multiqc_data_path = system.file("extdata", "wgs/multiqc_data.json", package = "TidyMultiqc")
```
# TidyMultiqc
TidyMultiqc Provides the means to convert 'multiqc_data.json' files, produced by the wonderful 'MultiQC' tool, into tidy data frames for downstream analysis in R.
**Please visit [the pkgdown website](https://multimeric.github.io/TidyMultiqc/index.html) for a comprehensive tutorial and function documentation.**
## Installation
The latest stable version can be installed from CRAN:
```r
install.packages("TidyMultiqc")
```
You can also install the development version of TidyMultiqc from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("multimeric/TidyMultiqc")
```
## Example
```{r example}
TidyMultiqc::load_multiqc(multiqc_data_path)
```