annotate tools/new_operations/gops_merge.py @ 1:cdcb0ce84a1b

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:45:15 -0500
parents 9071e359b9a3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
1 #!/usr/bin/env python
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2 """
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3 Merge overlaping regions.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5 usage: %prog in_file out_file
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
6 -1, --cols1=N,N,N,N: Columns for start, end, strand in first file
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7 -m, --mincols=N: Require this much overlap (default 1bp)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 -3, --threecol: Output 3 column bed
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9 """
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
10 from galaxy import eggs
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
11 import pkg_resources
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
12 pkg_resources.require( "bx-python" )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
13 import sys, traceback, fileinput
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
14 from warnings import warn
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
15 from bx.intervals import *
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
16 from bx.intervals.io import *
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
17 from bx.intervals.operations.merge import *
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
18 from bx.cookbook import doc_optparse
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
19 from galaxy.tools.util.galaxyops import *
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
20
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
21 assert sys.version_info[:2] >= ( 2, 4 )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
22
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
23 def main():
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
24 mincols = 1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
25 upstream_pad = 0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
26 downstream_pad = 0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
27
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
28 options, args = doc_optparse.parse( __doc__ )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
29 try:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
30 chr_col_1, start_col_1, end_col_1, strand_col_1 = parse_cols_arg( options.cols1 )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
31 if options.mincols: mincols = int( options.mincols )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
32 in_fname, out_fname = args
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
33 except:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
34 doc_optparse.exception()
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
35
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
36 g1 = NiceReaderWrapper( fileinput.FileInput( in_fname ),
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
37 chrom_col=chr_col_1,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
38 start_col=start_col_1,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
39 end_col=end_col_1,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
40 strand_col = strand_col_1,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
41 fix_strand=True )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
42
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
43 out_file = open( out_fname, "w" )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
44
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
45 try:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
46 for line in merge(g1,mincols=mincols):
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
47 if options.threecol:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
48 if type( line ) is GenomicInterval:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
49 out_file.write( "%s\t%s\t%s\n" % ( line.chrom, str( line.startCol ), str( line.endCol ) ) )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
50 elif type( line ) is list:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
51 out_file.write( "%s\t%s\t%s\n" % ( line[chr_col_1], str( line[start_col_1] ), str( line[end_col_1] ) ) )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
52 else:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
53 out_file.write( "%s\n" % line )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
54 else:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
55 if type( line ) is GenomicInterval:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
56 out_file.write( "%s\n" % "\t".join( line.fields ) )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
57 elif type( line ) is list:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
58 out_file.write( "%s\n" % "\t".join( line ) )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
59 else:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
60 out_file.write( "%s\n" % line )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
61 except ParseError, exc:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
62 out_file.close()
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
63 fail( "Invalid file format: %s" % str( exc ) )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
64
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
65 out_file.close()
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
66
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
67 if g1.skipped > 0:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
68 print skipped( g1, filedesc=" of 1st dataset" )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
69
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
70 if __name__ == "__main__":
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
71 main()