view rmarkdown_flagstat.Rmd @ 0:ba913054bbff draft

planemo upload
author mingchen0919
date Tue, 26 Dec 2017 19:27:41 -0500
parents
children
line wrap: on
line source

---
title: 'samtools flagstat'
output:
    html_document:
      number_sections: true
      toc: true
      theme: cosmo
      highlight: tango
---

```{r setup, include=FALSE, warning=FALSE, message=FALSE}
knitr::opts_chunk$set(
  echo = ECHO
)
```


# Code for computational analysis

```{r 'run flagstat'}
command = paste0('samtools flagstat ', opt$input_bam, ' > report.txt')
system(command)
```