Mercurial > repos > iuc > spades_metaviralspades
view write_tsv_script.py @ 8:5b26685e5d3b draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit 066e075c1599b29e92708194db2b2ccc30b7677c
| author | iuc | 
|---|---|
| date | Mon, 12 Feb 2024 21:46:08 +0000 | 
| parents | 86f66ab58e14 | 
| 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))
