# HG changeset patch # User galaxyp # Date 1502283928 14400 # Node ID 125774c3e8aaa707731e7495f8f8df49cff159f9 # Parent 916f41a35640e9183dcd546b48f2b33bc1fa7640 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms commit 9a14ed1f2d3c9abdfb080251b3419dd9e0c52a14 diff -r 916f41a35640 -r 125774c3e8aa IsobaricAnalyzer.xml --- a/IsobaricAnalyzer.xml Wed Mar 01 12:22:29 2017 -0500 +++ b/IsobaricAnalyzer.xml Wed Aug 09 09:05:28 2017 -0400 @@ -1,7 +1,7 @@ - + Calculates isobaric quantitative values for peptides IsobaricAnalyzer @@ -13,7 +13,12 @@ IsobaricAnalyzer #if $param_type: - -type $param_type + -type + #if " " in str($param_type): + "$param_type" + #else + $param_type + #end if #end if #if $param_in: -in $param_in @@ -25,7 +30,12 @@ -id_pool "$param_id_pool" #end if #if $param_extraction_select_activation: - -extraction:select_activation $param_extraction_select_activation + -extraction:select_activation + #if " " in str($param_extraction_select_activation): + "$param_extraction_select_activation" + #else + $param_extraction_select_activation + #end if #end if #if $param_extraction_reporter_mass_shift: -extraction:reporter_mass_shift $param_extraction_reporter_mass_shift @@ -34,7 +44,12 @@ -extraction:min_precursor_intensity $param_extraction_min_precursor_intensity #end if #if $param_extraction_keep_unannotated_precursor: - -extraction:keep_unannotated_precursor $param_extraction_keep_unannotated_precursor + -extraction:keep_unannotated_precursor + #if " " in str($param_extraction_keep_unannotated_precursor): + "$param_extraction_keep_unannotated_precursor" + #else + $param_extraction_keep_unannotated_precursor + #end if #end if #if $param_extraction_min_reporter_intensity: -extraction:min_reporter_intensity $param_extraction_min_reporter_intensity @@ -110,7 +125,12 @@ #end for #end if #if $param_quantification_isotope_correction: - -quantification:isotope_correction $param_quantification_isotope_correction + -quantification:isotope_correction + #if " " in str($param_quantification_isotope_correction): + "$param_quantification_isotope_correction" + #else + $param_quantification_isotope_correction + #end if #end if #if $param_quantification_normalization: -quantification:normalization @@ -146,7 +166,12 @@ -tmt10plex:channel_131_description "$param_tmt10plex_channel_131_description" #end if #if $param_tmt10plex_reference_channel: - -tmt10plex:reference_channel $param_tmt10plex_reference_channel + -tmt10plex:reference_channel + #if " " in str($param_tmt10plex_reference_channel): + "$param_tmt10plex_reference_channel" + #else + $param_tmt10plex_reference_channel + #end if #end if #if $rep_param_tmt10plex_correction_matrix: @@ -199,7 +224,12 @@ -extraction:precursor_isotope_deviation $adv_opts.param_extraction_precursor_isotope_deviation #end if #if $adv_opts.param_extraction_purity_interpolation: - -extraction:purity_interpolation $adv_opts.param_extraction_purity_interpolation + -extraction:purity_interpolation + #if " " in str($adv_opts.param_extraction_purity_interpolation): + "$adv_opts.param_extraction_purity_interpolation" + #else + $adv_opts.param_extraction_purity_interpolation + #end if #end if #end if @@ -211,7 +241,7 @@ - + @@ -234,7 +264,7 @@ - + diff -r 916f41a35640 -r 125774c3e8aa datatypes_conf.xml --- a/datatypes_conf.xml Wed Mar 01 12:22:29 2017 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 916f41a35640 -r 125774c3e8aa filetypes.txt --- a/filetypes.txt Wed Mar 01 12:22:29 2017 -0500 +++ b/filetypes.txt Wed Aug 09 09:05:28 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 916f41a35640 -r 125774c3e8aa macros.xml --- a/macros.xml Wed Mar 01 12:22:29 2017 -0500 +++ b/macros.xml Wed Aug 09 09:05:28 2017 -0400 @@ -2,7 +2,7 @@ - openms + openms xtandem fido msgf_plus diff -r 916f41a35640 -r 125774c3e8aa readme.md --- a/readme.md Wed Mar 01 12:22:29 2017 -0500 +++ b/readme.md Wed Aug 09 09:05:28 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 ``` - * In `PeakPickerHiRes.xml`, the parameter `report_FWHM_unit` has to be put in quotation marks. Look for the following line + + * In `IDFileConverter.xml` the following is needed in the command section at the beginning (check your file to know what to copy where): - -algorithm:report_FWHM_unit $param_algorithm_report_FWHM_unit - - and change it to + ``` + + ``` + + * In `IDFileConverter.xml` and `FileConverter.xml` add `auto_format="true"` to the output, e.g.: - + - `` + - `` * To add an example test case to `DecoyDatabase.xml` add the following after the output section. If standard settings change you might have to adjust the options and/or the test files. diff -r 916f41a35640 -r 125774c3e8aa tool.conf --- a/tool.conf Wed Mar 01 12:22:29 2017 -0500 +++ b/tool.conf Wed Aug 09 09:05:28 2017 -0400 @@ -6,13 +6,7 @@ -
- - -
- - @@ -22,13 +16,17 @@ + + +
+ @@ -44,7 +42,6 @@ - @@ -62,12 +59,14 @@ + + @@ -78,6 +77,7 @@ +
@@ -154,9 +154,7 @@ - -