Mercurial > repos > nml > metaspades
view write_tsv_script.py @ 11:606b09cc9860 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit a09a5e3ee3c76550526f082b97de8da75181a1dd
author | iuc |
---|---|
date | Wed, 13 Jul 2022 07:43:13 +0000 |
parents | f338e9942b27 |
children |
line wrap: on
line source
#!/usr/bin/env python import re import sys search_str = r"^>(NODE|\S+)_(\d+)(?:_|\s)length_(\d+)_cov_(\d+\.*\d*)(.*\$)?" replace_str = r"\1_\2\t\3\t\4" cmd = re.compile(search_str) sys.stdout.write("#name\tlength\tcoverage\n") for i, line in enumerate(sys.stdin): if cmd.match(line): sys.stdout.write(cmd.sub(replace_str, line))