Mercurial > repos > iuc > read_it_and_keep
view trim_reference.py @ 2:fa7086274673 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/read-it-and-keep commit 044b7c1696bf6fef1c8ebf5143c0a841831e92fa
author | iuc |
---|---|
date | Fri, 15 Mar 2024 16:14:58 +0000 |
parents | 554aa2a63f04 |
children |
line wrap: on
line source
#!/usr/bin/env python from __future__ import print_function import argparse import sys if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument('input_file', type=argparse.FileType()) parser.add_argument('output_file', type=argparse.FileType('w'), nargs='?', default=sys.stdout) args = parser.parse_args() lines = args.input_file.readlines() i = len(lines) - 1 trimmed = False # step backwards through the lines, removing all As until we find a non-A nucleotide while not trimmed: line = lines[i].upper().rstrip() for j in range(len(line) - 1, -1, -1): # walk backwards through the line, checking for a non-A (and non-space) character if line[j] not in ['A', ' ']: lines[i] = line[:j + 1] + '\n' trimmed = True break else: # we processed the whole line - all As - so we don't include this line in the output i -= 1 args.output_file.write(''.join(lines[:i + 1]))