# HG changeset patch # User bgruening # Date 1528321460 14400 # Node ID 6cf4b82c72bc706c2ad95957afe34fc13b320e51 # Parent 44699d79d9087d5f75f747a1afda57f3bb08d7e9 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/sklearn commit 64158f357e708f0b60d2669d92d614f7aee34c0e diff -r 44699d79d908 -r 6cf4b82c72bc generalized_linear.xml --- a/generalized_linear.xml Tue Jun 05 06:47:46 2018 -0400 +++ b/generalized_linear.xml Wed Jun 06 17:44:20 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 == "by_index_number": +if column_option in ["by_index_number", "all_but_by_index_number"]: 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 == "by_index_number": +if column_option in ["by_index_number", "all_but_by_index_number"]: c = params["selected_tasks"]["selected_algorithms"]["input_options"]["column_selector_options_2"]["col2"] else: c = None @@ -240,7 +240,8 @@ - + + diff -r 44699d79d908 -r 6cf4b82c72bc main_macros.xml --- a/main_macros.xml Tue Jun 05 06:47:46 2018 -0400 +++ b/main_macros.xml Wed Jun 06 17:44:20 2018 -0400 @@ -7,6 +7,9 @@ if c_option == 'by_index_number': cols = list(map(lambda x: x - 1, c)) data = data.iloc[:,cols] + if c_option == 'all_but_by_index_number': + cols = list(map(lambda x: x - 1, c)) + data.drop(data.columns[cols], axis=1, inplace=True) y = data.values if return_df: return y, data @@ -443,16 +446,17 @@ - - - --> + + + +