diff generalized_linear.xml @ 12:513405ebad8b draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/sklearn commit cd4a8b019168acd5a513c57a1b1f380622f230f6
author bgruening
date Sun, 01 Jul 2018 03:21:11 -0400
parents 6cf4b82c72bc
children cf635edf37d2
line wrap: on
line diff
--- a/generalized_linear.xml	Wed Jun 06 17:44:20 2018 -0400
+++ b/generalized_linear.xml	Sun Jul 01 03:21:11 2018 -0400
@@ -35,7 +35,7 @@
 #if $selected_tasks.selected_algorithms.input_options.selected_input=="tabular":
 header = 'infer' if params["selected_tasks"]["selected_algorithms"]["input_options"]["header1"] else None
 column_option = params["selected_tasks"]["selected_algorithms"]["input_options"]["column_selector_options_1"]["selected_column_selector_option"]
-if column_option in ["by_index_number", "all_but_by_index_number"]:
+if column_option in ["by_index_number", "all_but_by_index_number", "by_header_name", "all_but_by_header_name"]:
     c = params["selected_tasks"]["selected_algorithms"]["input_options"]["column_selector_options_1"]["col1"]
 else:
     c = None
@@ -53,7 +53,7 @@
 
 header = 'infer' if params["selected_tasks"]["selected_algorithms"]["input_options"]["header2"] else None
 column_option = params["selected_tasks"]["selected_algorithms"]["input_options"]["column_selector_options_2"]["selected_column_selector_option2"]
-if column_option in ["by_index_number", "all_but_by_index_number"]:
+if column_option in ["by_index_number", "all_but_by_index_number", "by_header_name", "all_but_by_header_name"]:
     c = params["selected_tasks"]["selected_algorithms"]["input_options"]["column_selector_options_2"]["col2"]
 else:
     c = None