# HG changeset patch # User galaxyp # Date 1502286895 14400 # Node ID c040ffc3ac9b8251d6c47ccfa341c347131da71b # Parent d12500c4d67e43d2b725b844e1230ffcec46415b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms commit 9a14ed1f2d3c9abdfb080251b3419dd9e0c52a14 diff -r d12500c4d67e -r c040ffc3ac9b FeatureFinderIdentification.xml --- a/FeatureFinderIdentification.xml Thu Apr 27 13:19:43 2017 -0400 +++ b/FeatureFinderIdentification.xml Wed Aug 09 09:54:55 2017 -0400 @@ -1,7 +1,7 @@ - + Detects features in MS1 data based on peptide identifications. FeatureFinderIdentification @@ -18,6 +18,9 @@ #if $param_id: -id $param_id #end if +#if $param_id_ext: + -id_ext $param_id_ext +#end if #if $param_out: -out $param_out #end if @@ -27,29 +30,63 @@ #if $param_chrom_out: -chrom_out $param_chrom_out #end if -#if $param_trafo_out: - -trafo_out $param_trafo_out -#end if -#if $param_extract_reference_rt: - -extract:reference_rt - #if " " in str($param_extract_reference_rt): - "$param_extract_reference_rt" - #else - $param_extract_reference_rt - #end if -#end if -#if $param_extract_rt_window: - -extract:rt_window $param_extract_rt_window +#if $param_candidates_out: + -candidates_out $param_candidates_out #end if #if $param_extract_mz_window: -extract:mz_window $param_extract_mz_window #end if -#if $param_extract_isotope_pmin: - -extract:isotope_pmin $param_extract_isotope_pmin +#if $param_extract_n_isotopes: + -extract:n_isotopes $param_extract_n_isotopes #end if #if $param_detect_peak_width: -detect:peak_width $param_detect_peak_width #end if +#if $param_detect_mapping_tolerance: + -detect:mapping_tolerance $param_detect_mapping_tolerance +#end if +#if $param_svm_samples: + -svm:samples $param_svm_samples +#end if +#if $param_svm_no_selection: + -svm:no_selection +#end if +#if $param_svm_xval_out: + -svm:xval_out $param_svm_xval_out +#end if +#if $param_svm_kernel: + -svm:kernel + #if " " in str($param_svm_kernel): + "$param_svm_kernel" + #else + $param_svm_kernel + #end if +#end if +#if $param_svm_xval: + -svm:xval $param_svm_xval +#end if + +#if $rep_param_svm_log2_C: +-svm:log2_C + #for token in $rep_param_svm_log2_C: + #if " " in str(token): + "$token.param_svm_log2_C" + #else + $token.param_svm_log2_C + #end if + #end for +#end if + +#if $rep_param_svm_log2_gamma: +-svm:log2_gamma + #for token in $rep_param_svm_log2_gamma: + #if " " in str(token): + "$token.param_svm_log2_gamma" + #else + $token.param_svm_log2_gamma + #end if + #end for +#end if #if $param_model_type: -model:type #if " " in str($param_model_type): @@ -59,11 +96,41 @@ #end if #end if #if $adv_opts.adv_opts_selector=='advanced': + #if $adv_opts.param_candidates_in: + -candidates_in $adv_opts.param_candidates_in +#end if #if $adv_opts.param_force: -force #end if - #if $adv_opts.param_detect_all_features: - -detect:all_features + #if $adv_opts.param_extract_isotope_pmin: + -extract:isotope_pmin $adv_opts.param_extract_isotope_pmin +#end if + #if $adv_opts.param_extract_rt_quantile: + -extract:rt_quantile $adv_opts.param_extract_rt_quantile +#end if + #if $adv_opts.param_extract_rt_window: + -extract:rt_window $adv_opts.param_extract_rt_window +#end if + #if $adv_opts.param_detect_min_peak_width: + -detect:min_peak_width $adv_opts.param_detect_min_peak_width +#end if + #if $adv_opts.param_detect_signal_to_noise: + -detect:signal_to_noise $adv_opts.param_detect_signal_to_noise +#end if + #if $adv_opts.param_svm_epsilon: + -svm:epsilon $adv_opts.param_svm_epsilon +#end if + #if $adv_opts.param_svm_cache_size: + -svm:cache_size $adv_opts.param_svm_cache_size +#end if + #if $adv_opts.param_svm_no_shrinking: + -svm:no_shrinking +#end if + #if $adv_opts.param_svm_predictors: + -svm:predictors "$adv_opts.param_svm_predictors" +#end if + #if $adv_opts.param_svm_min_prob: + -svm:min_prob $adv_opts.param_svm_min_prob #end if #if $adv_opts.param_model_add_zeros: -model:add_zeros $adv_opts.param_model_add_zeros @@ -74,6 +141,9 @@ #if $adv_opts.param_model_no_imputation: -model:no_imputation #end if + #if $adv_opts.param_model_check_min_area: + -model:check:min_area $adv_opts.param_model_check_min_area +#end if #if $adv_opts.param_model_check_boundaries: -model:check:boundaries $adv_opts.param_model_check_boundaries #end if @@ -86,30 +156,69 @@ #end if - - - - - - - - + + + + + + + + + + + + - - - - + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + @@ -119,7 +228,8 @@ - + + Detects features in MS1 data based on peptide identifications. diff -r d12500c4d67e -r c040ffc3ac9b datatypes_conf.xml --- a/datatypes_conf.xml Thu Apr 27 13:19:43 2017 -0400 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r d12500c4d67e -r c040ffc3ac9b filetypes.txt --- a/filetypes.txt Thu Apr 27 13:19:43 2017 -0400 +++ b/filetypes.txt Wed Aug 09 09:54:55 2017 -0400 @@ -14,7 +14,7 @@ consensusXML consensusxml galaxy.datatypes.proteomics:ConsensusXML application/xml edta tabular galaxy.datatypes.tabular:Tabular featureXML featurexml galaxy.datatypes.proteomics:FeatureXML application/xml -idXML idxml galaxy.datatypes.proteomics:IdXM application/xml +idXML idxml galaxy.datatypes.proteomics:IdXML application/xml mzML mzml galaxy.datatypes.proteomics:MzML application/xml mzXML mzxml galaxy.datatypes.proteomics:MzXML application/xml pepXML pepxml galaxy.datatypes.proteomics:PepXml application/xml @@ -26,4 +26,4 @@ msp msp galaxy.datatypes.proteomics:Msp mzid mzid galaxy.datatypes.proteomics:MzIdentML application/xml png png galaxy.datatypes.images:Png image/png -mgf mgf galaxy.datatypes.proteomics:Mgf \ No newline at end of file +mgf mgf galaxy.datatypes.proteomics:Mgf diff -r d12500c4d67e -r c040ffc3ac9b macros.xml --- a/macros.xml Thu Apr 27 13:19:43 2017 -0400 +++ b/macros.xml Wed Aug 09 09:54:55 2017 -0400 @@ -2,7 +2,7 @@ - openms + openms xtandem fido msgf_plus diff -r d12500c4d67e -r c040ffc3ac9b readme.md --- a/readme.md Thu Apr 27 13:19:43 2017 -0400 +++ b/readme.md Wed Aug 09 09:54:55 2017 -0400 @@ -14,15 +14,29 @@ Generating OpenMS wrappers ========================== - * install OpenMS (you can do this automatically through the Tool Shed) + * install OpenMS (you can do this automatically through Conda) * create a folder called CTD - * inside of your new installed openms/bin folder, execute the following command: + * if you installed openms as a binary in a specific directory, execute the following command in the `openms/bin` directory: ```bash for binary in `ls`; do ./$binary -write_ctd /PATH/TO/YOUR/CTD; done; ``` - * `MetaProSIP.ctd` includes a not supported character: To use it, search for `²` and replace it (e.g. with `^2`). + * if there is no binary release (e.g. as with version 2.2), download and unpack the Conda package, find the `bin` folder and create a list of the tools as follow: + + ```bash + ls >> tools.txt + ``` + + * search for the `bin` folder of your conda environment containing OpenMS and do: + + ```bash + while read p; do + ./PATH/TO/BIN/$p -write_ctd /PATH/TO/YOUR/CTD; + done -
- - -
- - @@ -22,13 +16,17 @@ + + +
+ @@ -44,7 +42,6 @@ - @@ -62,12 +59,14 @@ + + @@ -78,6 +77,7 @@ +
@@ -154,9 +154,7 @@ - -