annotate tools/new_operations/gops_coverage.py @ 0:9071e359b9a3

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:37:19 -0500
parents
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 Calculate coverage of one query on another, and append the coverage to
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4 the last two columns as bases covered and percent coverage.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
6 usage: %prog bed_file_1 bed_file_2 out_file
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7 -1, --cols1=N,N,N,N: Columns for start, end, strand in first file
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 -2, --cols2=N,N,N,N: Columns for start, end, strand in second file
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.coverage 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 upstream_pad = 0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
25 downstream_pad = 0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
26
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
27 options, args = doc_optparse.parse( __doc__ )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
28 try:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
29 chr_col_1, start_col_1, end_col_1, strand_col_1 = parse_cols_arg( options.cols1 )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
30 chr_col_2, start_col_2, end_col_2, strand_col_2 = parse_cols_arg( options.cols2 )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
31 in_fname, in2_fname, out_fname = args
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
32 except:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
33 doc_optparse.exception()
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
34
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
35 g1 = NiceReaderWrapper( fileinput.FileInput( in_fname ),
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
36 chrom_col=chr_col_1,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
37 start_col=start_col_1,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
38 end_col=end_col_1,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
39 strand_col=strand_col_1,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
40 fix_strand=True )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
41 g2 = NiceReaderWrapper( fileinput.FileInput( in2_fname ),
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
42 chrom_col=chr_col_2,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
43 start_col=start_col_2,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
44 end_col=end_col_2,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
45 strand_col=strand_col_2,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
46 fix_strand=True )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
47
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
48 out_file = open( out_fname, "w" )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
49
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
50 try:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
51 for line in coverage( [g1,g2] ):
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
52 if type( line ) is GenomicInterval:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
53 out_file.write( "%s\n" % "\t".join( line.fields ) )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
54 else:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
55 out_file.write( "%s\n" % line )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
56 except ParseError, exc:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
57 out_file.close()
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
58 fail( "Invalid file format: %s" % str( exc ) )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
59
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
60 out_file.close()
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
61
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
62 if g1.skipped > 0:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
63 print skipped( g1, filedesc=" of 1st dataset" )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
64 if g2.skipped > 0:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
65 print skipped( g2, filedesc=" of 2nd dataset" )
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
66
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
67 if __name__ == "__main__":
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
68 main()