Advertisement
Won_Cheol_Yim

Untitled

Jul 24th, 2014
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.61 KB | None | 0 0
  1. [General]
  2. # list of files of the initial bas.h5 files
  3. input_fofn = /diag/home/wyim/scratch/kl/input.fofn
  4.  
  5. # The length cutoff used for seed reads used for initial mapping
  6. length_cutoff = 500
  7.  
  8. # The length cutoff used for seed reads usef for pre-assembly
  9. length_cutoff_pr = 1000
  10.  
  11. # The read quality cutoff used for seed reads
  12. RQ_threshold = 0.75
  13.  
  14. # SGE job option for distributed mapping
  15. sge_option_dm = -P diag -q highmem.q -b y -pe make 4
  16.  
  17. # SGE job option for m4 filtering
  18. sge_option_mf = -P diag -q highmem.q -b y -pe make 4
  19.  
  20. # SGE job option for pre-assembly
  21. sge_option_pa = -P diag -q highmem.q -b y -pe make 8
  22.  
  23. # SGE job option for CA
  24. sge_option_ca = -P diag -q highmem.q -b y -pe make 4
  25.  
  26. # SGE job option for Quiver
  27. sge_option_qv = -P diag -q highmem.q -b y -pe make 16
  28.  
  29. # SGE job option for "qsub -sync y" to sync jobs in the different stages
  30. sge_option_ck = -P diag -q highmem.q -b y -pe make 8
  31.  
  32. sge_option_qf = -P diag -q highmem.q -b y -pe make 8
  33.  
  34. sge_option_fca = -P diag -q highmem.q -b y -pe make 8
  35. # blasr for initial read-read mapping for each chunck (do not specific the "-out" option).
  36. # One might need to tune the bestn parameter to match the number of distributed chunks to get more optimized results
  37. blasr_opt = -nCandidates 64 -minMatch 12 -maxLCPLength 15 -bestn 48 -minPctIdentity 75.0 -maxScore -1000 -nproc 32
  38.  
  39. #This is used for running quiver
  40. #SEYMOUR_HOME = /mnt/secondary/Smrtpipe/builds/Assembly_Mainline_Nightly_Archive/build470-116466/
  41. SEYMOUR_HOME = <SMRT Analysis install>
  42. #The number of best alignment hits used for pre-assembly
  43. #It should be about the same as the final PLR coverage, slight higher might be OK.
  44. bestn = 64
  45.  
  46. # target choices are "pre_assembly", "draft_assembly", "all"
  47. # "mapping": initial mapping
  48. # "pre_assembly" : generate pre_assembly for any long read assembler to use
  49. # "draft_assembly": automatic submit CA assembly job when pre-assembly is done
  50. # "all" : submit job for using Quiver to do final polish, not working yet
  51. target = pre_assembly
  52.  
  53.  
  54. # number of chunks for pre-assembly.
  55. preassembly_num_chunk = 1
  56.  
  57.  
  58. q_chunk_size = 1
  59. t_chunk_size = 3
  60.  
  61. # "tmpdir" is for preassembly. A lot of small files are created and deleted during this process.
  62. # It would be great to use ramdisk for this. Set tmpdir to a NFS mount will probably have very bad performance.
  63. tmpdir = /tmp
  64.  
  65. # "big_tmpdir" is for quiver, better in a big disk
  66. big_tmpdir = /tmp
  67.  
  68. # various trimming parameters
  69. min_cov = 8
  70. max_cov = 64
  71. trim_align = 50
  72. trim_plr = 50
  73.  
  74. # number of processes used by by blasr during the preassembly process
  75. q_nproc = 16
  76.  
  77.  
  78. concurrent_jobs = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement