Mercurial > repos > iuc > gfa_to_fa
changeset 1:8e9d604e92f4 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gfa_to_fa commit 518c9f5ae1d6dfddd26bc37107e06f269147ed55"
author | iuc |
---|---|
date | Tue, 21 Jan 2020 18:55:34 -0500 |
parents | 49d6f8ef63b3 |
children | e33c82b63727 |
files | gfa_to_fa.xml |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/gfa_to_fa.xml Wed Jun 19 06:40:30 2019 -0400 +++ b/gfa_to_fa.xml Tue Jan 21 18:55:34 2020 -0500 @@ -1,4 +1,4 @@ -<tool id="gfa_to_fa" name="GFA to FASTA" version="0.1.0"> +<tool id="gfa_to_fa" name="GFA to FASTA" version="0.1.1"> <description>Convert Graphical Fragment Assembly files to FASTA format </description> <command detect_errors="exit_code"><![CDATA[ cat '$in_gfa' | python '$convert' > '$out_fa' @@ -10,8 +10,8 @@ for line in sys.stdin: if line.startswith("S"): l,h,s,x = line.strip().split() - print(">" + h) - print(s) + print(">" + h) + print(s) ]]></configfile> </configfiles> <inputs>