| Previous changeset 1:f6def1b90150 (2024-12-11) Next changeset 3:02f7746e7772 (2025-01-01) |
|
Commit message:
planemo upload for repository https://github.com/goeckslab/Galaxy-Pycaret commit 9497c4faca7063bcbb6b201ab6d0dd1570f22acb |
|
modified:
pycaret_train.xml |
| b |
| diff -r f6def1b90150 -r 009b18a75dc3 pycaret_train.xml --- a/pycaret_train.xml Wed Dec 11 19:40:12 2024 +0000 +++ b/pycaret_train.xml Sat Dec 14 23:18:02 2024 +0000 |
| [ |
| @@ -6,20 +6,20 @@ <expand macro="python_requirements" /> <command> <![CDATA[ - python $__tool_directory__/pycaret_train.py --input_file $input_file --target_col $target_feature --output_dir . --random_seed $random_seed + python $__tool_directory__/pycaret_train.py --input_file '$input_file' --target_col '$target_feature' --output_dir '.' --random_seed '$random_seed' #if $model_type == "classification" #if $classification_models - --models $classification_models + --models '$classification_models' #end if #end if #if $model_type == "regression" #if $regression_models - --models $regression_models + --models '$regression_models' #end if #end if #if $customize_defaults == "true" #if $train_size - --train_size $train_size + --train_size '$train_size' #end if #if $normalize --normalize @@ -31,7 +31,7 @@ --cross_validation #end if #if $cross_validation_folds - --cross_validation_folds $cross_validation_folds + --cross_validation_folds '$cross_validation_folds' #end if #if $remove_outliers --remove_outliers @@ -47,9 +47,9 @@ #end if #end if #if $test_file - --test_file $test_file + --test_file '$test_file' #end if - --model_type $model_type + --model_type '$model_type' ]]> </command> <inputs> |