Guest User

Untitled

a guest
Jun 8th, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. include required(classpath("application"))
  2. webservice {
  3. port = 8000
  4. }
  5. backend {
  6. default="SGE"
  7. providers {
  8. SGE {
  9. actor-factory = "cromwell.backend.impl.sfs.config.ConfigBackendLifecycleActorFactory"
  10. config {
  11. concurrent-job-limit = 10000
  12. runtime-attributes= """
  13. Int? cpu=1
  14. Int? memory=4
  15. """
  16. submit = """
  17. qsub \
  18. -terse \
  19. -V \
  20. -b n \
  21. -wd ${cwd} \
  22. -N ${job_name} \
  23. ${'-pe BWA ' + cpu} \
  24. ${'-l h_vmem=' + memory + "G"} \
  25. -o ${out} \
  26. -e ${err} \
  27. ${script}
  28. """
  29. kill = "qdel ${job_id}"
  30. check-alive = "qstat -j ${job_id}"
  31. job-id-regex = "(\\d+)"
  32.  
  33. filesystems {
  34. localization: [
  35. "soft-link", "copy", "hard-link"
  36. ]
  37. local {
  38. caching {
  39. duplication-strategy: [ "soft-link", "copy", "hard-link" ]
  40. hashing-strategy: "file"
  41. }
  42. }
  43. }
  44. }
  45. }
  46. }
  47. }
  48. system {
  49. abort-jobs-on-terminate = true
  50. io {
  51. number-of-requests = 10
  52. per = 10 seconds
  53. number-of-attempts = 180
  54. }
  55. }
  56. call-caching {
  57. enabled = true
  58. invalidate-bad-cache-results = true
  59. }
  60. database {
  61. db.url = "jdbc:mysql://ourdatabase/cromwell_db?useSSL=false&rewriteBatchedStatements=true"
  62. db.user = "****"
  63. db.password = "****"
  64. db.driver = "com.mysql.jdbc.Driver"
  65. profile = "slick.jdbc.MySQLProfile$"
  66. }
  67. workflow-options {
  68. workflow-failure-mode = "ContinueWhilePossible"
  69. }
Add Comment
Please, Sign In to add comment