diff feature_selection.xml @ 5:2d681d0f9393 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/sklearn commit 64158f357e708f0b60d2669d92d614f7aee34c0e
author bgruening
date Wed, 06 Jun 2018 17:43:13 -0400
parents 44e26f8a82c6
children b0d554b38770
line wrap: on
line diff
--- a/feature_selection.xml	Tue Jun 05 06:46:40 2018 -0400
+++ b/feature_selection.xml	Wed Jun 06 17:43:13 2018 -0400
@@ -36,7 +36,7 @@
 if input_type=="tabular":
     header = 'infer' if features_has_header else None
     column_option = params["input_options"]["column_selector_options_1"]["selected_column_selector_option"]
-    if column_option == "by_index_number":
+    if column_option in ["by_index_number", "all_but_by_index_number"]:
         c = params["input_options"]["column_selector_options_1"]["col1"]
     else:
         c = None
@@ -55,7 +55,7 @@
 ## Read labels
 header = 'infer' if params["input_options"]["header2"] else None
 column_option = params["input_options"]["column_selector_options_2"]["selected_column_selector_option2"]
-if column_option == "by_index_number":
+if column_option in ["by_index_number", "all_but_by_index_number"]:
     c = params["input_options"]["column_selector_options_2"]["col2"]
 else:
     c = None