Used in: gor/nor

COLUMNSORT

The COLUMNSORT command sorts the columns specified to the beginning of the column list. The rest of the columns will then appear after the specified columns and will be sorted alphabetically based on their name.

Usage

gor ... | COLUMNSORT column-list

Examples

The following query will take the first five rows of chromosome 1 from the #dbsnp# table, keep the Chrom and POS columns in the front and then sort the rest of the columns alphabetically. Essential, this command will reverse the order of the Reference and Allele columns.

gor -p chr1 #dbsnp# | TOP 5 | COLUMNSORT Chrom,POS