Mercurial > repos > nml > metaspades
annotate write_tsv_script.py @ 10:eb7a370f6588 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit b47891020e4aa3a165daad952d7e38cc7a2130ac"
author | iuc |
---|---|
date | Mon, 21 Feb 2022 10:22:40 +0000 |
parents | f338e9942b27 |
children | 606b09cc9860 |
rev | line source |
---|---|
8
f338e9942b27
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit 2609367ebbce7e0c3f5b4b2d7c60a82d4bd03246"
iuc
parents:
diff
changeset
|
1 #!/usr/bin/env python |
f338e9942b27
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit 2609367ebbce7e0c3f5b4b2d7c60a82d4bd03246"
iuc
parents:
diff
changeset
|
2 |
f338e9942b27
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit 2609367ebbce7e0c3f5b4b2d7c60a82d4bd03246"
iuc
parents:
diff
changeset
|
3 import re |
f338e9942b27
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit 2609367ebbce7e0c3f5b4b2d7c60a82d4bd03246"
iuc
parents:
diff
changeset
|
4 import sys |
f338e9942b27
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit 2609367ebbce7e0c3f5b4b2d7c60a82d4bd03246"
iuc
parents:
diff
changeset
|
5 |
f338e9942b27
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit 2609367ebbce7e0c3f5b4b2d7c60a82d4bd03246"
iuc
parents:
diff
changeset
|
6 search_str = r"^>(NODE|\S+)_(\d+)(?:_|\s)length_(\d+)_cov_(\d+\.*\d*).*\$" |
f338e9942b27
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit 2609367ebbce7e0c3f5b4b2d7c60a82d4bd03246"
iuc
parents:
diff
changeset
|
7 |
f338e9942b27
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit 2609367ebbce7e0c3f5b4b2d7c60a82d4bd03246"
iuc
parents:
diff
changeset
|
8 replace_str = r"\1_\2\t\3\t\4" |
f338e9942b27
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit 2609367ebbce7e0c3f5b4b2d7c60a82d4bd03246"
iuc
parents:
diff
changeset
|
9 |
f338e9942b27
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit 2609367ebbce7e0c3f5b4b2d7c60a82d4bd03246"
iuc
parents:
diff
changeset
|
10 cmd = re.compile(search_str) |
f338e9942b27
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit 2609367ebbce7e0c3f5b4b2d7c60a82d4bd03246"
iuc
parents:
diff
changeset
|
11 |
f338e9942b27
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit 2609367ebbce7e0c3f5b4b2d7c60a82d4bd03246"
iuc
parents:
diff
changeset
|
12 sys.stdout.write("#name\tlength\tcoverage\n") |
f338e9942b27
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit 2609367ebbce7e0c3f5b4b2d7c60a82d4bd03246"
iuc
parents:
diff
changeset
|
13 |
f338e9942b27
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit 2609367ebbce7e0c3f5b4b2d7c60a82d4bd03246"
iuc
parents:
diff
changeset
|
14 for i, line in enumerate(sys.stdin): |
f338e9942b27
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit 2609367ebbce7e0c3f5b4b2d7c60a82d4bd03246"
iuc
parents:
diff
changeset
|
15 if cmd.match(line): |
f338e9942b27
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades commit 2609367ebbce7e0c3f5b4b2d7c60a82d4bd03246"
iuc
parents:
diff
changeset
|
16 sys.stdout.write(cmd.sub(replace_str, line)) |