view 02_fastqc_original_reports.Rmd @ 9:848cf699c443 draft

planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_site commit a23e23222252167ef7c3338a4872e84706df8f83-dirty
author mingchen0919
date Tue, 08 Aug 2017 14:56:32 -0400
parents d732d4526c6d
children
line wrap: on
line source

---
title: "FastQC original reports"
output: html_document
---

```{r 'FastQC original reports', include=FALSE, warning=FALSE, message=FALSE}
knitr::opts_chunk$set(echo = ECHO)
```


Below are links to ***Fastqc*** original html reports.

```{r 'html report links'}
html_report_list = list()
html_files = list.files('REPORT_OUTPUT_DIR', pattern = '.*html')
for (i in html_files) {
  html_report_list[[i]] = tags$li(tags$a(href=i, i))
}
tags$ul(html_report_list)
```