Mercurial > repos > iuc > gemini_actionable_mutations
annotate test-data/util/shrink_simple_tab.py @ 7:142d95ab942e draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 5ea789e5342c3ad1afd2e0068c88f2b6dc4f7246"
| author | iuc | 
|---|---|
| date | Tue, 10 Mar 2020 06:18:46 -0400 | 
| parents | 712aa8283200 | 
| children | 
| rev | line source | 
|---|---|
| 4 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 1 from __future__ import print_function | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 2 | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 3 import argparse | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 4 from functools import partial | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 5 | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 6 | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 7 def keep_line(line, pos_cols, region): | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 8 fields = line.rstrip().split(b'\t') | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 9 if fields[pos_cols[0]] == region[0]: # same chromosome | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 10 if ( | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 11 region[1] < int(fields[pos_cols[1]]) < region[2] | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 12 ) or ( | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 13 region[1] < int(fields[pos_cols[2]]) < region[2] | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 14 ): | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 15 return True | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 16 | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 17 | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 18 def main(infile, ofile, num_header_lines): | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 19 print(infile, '->', ofile) | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 20 with open(infile, 'rb') as i: | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 21 with open(ofile, 'wb') as o: | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 22 # copy header lines | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 23 for c in range(num_header_lines): | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 24 o.write(next(i)) | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 25 for line in i: | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 26 if keep_line(line): | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 27 o.write(line) | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 28 | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 29 | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 30 if __name__ == '__main__': | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 31 p = argparse.ArgumentParser() | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 32 p.add_argument('infile') | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 33 p.add_argument( | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 34 '-r', '--region', | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 35 required=True, | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 36 help='the region of the input file to rewrite' | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 37 ) | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 38 p.add_argument( | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 39 '-o', '--ofile', | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 40 required=True, | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 41 help="the name of the output file" | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 42 ) | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 43 p.add_argument( | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 44 '-c', '--cols', | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 45 nargs=3, type=int, required=True, | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 46 help="the columns of the input file specifying chrom, start and stop, " | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 47 "respectively" | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 48 ) | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 49 p.add_argument( | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 50 '-n', '--num-header-lines', | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 51 type=int, default=0, | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 52 help='the number of header lines present in the input; These will ' | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 53 'always be copied over to the new file.' | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 54 ) | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 55 args = vars(p.parse_args()) | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 56 | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 57 chrom, reg = args['region'].split(':') | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 58 region = [chrom.encode()] + [int(x) for x in reg.split('-')] | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 59 keep_line = partial(keep_line, pos_cols=args['cols'], region=region) | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 60 | 
| 
712aa8283200
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini commit 283362494058ed64143b1f27afb447b8a1cb4313
 iuc parents: diff
changeset | 61 main(args['infile'], args['ofile'], args['num_header_lines']) | 
