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

started migration of cluster tools to github

parent 6bdc735a
No related branches found
No related tags found
No related merge requests found
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