Skip to content
Snippets Groups Projects
Commit ce3c9c6f authored by kohleman's avatar kohleman
Browse files

initial checkin:

Bioconductor: ShortRead qa

SVN: 17156
parent 27a0778f
No related branches found
No related tags found
No related merge requests found
require(multicore)
require (ShortRead)
args <- commandArgs(TRUE)
fastq_file <- args[1]
qa <- qa(getwd(),args[1], type="fastq")
report_dest <- paste(fastq_file, "ShortRead_qa", sep="_")
qa_report <- report (qa, dest=report_dest , type="html")
\ No newline at end of file
#!/bin/bash
R_SCRIP_PATH=/usr/local/dsu/R-scripts
for i in `ls -1 *.fastq`
do
Rscript --vanilla $R_SCRIP_PATH/createQaReport.R $i &
done
wait $!
echo * DONE *
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment