Mercurial > repos > devteam > join
annotate gops_join.py @ 4:a10f49d9218a draft
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
author | devteam |
---|---|
date | Thu, 22 Jun 2017 18:52:36 -0400 |
parents | ffbd1de29c28 |
children |
rev | line source |
---|---|
0 | 1 #!/usr/bin/env python |
2 """ | |
3 Join two sets of intervals using their overlap as the key. | |
4 | |
5 usage: %prog bed_file_1 bed_file_2 out_file | |
6 -1, --cols1=N,N,N,N: Columns for start, end, strand in first file | |
7 -2, --cols2=N,N,N,N: Columns for start, end, strand in second file | |
8 -m, --mincols=N: Require this much overlap (default 1bp) | |
9 -f, --fill=N: none, right, left, both | |
10 """ | |
4
a10f49d9218a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents:
3
diff
changeset
|
11 from __future__ import print_function |
a10f49d9218a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents:
3
diff
changeset
|
12 |
3
ffbd1de29c28
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
13 import fileinput |
ffbd1de29c28
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
14 import sys |
4
a10f49d9218a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents:
3
diff
changeset
|
15 |
a10f49d9218a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents:
3
diff
changeset
|
16 from bx.cookbook import doc_optparse |
3
ffbd1de29c28
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
17 from bx.intervals.io import NiceReaderWrapper |
ffbd1de29c28
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
18 from bx.intervals.operations.join import join |
ffbd1de29c28
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
19 from bx.tabular.io import ParseError |
ffbd1de29c28
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
20 from galaxy.tools.util.galaxyops import fail, parse_cols_arg, skipped |
0 | 21 |
22 assert sys.version_info[:2] >= ( 2, 4 ) | |
23 | |
3
ffbd1de29c28
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
24 |
0 | 25 def main(): |
26 mincols = 1 | |
27 leftfill = False | |
28 rightfill = False | |
3
ffbd1de29c28
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
29 |
0 | 30 options, args = doc_optparse.parse( __doc__ ) |
31 try: | |
32 chr_col_1, start_col_1, end_col_1, strand_col_1 = parse_cols_arg( options.cols1 ) | |
3
ffbd1de29c28
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
33 chr_col_2, start_col_2, end_col_2, strand_col_2 = parse_cols_arg( options.cols2 ) |
ffbd1de29c28
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
34 if options.mincols: |
ffbd1de29c28
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
35 mincols = int( options.mincols ) |
0 | 36 if options.fill: |
37 if options.fill == "both": | |
38 rightfill = leftfill = True | |
39 else: | |
40 rightfill = options.fill == "right" | |
41 leftfill = options.fill == "left" | |
42 in_fname, in2_fname, out_fname = args | |
43 except: | |
44 doc_optparse.exception() | |
45 | |
46 g1 = NiceReaderWrapper( fileinput.FileInput( in_fname ), | |
47 chrom_col=chr_col_1, | |
48 start_col=start_col_1, | |
49 end_col=end_col_1, | |
50 strand_col=strand_col_1, | |
51 fix_strand=True ) | |
52 g2 = NiceReaderWrapper( fileinput.FileInput( in2_fname ), | |
53 chrom_col=chr_col_2, | |
54 start_col=start_col_2, | |
55 end_col=end_col_2, | |
56 strand_col=strand_col_2, | |
57 fix_strand=True ) | |
58 | |
59 out_file = open( out_fname, "w" ) | |
60 | |
61 try: | |
62 for outfields in join(g1, g2, mincols=mincols, rightfill=rightfill, leftfill=leftfill): | |
63 if type( outfields ) is list: | |
64 out_file.write( "%s\n" % "\t".join( outfields ) ) | |
65 else: | |
66 out_file.write( "%s\n" % outfields ) | |
4
a10f49d9218a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents:
3
diff
changeset
|
67 except ParseError as exc: |
0 | 68 out_file.close() |
69 fail( "Invalid file format: %s" % str( exc ) ) | |
70 except MemoryError: | |
71 out_file.close() | |
72 fail( "Input datasets were too large to complete the join operation." ) | |
73 | |
74 out_file.close() | |
75 | |
76 if g1.skipped > 0: | |
4
a10f49d9218a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents:
3
diff
changeset
|
77 print(skipped( g1, filedesc=" of 1st dataset" )) |
0 | 78 if g2.skipped > 0: |
4
a10f49d9218a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents:
3
diff
changeset
|
79 print(skipped( g2, filedesc=" of 2nd dataset" )) |
a10f49d9218a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents:
3
diff
changeset
|
80 |
0 | 81 |
82 if __name__ == "__main__": | |
83 main() |