-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME.Rmd
More file actions
57 lines (40 loc) · 2.02 KB
/
README.Rmd
File metadata and controls
57 lines (40 loc) · 2.02 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
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# fastqcviz <a href='https://github.com/barreiro-r/fastqc-viz/'><img src='man/figures/logo.png' align="right" height="138" width="120"/></a>
<!-- badges: start -->
[](https://github.com/barreiro-r/fastqc-viz/actions/workflows/R-CMD-check.yaml)
[](https://app.codecov.io/gh/barreiro-r/fastqc-viz)
[](https://www.tidyverse.org/lifecycle/#experimental)
[](https://www.r-pkg.org/pkg/fastqcviz)
<!-- badges: end -->
The `fastqcviz` package was developed to give [FastQC](https://github.com/s-andrews/FastQC) reports the aesthetic and functional love it deserves, transforming its insights into a more visually appealing experience without changing the core analysis. A modest re-desing update for the classic FastQC report.
classic report: [FastQC](https://www.bioinformatics.babraham.ac.uk/projects/fastqc/good_sequence_short_fastqc.html) | ✨ `fastqcviz` report : [fastqcviz](https://html-preview.github.io/?url=https://github.com/barreiro-r/fastqc-viz/blob/main/man/figures/example.html)

## Installation
You can install the development version of fastqcviz from [GitHub](https://github.com/) with:
```{r}
#| label: install
#| eval : FALSE
# install.packages("remotes")
remotes::install_github("barreiro-r/fastqc-viz")
```
## Example
Using fastqcviz is as easy as:
```{r}
#| label: example
#| eval : FALSE
library(fastqcviz)
create_fastqcviz_report(
fastqc_path = "path/to/sample_fastqc/fastqc_data.txt",
output_dir = "fastqcviz_report",
embed_resources = TRUE)
```