Guest User

Untitled

a guest
Dec 11th, 2018
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. [batch]
  2. # Batch Tag
  3. # A tag that holds a batch file, if one has been created already
  4. options.BATCH_TAG=clovr_lgt_batch
  5.  
  6. # Concurrent Preruns
  7. # Number of prerun operations to run concurrently
  8. options.CONCURRENT_PRERUN=1
  9.  
  10. # Concurrent Pipelines
  11. # Number of pipelines to run concurrently
  12. options.CONCURRENT_PIPELINES=10
  13.  
  14. # Concurrent Postruns
  15. # Number of postrun steps to run concurrently
  16. options.CONCURRENT_POSTRUN=3
  17.  
  18. # Group count
  19. # Number of groups to split tag_list's into. Number of files in each tag_list must be at least this large
  20. options.GROUP_COUNT=10
  21.  
  22.  
  23. [pipeline]
  24. # Pipeline Description
  25. # Description of pipeline
  26. PIPELINE_DESC=Testing clovr lgt batch
  27.  
  28. # Pipeline Template
  29. # Set that this is a batch run, do not modify
  30. PIPELINE_TEMPLATE=clovr_batch_wrapper
  31.  
  32.  
  33. [batch_pipeline]
  34. params.DATA_DIRECTORY=/mnt/lgt_batch_test
  35. params.DATA_OUTPUT_DIRECTORY=/diag/HLGTDBGAP/bwa_output
  36. params.DECRYPT_SCRIPT=/mnt/user_data/decrypt/decrypt.bin
  37. params.DECRYPT_PASSWORD=C@ncerlgt!
  38.  
  39. params.REMOTE_USER=driley
  40. params.REMOTE_HOST=diagmaster.igs.umaryland.edu
  41.  
  42.  
  43. # Input Tag
  44. # Input tag of sequences to BLAST against
  45. input.INPUT_TAG=hlgt_sra_files_clovr_diag_credential
  46.  
  47. # Reference tag 1
  48. # Reference tag 1 (bacteria)
  49. input.REF_TAG1=hlgt_bac1_remote,hlgt_bac2_remote,hlgt_bac3_remote
  50.  
  51. # Reference tag 2
  52. # Reference tag 2 (host)
  53. input.REF_TAG2=hlgt_human_remote
  54.  
  55. # # threads
  56. # Number of threads to utilize for each BWA
  57. input.THREAD_COUNT=4
  58.  
  59. # Tags to Download
  60. # Comma separated list of tags that should be downloaded, leave the default
  61. # Possible values: sam_files
  62. output.TAGS_TO_DOWNLOAD=sam_files
  63.  
  64. # Pipeline Description
  65. # Description of pipeline
  66. pipeline.PIPELINE_DESC=
  67.  
  68. # The type of the pipeline we are running
  69. pipeline.PIPELINE_TEMPLATE=clovr_lgt_bwa
  70.  
  71. # Cluster Name
  72. # Cluster name to run this on, shouldn't need to specify manually
  73. cluster.CLUSTER_NAME=local
  74.  
  75. # Master Instance Type
  76. # Instance type to use for the master, guaranteed values are 'default', 'small', 'medium', and 'large'
  77. cluster.MASTER_INSTANCE_TYPE=default
  78.  
  79. # Master Bid Price
  80. # If spot instances are desired, set bid price
  81. cluster.MASTER_BID_PRICE=
  82.  
  83. # Exec Instance Type
  84. # Instance type to use for the exec, guaranteed values are 'default', 'small', 'medium', and 'large'
  85. cluster.EXEC_INSTANCE_TYPE=default
  86.  
  87. # Exec Bid Price
  88. # If spot instances are desired, set bid price
  89. cluster.EXEC_BID_PRICE=
  90.  
  91. # Number of exec nodes
  92. # Number of exec nodes, should not need to specify manually
  93. cluster.EXEC_NODES=0
  94.  
  95. # Credential
  96. # Credential to use to make the cluster
  97. cluster.CLUSTER_CREDENTIAL=clovr_diag_credential
  98.  
  99.  
  100. # Terminate cluster
  101. # Terminate a cluster automatically on successful pipeline
  102. cluster.TERMINATE_ONFINISH=true
Add Comment
Please, Sign In to add comment