Advertisement
dcesini

condor_submit

Apr 25th, 2018
550
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.07 KB | None | 0 0
  1. #####################################
  2. # get the condor dir with examples
  3.  
  4. cp -r /data/BDP1_2020/condor/ .
  5. cd condor
  6. #####################################
  7.  
  8. #### inspect files ##################
  9. #### for first example ##############
  10. cat myexec.sh
  11. cat world.txt
  12. vim first_batch.job
  13. #####################################
  14.  
  15. ######### check the condor cluster###
  16. condor_status
  17. ######################################
  18.  
  19.  
  20. # now the condor submission #########
  21. condor_submit first_batch.job
  22.  
  23. ### check job status ################
  24. condor_q
  25. condor_q -better-analyze  
  26. condor_q -better-analyze  < jobID >
  27. condor_history < jobID >  #for already done jobs
  28. ######################################
  29.  
  30. ### inspect out files ################
  31. cat file1out
  32. cat file2out
  33. less condor.out
  34. less condor.log
  35. less condor.error
  36.  
  37.  
  38. ################  now the HG example with bwa ###############
  39. #############################################################
  40.  
  41. cd hg
  42. vim  align.py  
  43. vim bwa_batch.job  
  44. less condor.error  
  45. less condor.log  
  46. less condor.out  
  47. cat md5.txt
  48.  
  49. ###############################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement