# HG changeset patch # User galaxyp # Date 1500072185 14400 # Node ID c221d1871982d228e4bd85001a6a718fe000d73b # Parent a6a6a9a850b5ccf2a9ff2e2b3d351fb1beb9420f planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms commit daf6dfc513ede9b890125d9fff2c2657d834eea9 diff -r a6a6a9a850b5 -r c221d1871982 FalseDiscoveryRate.xml --- a/FalseDiscoveryRate.xml Thu Apr 27 12:48:14 2017 -0400 +++ b/FalseDiscoveryRate.xml Fri Jul 14 18:43:05 2017 -0400 @@ -1,7 +1,7 @@ - + Estimates the false discovery rate on peptide and protein level using decoy searches. FalseDiscoveryRate @@ -15,20 +15,30 @@ #if $param_in: -in $param_in #end if -#if $param_in_target: - -in_target $param_in_target -#end if -#if $param_in_decoy: - -in_decoy $param_in_decoy -#end if #if $param_out: -out $param_out #end if -#if $param_proteins_only: - -proteins_only +#if $param_PSM: + -PSM + #if " " in str($param_PSM): + "$param_PSM" + #else + $param_PSM + #end if #end if -#if $param_peptides_only: - -peptides_only +#if $param_protein: + -protein + #if " " in str($param_protein): + "$param_protein" + #else + $param_protein + #end if +#end if +#if $param_FDR_PSM: + -FDR:PSM $param_FDR_PSM +#end if +#if $param_FDR_protein: + -FDR:protein $param_FDR_protein #end if #if $param_algorithm_no_qvalues: -algorithm:no_qvalues @@ -52,11 +62,17 @@ #end if - - - - - + + + + + + + + + + + diff -r a6a6a9a850b5 -r c221d1871982 macros.xml --- a/macros.xml Thu Apr 27 12:48:14 2017 -0400 +++ b/macros.xml Fri Jul 14 18:43:05 2017 -0400 @@ -2,7 +2,7 @@ - openms + openms xtandem fido msgf_plus diff -r a6a6a9a850b5 -r c221d1871982 readme.md --- a/readme.md Thu Apr 27 12:48:14 2017 -0400 +++ b/readme.md Fri Jul 14 18:43:05 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 @@ - -