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

added backward compatibility wrappers for old shell cluster utils

parent cce76179
No related branches found
No related tags found
No related merge requests found
...@@ -27,9 +27,20 @@ export PATH=/home/brandl/bin/subread-1.4.6-p3-Linux-x86_64/bin:$PATH ...@@ -27,9 +27,20 @@ export PATH=/home/brandl/bin/subread-1.4.6-p3-Linux-x86_64/bin:$PATH
#export PATH=/home/brandl/bin/STAR/STAR-STAR_2.4.1d/source:$PATH #export PATH=/home/brandl/bin/STAR/STAR-STAR_2.4.1d/source:$PATH
export PATH=/home/brandl/bin/STAR-2.5.0b/source:$PATH export PATH=/home/brandl/bin/STAR-2.5.0b/source:$PATH
export PATH=$PATH:/projects/bioinfo/scripts/joblist_v0.5-SNAPSHOT
#export PATH=/projects/bioinfo/scripts/joblist_v0.5-SNAPSHOT:$PATH ## add cluster job manager
#eval "$(jl shortcuts)" export PATH=/projects/bioinfo/scripts/joblist_v0.5:$PATH
## backward compatibility wrappers for old shell cluster utils
joblist(){
jl add $*
}
export -f joblist
wait4jobs(){
jl wait $*
}
export -f wait4jobs
## also add spinr ## also add spinr
export PATH=$PATH:/projects/bioinfo/scripts/spinr export PATH=$PATH:/projects/bioinfo/scripts/spinr
......
  • Owner

    @lakshman this should hopefully fix the problem of missing joblist executable. Simple source dge_utils.sh again.

  • lakshman @lakshman ·

    @brandl Couldn't locate the mysub command bash: mysub: command not found

  • Owner

    Indeed and fixed with ae3d1340

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