Skip to content
Snippets Groups Projects
createQaReport.sh 169 B
Newer Older
  • Learn to ignore specific revisions
  • kohleman's avatar
    kohleman committed
    #!/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 *