Previous changeset 0:49d6f8ef63b3 (2019-06-19) Next changeset 2:e33c82b63727 (2021-03-03) |
Commit message:
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gfa_to_fa commit 518c9f5ae1d6dfddd26bc37107e06f269147ed55" |
modified:
gfa_to_fa.xml |
b |
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 @@ -<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> |