Mercurial > repos > devteam > coverage
annotate gops_coverage.py @ 3:1cefc6012ffd draft
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/coverage commit de7140295cce07e1bc1697e51dab4271c8d7a8a6
| author | devteam |
|---|---|
| date | Fri, 18 Dec 2015 19:37:38 -0500 |
| parents | 7b226a8a6722 |
| children | ad25eb2c422d |
| rev | line source |
|---|---|
| 0 | 1 #!/usr/bin/env python |
| 2 """ | |
| 3 Calculate coverage of one query on another, and append the coverage to | |
| 4 the last two columns as bases covered and percent coverage. | |
| 5 | |
| 6 usage: %prog bed_file_1 bed_file_2 out_file | |
| 7 -1, --cols1=N,N,N,N: Columns for start, end, strand in first file | |
| 8 -2, --cols2=N,N,N,N: Columns for start, end, strand in second file | |
| 9 """ | |
|
2
7b226a8a6722
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
10 import fileinput |
|
7b226a8a6722
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
11 import sys |
|
7b226a8a6722
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
12 from bx.intervals.io import GenomicInterval, NiceReaderWrapper |
|
7b226a8a6722
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
13 from bx.intervals.operations.coverage import coverage |
| 0 | 14 from bx.cookbook import doc_optparse |
|
2
7b226a8a6722
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
15 from bx.tabular.io import ParseError |
|
7b226a8a6722
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
16 from galaxy.tools.util.galaxyops import fail, parse_cols_arg, skipped |
| 0 | 17 |
| 18 assert sys.version_info[:2] >= ( 2, 4 ) | |
| 19 | |
|
2
7b226a8a6722
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
20 |
| 0 | 21 def main(): |
| 22 options, args = doc_optparse.parse( __doc__ ) | |
| 23 try: | |
| 24 chr_col_1, start_col_1, end_col_1, strand_col_1 = parse_cols_arg( options.cols1 ) | |
|
2
7b226a8a6722
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
25 chr_col_2, start_col_2, end_col_2, strand_col_2 = parse_cols_arg( options.cols2 ) |
| 0 | 26 in_fname, in2_fname, out_fname = args |
| 27 except: | |
| 28 doc_optparse.exception() | |
| 29 | |
| 30 g1 = NiceReaderWrapper( fileinput.FileInput( in_fname ), | |
| 31 chrom_col=chr_col_1, | |
| 32 start_col=start_col_1, | |
| 33 end_col=end_col_1, | |
| 34 strand_col=strand_col_1, | |
| 35 fix_strand=True ) | |
| 36 g2 = NiceReaderWrapper( fileinput.FileInput( in2_fname ), | |
| 37 chrom_col=chr_col_2, | |
| 38 start_col=start_col_2, | |
| 39 end_col=end_col_2, | |
| 40 strand_col=strand_col_2, | |
| 41 fix_strand=True ) | |
| 42 | |
| 43 out_file = open( out_fname, "w" ) | |
| 44 | |
| 45 try: | |
|
2
7b226a8a6722
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
46 for line in coverage( [g1, g2] ): |
| 0 | 47 if type( line ) is GenomicInterval: |
| 48 out_file.write( "%s\n" % "\t".join( line.fields ) ) | |
| 49 else: | |
| 50 out_file.write( "%s\n" % line ) | |
| 51 except ParseError, exc: | |
| 52 out_file.close() | |
| 53 fail( "Invalid file format: %s" % str( exc ) ) | |
| 54 | |
| 55 out_file.close() | |
| 56 | |
| 57 if g1.skipped > 0: | |
| 58 print skipped( g1, filedesc=" of 1st dataset" ) | |
| 59 if g2.skipped > 0: | |
| 60 print skipped( g2, filedesc=" of 2nd dataset" ) | |
| 61 | |
| 62 if __name__ == "__main__": | |
| 63 main() |
