[hg] galaxy 2850: Fixed ascending/descending bug on Sort, and ad...
details: http://www.bx.psu.edu/hg/galaxy/rev/d146ca99434f changeset: 2850:d146ca99434f user: Kelly Vincent <kpvincent@bx.psu.edu> date: Thu Oct 08 11:33:43 2009 -0400 description: Fixed ascending/descending bug on Sort, and added ability to specify ascending or descending on each column. 2 file(s) affected in this change: tools/filters/sorter.py tools/filters/sorter.xml diffs (100 lines): diff -r 674bb364697a -r d146ca99434f tools/filters/sorter.py --- a/tools/filters/sorter.py Thu Oct 08 11:14:04 2009 -0400 +++ b/tools/filters/sorter.py Thu Oct 08 11:33:43 2009 -0400 @@ -26,19 +26,20 @@ try: inputfile = options.input outputfile = '-o %s' % options.out_file1 - order = ('', '-r')[options.order == 'DESC'] columns = [options.column] styles = [('','n')[options.style == 'num']] - col_styles = sys.argv[6:] - if len(col_styles) > 1: - columns.extend([col_styles[i] for i in range(0,len(col_styles),2)]) - styles.extend([('','n')[col_styles[i] == 'num'] for i in range(1,len(col_styles),2)]) - cols = [ '-k%s,%s%s'%(columns[i], columns[i], styles[i]) for i in range(len(columns)) ] + orders = [('','r')[options.order == 'DESC']] + col_style_orders = sys.argv[6:] + if len(col_style_orders) > 1: + columns.extend([col_style_orders[i] for i in range(0,len(col_style_orders),3)]) + styles.extend([('','n')[col_style_orders[i] == 'num'] for i in range(1,len(col_style_orders),3)]) + orders.extend([('','r')[col_style_orders[i] == 'DESC'] for i in range(2,len(col_style_orders),3)]) + cols = [ '-k%s,%s%s%s'%(columns[i], columns[i], styles[i], orders[i]) for i in range(len(columns)) ] except Exception, ex: stop_err('Error parsing input parameters\n' + str(ex)) # Launch sort. - cmd = "sort -f -t $'\t' %s %s %s %s" % (order, ' '.join(cols), outputfile, inputfile) + cmd = "sort -f -t $'\t' %s %s %s" % (' '.join(cols), outputfile, inputfile) try: os.system(cmd) except Exception, ex: diff -r 674bb364697a -r d146ca99434f tools/filters/sorter.xml --- a/tools/filters/sorter.xml Thu Oct 08 11:14:04 2009 -0400 +++ b/tools/filters/sorter.xml Thu Oct 08 11:33:43 2009 -0400 @@ -10,6 +10,7 @@ #for $col in $column_set: ${col.other_column} ${col.other_style} + ${col.other_order} #end for </command> <inputs> @@ -19,17 +20,21 @@ <option value="num">Numerical sort</option> <option value="alpha">Alphabetical sort</option> </param> + <param name="order" type="select" label="everything in"> + <option value="DESC">Descending order</option> + <option value="ASC">Ascending order</option> + </param> <repeat name="column_set" title="Column selection"> <param name="other_column" label="on column" type="data_column" data_ref="input" accept_default="true" /> <param name="other_style" type="select" label="with flavor"> <option value="num">Numerical sort</option> <option value="alpha">Alphabetical sort</option> </param> + <param name="other_order" type="select" label="everything in"> + <option value="DESC">Descending order</option> + <option value="ASC">Ascending order</option> + </param> </repeat> - <param name="order" type="select" label="everything in"> - <option value="DESC">Descending order</option> - <option value="ASC">Ascending order</option> - </param> </inputs> <outputs> <data format="input" name="out_file1" metadata_source="input"/> @@ -39,18 +44,20 @@ <param name="input" value="sort_in1.bed"/> <param name="column" value="1"/> <param name="style" value="num"/> + <param name="order" value="ASC"/> <param name="other_column" value="3"/> <param name="other_style" value="num"/> - <param name="order" value="ASC"/> + <param name="other_order" value="ASC"/> <output name="out_file1" file="sort_out1.bed"/> </test> <test> <param name="input" value="sort_in1.bed"/> <param name="column" value="3"/> <param name="style" value="alpha"/> + <param name="order" value="ASC"/> <param name="other_column" value="1"/> <param name="other_style" value="alpha"/> - <param name="order" value="ASC"/> + <param name="other_order" value="ASC"/> <output name="out_file1" file="sort_out2.bed"/> </test> </tests> @@ -64,7 +71,7 @@ **Syntax** -This tool sorts the dataset on any number of columns in either ascending or descending order (all columns will be ascending or descending). +This tool sorts the dataset on any number of columns in either ascending or descending order. * Numerical sort orders numbers by their magnitude, ignores all characters besides numbers, and evaluates a string of numbers to the value they signify. * Alphabetical sort is a phonebook type sort based on the conventional order of letters in an alphabet. Each nth letter is compared with the nth letter of other words in the list, starting at the first letter of each word and advancing to the second, third, fourth, and so on, until the order is established. Therefore, in an alphabetical sort, 2 comes after 100 (1 < 2).
participants (1)
-
Greg Von Kuster