# HG changeset patch # User iuc # Date 1614791869 0 # Node ID e33c82b63727cedb3c7484bf07e2394f7c77155a # Parent 8e9d604e92f4c540d64b9bd181af8060196c4730 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gfa_to_fa commit 83aed19c6cdf00f3133eb80a69cba0074ca244cc" diff -r 8e9d604e92f4 -r e33c82b63727 gfa_to_fa.xml --- a/gfa_to_fa.xml Tue Jan 21 18:55:34 2020 -0500 +++ b/gfa_to_fa.xml Wed Mar 03 17:17:49 2021 +0000 @@ -1,4 +1,4 @@ - + Convert Graphical Fragment Assembly files to FASTA format '$out_fa' @@ -9,13 +9,13 @@ import sys for line in sys.stdin: if line.startswith("S"): - l,h,s,x = line.strip().split() + l,h,s = line.strip().split('\t')[:3] print(">" + h) print(s) ]]> - +