# HG changeset patch
# User fubar
# Date 1689746074 0
# Node ID e213ae40f48064c67ab96c448aee6add8d3585ce
# Parent 5687b8f1ad69b60ee6480e4ba7bcf8ee6eeb73ed
retry with echo -n so no newline
diff -r 5687b8f1ad69 -r e213ae40f480 blasttoolssearch/blasttoolssearch.xml
--- a/blasttoolssearch/blasttoolssearch.xml Wed Jul 19 05:48:53 2023 +0000
+++ b/blasttoolssearch/blasttoolssearch.xml Wed Jul 19 05:54:34 2023 +0000
@@ -12,7 +12,7 @@
@@ -74,8 +74,8 @@
#print the header of the inital summary_blastn file
cat summary_${var}.txt | head -1 > header
#report 1
- echo "#" > $3
- cat header ${var}_filtered.txt >> $3
+ echo -n "#" > $3
+ cat header ${var}_filtered.txt >> $3
#end raw]]>
@@ -97,7 +97,7 @@
Wraps https://github.com/schmidda/blast-tools/tree/master as a Galaxy tool as a demonstration for Roberto Barrero
-
+
------