Galaxy | Tool Preview

Sort (version 9.3+galaxy1)
These will be ignored during sort.
Column selections
Column selections 0
Print only unique values, based on sorted key columns. See help section for details. (--unique)
Sort and Join key column values regardless of upper/lower case letters. (-i)

What it does

This tool sorts an input file.


Sorting Styles


Example - Header line

Input file (note first line is a header line, should not be sorted):

Fruit   Color   Price
Banana  Yellow  4.1
Avocado Green   8.0
Apple   Red     3.0
Melon   Green   6.1

Sorting by numeric order on column 3, with header, will return:

Fruit   Color   Price
Apple   Red     3.0
Banana  Yellow  4.1
Melon   Green   6.1
Avocado Green   8.0

Example - Natural vs. Alphabetical sorting

Given the following list:

chr4
chr13
chr1
chr10
chr20
chr2

Alphabetical sort would produce the following sorted list:

chr1
chr10
chr13
chr2
chr20
chr4

Natural Sort would produce the following sorted list:

chr1
chr2
chr4
chr10
chr13
chr20

If you're planning to use the file with another tool that expected sorted files (such as join), you should use the Alphabetical sort, not the Natural Sort. Natural sort order is easier for humans, but is unnatural for computer programs.