Mercurial > repos > mingchen0919 > rmarkdown_fastqc_site
view 4_per_sequence_GC_content.Rmd @ 3:54a93db1a101 draft
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_site commit 9285c2b8ad41a486dde2a87600a6b8267841c8b5-dirty
author | mingchen0919 |
---|---|
date | Tue, 08 Aug 2017 11:29:56 -0400 |
parents | d732d4526c6d |
children |
line wrap: on
line source
--- title: "Per Sequence GC Content" output: html_document --- ```{r setup, include=FALSE, warning=FALSE, message=FALSE} knitr::opts_chunk$set(echo = ECHO) ``` ## Per Sequence GC Content ```{r} PSGC_df = data.frame() PSGC_file_paths = read.csv('PSGC_file_paths.txt', header = TRUE, stringsAsFactors = FALSE) for(i in 1:nrow(PSGC_file_paths)) { # file_path = paste0('REPORT_OUTPUT_DIR/', PSGC_file_paths[i,2]) file_path = PSGC_file_paths[i,2] psgc_df = read.csv(file_path, sep='\t', header=TRUE, stringsAsFactors = FALSE) psgc_df$sample_id = rep(PSGC_file_paths[i,1], nrow(psgc_df)) PSGC_df = rbind(PSGC_df, psgc_df) } ``` ```{r} max_phred = max(PSGC_df$Count) + 5 hchart(PSGC_df, "line", hcaes(x = X.GC.Content, y = Count, group = sample_id)) %>% hc_title( text = "Per Sequence GC Content" ) %>% hc_xAxis( title = list(text = "% GC") ) %>% hc_exporting(enabled = TRUE) ```