Repository 'openms_falsediscoveryrate'
hg clone https://toolshed.g2.bx.psu.edu/repos/galaxyp/openms_falsediscoveryrate

Changeset 2:518b1730cf2a (2017-04-27)
Previous changeset 1:dbb8ec267c5f (2017-04-18) Next changeset 3:7e170e213707 (2017-08-09)
Commit message:
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms commit 50c26f7fbe8a2bd1347c860d7a62480865efc254
modified:
readme.md
b
diff -r dbb8ec267c5f -r 518b1730cf2a readme.md
--- a/readme.md Tue Apr 18 16:03:09 2017 -0400
+++ b/readme.md Thu Apr 27 13:19:21 2017 -0400
[
@@ -102,10 +102,32 @@
     [...]
     ]]>
     ```
+    
+ * In `IDFileConverter.xml` the following is needed in the command section at the beginning (check your file to know what to copy where):

+   ```
+    <command><![CDATA[
+   
+      ## check input file type
+      #set $in_type = $param_in.ext
 
- * In `FileConverter.xml` add `auto_format="true"` to the output, e.g.:
+      ## create the symlinks to set the proper file extension, since IDFileConverter uses them to choose how to handle the input files
+      ln -s '$param_in' 'param_in.${in_type}' &&
+
+      IDFileConverter
+
+      #if $param_in:
+        -in 'param_in.${in_type}'
+      #end if
+
+        [...]
+        ]]>
+    ```
+
+ * In `IDFileConverter.xml` and `FileConverter.xml` add `auto_format="true"` to the output, e.g.:
  
-        <data name="param_out" metadata_source="param_in" auto_format="true"/>
+   - `<data name="param_out" auto_format="true"/>`
+   - `<data name="param_out" metadata_source="param_in" auto_format="true"/>`
         
  * 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.