Skip to content
Snippets Groups Projects
Commit 8cc38478 authored by Holger Brandl's avatar Holger Brandl
Browse files

cosmetics

parent a1300ffc
No related branches found
No related tags found
No related merge requests found
......@@ -2,18 +2,17 @@
## create fastq report for all fastq and fastq.gz files in the current directory
mmFastqc(){
outputDir="fastqc_reports"
# filePattern="fastq.gz"
# outputDir=$1
# filePattern=$2
mkdir $outputDir
for fastqFile in *fastq *fastq.gz ; do
if [ ! -f $fastqFile ]; then
continue;
fi
echo processing $fastqFile
# bsub -q medium --J fastqc_$(basename $fastqFile) "fastqc -j /sw/bin/java -o $outputDir -f fastq $fastqFile" | joblist .fastqc_jobs
mysub "fastqc__$(basename $fastqFile)" "fastqc -j /sw/bin/java -o $outputDir -f fastq $fastqFile" -q medium | joblist .fastqc_jobs
done
wait4jobs .fastqc_jobs
}
export -f mmFastqc
......
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