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

fixed partition name

parent c0829296
No related branches found
No related tags found
No related merge requests found
......@@ -186,7 +186,7 @@ for bamFile in $bamFiles; do
sample=$(basename $bamFile .bam)
echo "converting $bamFile to bigwig format"
jl submit -j .bigwig -q short -n "${project}__bw__${sample}" "genomeCoverageBed -split -bg -ibam $bamFile -g ${genomeFai} | wigToBigWig -clip stdin ${genomeFai} ${sample}.bw"
jl submit -j .bigwig -w 10:00 -n "${project}__bw__${sample}" "genomeCoverageBed -split -bg -ibam $bamFile -g ${genomeFai} | wigToBigWig -clip stdin ${genomeFai} ${sample}.bw"
done
jl wait --report .bigwig
......@@ -270,7 +270,7 @@ dge_create_star_index(){
cmd="STAR --runMode genomeGenerate --genomeDir ${star_index} --genomeFastaFiles ${igenome}/Sequence/WholeGenomeFasta/genome.fa --runThreadN 10"
#eval $cmd
#STAR --runMode genomeGenerate --genomeDir ${star_index} --genomeFastaFiles ${igenome}/Sequence/Chromosomes/*.fa --runThreadN 10
jl submit --wait -t 5 -q medium -n "${project}_star_index" "$cmd"
jl submit --wait -t 5 -w 10:00 -m 30g -n "${project}_star_index" "$cmd"
## prevent further modification
# chmod -w $(dirname ${star_index})
......
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