view 02_fastqc_original_reports.Rmd @ 10:600c39b11913 draft

planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_site commit 60ea96204588be4348bd5d7879d1eb0d73f487c7-dirty
author mingchen0919
date Tue, 15 Aug 2017 15:50:21 -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)
```