PageRenderTime 51ms CodeModel.GetById 30ms RepoModel.GetById 7ms app.codeStats 0ms

/tools/peak_calling/sicer_wrapper.py

https://bitbucket.org/cistrome/cistrome-harvard/
Python | 156 lines | 135 code | 13 blank | 8 comment | 40 complexity | 975700145157b6a911de3a0fa7360e3f MD5 | raw file
  1. #!/usr/bin/env python
  2. #Dan Blankenberg
  3. """
  4. A wrapper script for running SICER (spatial clustering approach for the identification of ChIP-enriched regions) region caller.
  5. """
  6. import sys, optparse, os, tempfile, subprocess, shutil
  7. CHUNK_SIZE = 2**20 #1mb
  8. VALID_BUILDS = [ 'mm8', 'mm9', 'hg18', 'hg19', 'dm2', 'dm3', 'sacCer1', 'pombe', 'rn4', 'tair8' ] #HACK! FIXME: allow using all specified builds, would currently require hacking SICER's "GenomeData.py" on the fly.
  9. def cleanup_before_exit( tmp_dir ):
  10. if tmp_dir and os.path.exists( tmp_dir ):
  11. shutil.rmtree( tmp_dir )
  12. def open_file_from_option( filename, mode = 'rb' ):
  13. if filename:
  14. return open( filename, mode = mode )
  15. return None
  16. def add_one_to_file_column( filename, column, split_char = "\t", startswith_skip = None ):
  17. tmp_out = tempfile.TemporaryFile( mode='w+b' )
  18. tmp_in = open( filename )
  19. for line in tmp_in:
  20. if startswith_skip and line.startswith( startswith_skip ):
  21. tmp_out.write( line )
  22. else:
  23. fields = line.rstrip( '\n\r' ).split( split_char )
  24. if len( fields ) <= column:
  25. tmp_out.write( line )
  26. else:
  27. fields[ column ] = str( int( fields[ column ] ) + 1 )
  28. tmp_out.write( "%s\n" % ( split_char.join( fields ) ) )
  29. tmp_in.close()
  30. tmp_out.seek( 0 )
  31. tmp_in = open( filename, 'wb' )
  32. while True:
  33. chunk = tmp_out.read( CHUNK_SIZE )
  34. if chunk:
  35. tmp_in.write( chunk )
  36. else:
  37. break
  38. tmp_in.close()
  39. tmp_out.close()
  40. def __main__():
  41. #Parse Command Line
  42. parser = optparse.OptionParser()
  43. #stdout/err
  44. parser.add_option( '', '--stdout', dest='stdout', action='store', type="string", default=None, help='If specified, the output of stdout will be written to this file.' )
  45. parser.add_option( '', '--stderr', dest='stderr', action='store', type="string", default=None, help='If specified, the output of stderr will be written to this file.' )
  46. parser.add_option( '', '--fix_off_by_one_errors', dest='fix_off_by_one_errors', action='store_true', default=False, help='If specified, fix off-by-one errors in output files' )
  47. #inputs
  48. parser.add_option( '-b', '--bed_file', dest='bed_file', action='store', type="string", default=None, help='Input ChIP BED file.' )
  49. parser.add_option( '-c', '--control_file', dest='control_file', action='store', type="string", default=None, help='Input control BED file.' )
  50. parser.add_option( '-d', '--dbkey', dest='dbkey', action='store', type="string", default=None, help='Input dbkey.' )
  51. parser.add_option( '-r', '--redundancy_threshold', dest='redundancy_threshold', action='store', type="int", default=1, help='Redundancy Threshold: The number of copies of identical reads allowed in a library.' )
  52. parser.add_option( '-w', '--window_size', dest='window_size', action='store', type="int", default=200, help='Window size: resolution of SICER algorithm. For histone modifications, one can use 200 bp' )
  53. parser.add_option( '-f', '--fragment_size', dest='fragment_size', action='store', type="int", default=150, help='Fragment size: is for determination of the amount of shift from the beginning of a read to the center of the DNA fragment represented by the read. FRAGMENT_SIZE=150 means the shift is 75.' )
  54. parser.add_option( '-e', '--effective_genome_fraction', dest='effective_genome_fraction', action='store', type="float", default=0.74, help='Effective genome fraction: Effective Genome as fraction of the genome size. It depends on read length.' )
  55. parser.add_option( '-g', '--gap_size', dest='gap_size', action='store', type="int", default=600, help='Gap size: needs to be multiples of window size. Namely if the window size is 200, the gap size should be 0, 200, 400, 600, ... .' )
  56. parser.add_option( '-o', '--error_cut_off', dest='error_cut_off', action='store', type="string", default="0.1", help='Error Cut off: FDR or E-value' ) #read as string to construct names properly
  57. #outputs
  58. parser.add_option( '', '--redundancy_removed_test_bed_output_file', dest='redundancy_removed_test_bed_output_file', action='store', type="string", default=None, help='test-1-removed.bed: redundancy_removed test bed file' )
  59. parser.add_option( '', '--redundancy_removed_control_bed_output_file', dest='redundancy_removed_control_bed_output_file', action='store', type="string", default=None, help='control-1-removed.bed: redundancy_removed control bed file' )
  60. parser.add_option( '', '--summary_graph_output_file', dest='summary_graph_output_file', action='store', type="string", default=None, help='test-W200.graph: summary graph file for test-1-removed.bed with window size 200, in bedGraph format.' )
  61. parser.add_option( '', '--test_normalized_wig_output_file', dest='test_normalized_wig_output_file', action='store', type="string", default=None, help='test-W200-normalized.wig: the above file normalized by library size per million and converted into wig format. This file can be uploaded to the UCSC genome browser' )
  62. parser.add_option( '', '--score_island_output_file', dest='score_island_output_file', action='store', type="string", default=None, help='test-W200-G600.scoreisland: an intermediate file for debugging usage.' )
  63. parser.add_option( '', '--islands_summary_output_file', dest='islands_summary_output_file', action='store', type="string", default=None, help='test-W200-G600-islands-summary: summary of all candidate islands with their statistical significance.' )
  64. parser.add_option( '', '--significant_islands_summary_output_file', dest='significant_islands_summary_output_file', action='store', type="string", default=None, help='test-W200-G600-islands-summary-FDR.01: summary file of significant islands with requirement of FDR=0.01.' )
  65. parser.add_option( '', '--significant_islands_output_file', dest='significant_islands_output_file', action='store', type="string", default=None, help='test-W200-G600-FDR.01-island.bed: delineation of significant islands in "chrom start end read-count-from-redundancy_removed-test.bed" format' )
  66. parser.add_option( '', '--island_filtered_output_file', dest='island_filtered_output_file', action='store', type="string", default=None, help='test-W200-G600-FDR.01-islandfiltered.bed: library of raw redundancy_removed reads on significant islands.' )
  67. parser.add_option( '', '--island_filtered_normalized_wig_output_file', dest='island_filtered_normalized_wig_output_file', action='store', type="string", default=None, help='test-W200-G600-FDR.01-islandfiltered-normalized.wig: wig file for the island-filtered redundancy_removed reads.' )
  68. (options, args) = parser.parse_args()
  69. #check if valid build
  70. assert options.dbkey in VALID_BUILDS, ValueError( "The specified build ('%s') is not available for this tool." % options.dbkey )
  71. #everything will occur in this temp directory
  72. tmp_dir = tempfile.mkdtemp()
  73. #link input files into tmp_dir and build command line
  74. bed_base_filename = 'input_bed_file'
  75. bed_filename = '%s.bed' % bed_base_filename
  76. os.symlink( options.bed_file, os.path.join( tmp_dir, bed_filename ) )
  77. if options.control_file is not None:
  78. cmd = "SICER.sh"
  79. else:
  80. cmd = "SICER-rb.sh"
  81. cmd = '%s "%s" "%s"' % ( cmd, tmp_dir, bed_filename )
  82. if options.control_file is not None:
  83. control_base_filename = 'input_control_file'
  84. control_filename = '%s.bed' % control_base_filename
  85. os.symlink( options.control_file, os.path.join( tmp_dir, control_filename ) )
  86. cmd = '%s "%s"' % ( cmd, control_filename )
  87. cmd = '%s "%s" "%s" "%i" "%i" "%i" "%f" "%i" "%s"' % ( cmd, tmp_dir, options.dbkey, options.redundancy_threshold, options.window_size, options.fragment_size, options.effective_genome_fraction, options.gap_size, options.error_cut_off )
  88. #set up stdout and stderr output options
  89. stdout = open_file_from_option( options.stdout, mode = 'wb' )
  90. stderr = open_file_from_option( options.stderr, mode = 'wb' )
  91. #if no stderr file is specified, we'll use our own
  92. if stderr is None:
  93. stderr = tempfile.NamedTemporaryFile( dir=tmp_dir )
  94. stderr.close()
  95. stderr = open( stderr.name, 'w+b' )
  96. proc = subprocess.Popen( args=cmd, stdout=stdout, stderr=stderr, shell=True, cwd=tmp_dir )
  97. return_code = proc.wait()
  98. if return_code:
  99. stderr_target = sys.stderr
  100. else:
  101. stderr_target = stdout #sys.stdout
  102. stderr_target.write( "\nAdditionally, these warnings were reported:\n" )
  103. stderr.flush()
  104. stderr.seek(0)
  105. while True:
  106. chunk = stderr.read( CHUNK_SIZE )
  107. if chunk:
  108. stderr_target.write( chunk )
  109. else:
  110. break
  111. stderr.close()
  112. try:
  113. #move files to where they belong
  114. shutil.move( os.path.join( tmp_dir,'%s-%i-removed.bed' % ( bed_base_filename, options.redundancy_threshold ) ), options.redundancy_removed_test_bed_output_file )
  115. shutil.move( os.path.join( tmp_dir,'%s-W%i.graph' % ( bed_base_filename, options.window_size ) ), options.summary_graph_output_file )
  116. if options.fix_off_by_one_errors: add_one_to_file_column( options.summary_graph_output_file, 2 )
  117. shutil.move( os.path.join( tmp_dir,'%s-W%i-normalized.wig' % ( bed_base_filename, options.window_size ) ), options.test_normalized_wig_output_file )
  118. if options.control_file is not None:
  119. shutil.move( os.path.join( tmp_dir,'%s-%i-removed.bed' % ( control_base_filename, options.redundancy_threshold ) ), options.redundancy_removed_control_bed_output_file )
  120. shutil.move( os.path.join( tmp_dir,'%s-W%i-G%i.scoreisland' % ( bed_base_filename, options.window_size, options.gap_size ) ), options.score_island_output_file )
  121. if options.fix_off_by_one_errors: add_one_to_file_column( options.score_island_output_file, 2 )
  122. shutil.move( os.path.join( tmp_dir,'%s-W%i-G%i-islands-summary' % ( bed_base_filename, options.window_size, options.gap_size ) ), options.islands_summary_output_file )
  123. if options.fix_off_by_one_errors: add_one_to_file_column( options.islands_summary_output_file, 2 )
  124. shutil.move( os.path.join( tmp_dir,'%s-W%i-G%i-islands-summary-FDR%s' % ( bed_base_filename, options.window_size, options.gap_size, options.error_cut_off ) ), options.significant_islands_summary_output_file )
  125. if options.fix_off_by_one_errors: add_one_to_file_column( options.significant_islands_summary_output_file, 2 )
  126. shutil.move( os.path.join( tmp_dir,'%s-W%i-G%i-FDR%s-island.bed' % ( bed_base_filename, options.window_size, options.gap_size, options.error_cut_off ) ), options.significant_islands_output_file )
  127. if options.fix_off_by_one_errors: add_one_to_file_column( options.significant_islands_output_file, 2 )
  128. shutil.move( os.path.join( tmp_dir,'%s-W%i-G%i-FDR%s-islandfiltered.bed' % ( bed_base_filename, options.window_size, options.gap_size, options.error_cut_off ) ), options.island_filtered_output_file )
  129. shutil.move( os.path.join( tmp_dir,'%s-W%i-G%i-FDR%s-islandfiltered-normalized.wig' % ( bed_base_filename, options.window_size, options.gap_size, options.error_cut_off ) ), options.island_filtered_normalized_wig_output_file )
  130. else:
  131. shutil.move( os.path.join( tmp_dir,'%s-W%i-G%i-E%s.scoreisland' % ( bed_base_filename, options.window_size, options.gap_size, options.error_cut_off ) ), options.score_island_output_file )
  132. if options.fix_off_by_one_errors: add_one_to_file_column( options.score_island_output_file, 2 )
  133. shutil.move( os.path.join( tmp_dir,'%s-W%i-G%i-E%s-islandfiltered.bed' % ( bed_base_filename, options.window_size, options.gap_size, options.error_cut_off ) ), options.island_filtered_output_file )
  134. shutil.move( os.path.join( tmp_dir,'%s-W%i-G%i-E%s-islandfiltered-normalized.wig' % ( bed_base_filename, options.window_size, options.gap_size, options.error_cut_off ) ), options.island_filtered_normalized_wig_output_file )
  135. except Exception, e:
  136. raise e
  137. finally:
  138. cleanup_before_exit( tmp_dir )
  139. if __name__=="__main__": __main__()