mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
A tiny bug fix for Sort tool - the delimiter is now defaulted to tab.
This commit is contained in:
@@ -103,7 +103,7 @@ def main():
|
||||
# Launch sort.
|
||||
|
||||
environ['LC_ALL'] = 'POSIX'
|
||||
commandline = "sort -f"+style+"-k "+str(column)+" -o "+outputfile+" "+inputfile+order
|
||||
commandline = "sort -f"+style+"-k "+str(column)+" -t $'\t' -o "+outputfile+" "+inputfile+order
|
||||
|
||||
errorcode, stdout = commands.getstatusoutput(commandline)
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<tool id="sort1" name="Sort">
|
||||
<tool id="sort1" name="Sort" version="1.0.1">
|
||||
<description>data in ascending or descending order</description>
|
||||
<command interpreter="python">sorter.py -i $input -o $out_file1 -cols $column -order $order -style $style</command>
|
||||
<inputs>
|
||||
|
||||
Reference in New Issue
Block a user