Mercurial > repos > nml > metaspades
view write_tsv_script.py @ 13:a14acc5c410e 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:38:11 +0000 |
| parents | 1f096e62bd03 |
| 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))
