Mercurial > repos > devteam > cluster
annotate gops_cluster.py @ 5:a126ec6ea0e4 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit d7b1a60c0aecc46b7f625c3e32f882562b512fd9
author | devteam |
---|---|
date | Mon, 13 Jun 2022 16:21:05 +0000 |
parents | 05696474ee89 |
children |
rev | line source |
---|---|
0 | 1 #!/usr/bin/env python |
2 """ | |
3 Cluster regions of intervals. | |
4 | |
5 usage: %prog in_file out_file | |
6 -1, --cols1=N,N,N,N: Columns for start, end, strand in file | |
7 -d, --distance=N: Maximum distance between clustered intervals | |
8 -v, --overlap=N: Minimum overlap require (negative distance) | |
9 -m, --minregions=N: Minimum regions per cluster | |
10 -o, --output=N: 1)merged 2)filtered 3)clustered 4) minimum 5) maximum | |
11 """ | |
4
05696474ee89
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents:
3
diff
changeset
|
12 from __future__ import print_function |
05696474ee89
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents:
3
diff
changeset
|
13 |
3
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
14 import fileinput |
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
15 import sys |
4
05696474ee89
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents:
3
diff
changeset
|
16 |
05696474ee89
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents:
3
diff
changeset
|
17 from bx.cookbook import doc_optparse |
3
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
18 from bx.intervals.io import GenomicInterval, NiceReaderWrapper |
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
19 from bx.intervals.operations.find_clusters import find_clusters |
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
20 from bx.tabular.io import ParseError |
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
21 from galaxy.tools.util.galaxyops import fail, parse_cols_arg, skipped |
0 | 22 |
23 assert sys.version_info[:2] >= ( 2, 4 ) | |
24 | |
3
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
25 |
0 | 26 def main(): |
27 distance = 0 | |
28 minregions = 2 | |
29 output = 1 | |
30 | |
31 options, args = doc_optparse.parse( __doc__ ) | |
32 try: | |
33 chr_col_1, start_col_1, end_col_1, strand_col_1 = parse_cols_arg( options.cols1 ) | |
3
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
34 if options.distance: |
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
35 distance = int( options.distance ) |
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
36 if options.overlap: |
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
37 distance = -1 * int( options.overlap ) |
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
38 if options.output: |
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
39 output = int( options.output ) |
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
40 if options.minregions: |
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
41 minregions = int( options.minregions ) |
0 | 42 in_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 | |
53 # Get the cluster tree | |
54 try: | |
55 clusters, extra = find_clusters( g1, mincols=distance, minregions=minregions) | |
4
05696474ee89
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents:
3
diff
changeset
|
56 except ParseError as exc: |
0 | 57 fail( "Invalid file format: %s" % str( exc ) ) |
58 | |
59 f1 = open( in_fname, "r" ) | |
60 out_file = open( out_fname, "w" ) | |
3
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
61 |
0 | 62 # If "merge" |
63 if output == 1: | |
3
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
64 fields = ["." for x in range(max(g1.chrom_col, g1.start_col, g1.end_col) + 1)] |
0 | 65 for chrom, tree in clusters.items(): |
66 for start, end, lines in tree.getregions(): | |
67 fields[g1.chrom_col] = chrom | |
68 fields[g1.start_col] = str(start) | |
69 fields[g1.end_col] = str(end) | |
70 out_file.write( "%s\n" % "\t".join( fields ) ) | |
71 | |
72 # If "filtered" we preserve order of file and comments, etc. | |
73 if output == 2: | |
74 linenums = dict() | |
75 for chrom, tree in clusters.items(): | |
76 for linenum in tree.getlines(): | |
77 linenums[linenum] = 0 | |
78 linenum = -1 | |
79 f1.seek(0) | |
80 for line in f1.readlines(): | |
81 linenum += 1 | |
82 if linenum in linenums or linenum in extra: | |
83 out_file.write( "%s\n" % line.rstrip( "\n\r" ) ) | |
84 | |
85 # If "clustered" we output original intervals, but near each other (i.e. clustered) | |
86 if output == 3: | |
87 linenums = list() | |
88 f1.seek(0) | |
89 fileLines = f1.readlines() | |
90 for chrom, tree in clusters.items(): | |
91 for linenum in tree.getlines(): | |
92 out_file.write( "%s\n" % fileLines[linenum].rstrip( "\n\r" ) ) | |
93 | |
94 # If "minimum" we output the smallest interval in each cluster | |
95 if output == 4 or output == 5: | |
96 linenums = list() | |
97 f1.seek(0) | |
98 fileLines = f1.readlines() | |
99 for chrom, tree in clusters.items(): | |
100 for start, end, lines in tree.getregions(): | |
101 outsize = -1 | |
102 outinterval = None | |
103 for line in lines: | |
104 # three nested for loops? | |
105 # should only execute this code once per line | |
106 fileline = fileLines[line].rstrip("\n\r") | |
107 try: | |
3
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
108 cluster_interval = GenomicInterval( g1, fileline.split("\t"), |
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
109 g1.chrom_col, |
0 | 110 g1.start_col, |
3
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
111 g1.end_col, |
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
112 g1.strand_col, |
0 | 113 g1.default_strand, |
114 g1.fix_strand ) | |
4
05696474ee89
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents:
3
diff
changeset
|
115 except Exception as exc: |
05696474ee89
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents:
3
diff
changeset
|
116 print(str( exc ), file=sys.stderr) |
0 | 117 f1.close() |
118 sys.exit() | |
119 interval_size = cluster_interval.end - cluster_interval.start | |
120 if outsize == -1 or \ | |
121 ( outsize > interval_size and output == 4 ) or \ | |
3
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
122 ( outsize < interval_size and output == 5 ): |
0 | 123 outinterval = cluster_interval |
124 outsize = interval_size | |
125 out_file.write( "%s\n" % outinterval ) | |
126 | |
127 f1.close() | |
128 out_file.close() | |
3
765ceb06c3e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
0
diff
changeset
|
129 |
0 | 130 if g1.skipped > 0: |
4
05696474ee89
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents:
3
diff
changeset
|
131 print(skipped( g1, filedesc="" )) |
05696474ee89
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents:
3
diff
changeset
|
132 |
0 | 133 |
134 if __name__ == "__main__": | |
135 main() |