# HG changeset patch # User iuc # Date 1579650934 18000 # Node ID 8e9d604e92f4c540d64b9bd181af8060196c4730 # Parent 49d6f8ef63b3a351593e0a1c4f05ec7ce46157e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gfa_to_fa commit 518c9f5ae1d6dfddd26bc37107e06f269147ed55" diff -r 49d6f8ef63b3 -r 8e9d604e92f4 gfa_to_fa.xml --- 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 @@ - + Convert Graphical Fragment Assembly files to FASTA format '$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) ]]>