diff associations.xml @ 2:88e1bd76b069 draft

planemo upload commit 91b079b5648caa7a8795ec0957a4b11e104d986e
author nathandunn
date Thu, 22 Jun 2017 15:28:43 -0400
parents 4f6fba8332ec
children
line wrap: on
line diff
--- a/associations.xml	Wed Jun 21 19:00:33 2017 -0400
+++ b/associations.xml	Thu Jun 22 15:28:43 2017 -0400
@@ -1,17 +1,17 @@
 <tool id="monarch-associations" name="Associations" version="0.1.0">
-    <requirements/>
-    <stdio>
-        <exit_code range="1:"/>
-    </stdio>
+    <macros>
+        <import>macros.xml</import>
+    </macros>
+    <expand macro="frontmatter" />
     <command><![CDATA[
 	#if $type == 'find'
-        curl -X GET --header 'Accept: application/json' 'https://api.monarchinitiative.org/api/association/$type/?rows=$rows&fetch_objects=true&subject=$subject' > $output
+        curl --silent -X GET --header 'Accept: application/json' 'https://api.monarchinitiative.org/api/association/$type/?rows=$rows&fetch_objects=true&subject=$subject' > $output
 	#else if $type == 'from'
-        curl -X GET --header 'Accept: application/json' 'https://api.monarchinitiative.org/api/association/$type/$subject?rows=$rows&fetch_objects=true' > $output
+        curl --silent -X GET --header 'Accept: application/json' 'https://api.monarchinitiative.org/api/association/$type/$subject?rows=$rows&fetch_objects=true' > $output
 	#else if $type == 'to'
-        curl -X GET --header 'Accept: application/json' 'https://api.monarchinitiative.org/api/association/$type/$object?rows=$rows&fetch_objects=true' > $output
+        curl --silent -X GET --header 'Accept: application/json' 'https://api.monarchinitiative.org/api/association/$type/$object?rows=$rows&fetch_objects=true' > $output
 	#else if $type == 'between'
-        curl -X GET --header 'Accept: application/json' 'https://api.monarchinitiative.org/api/association/$type/$subject/$object?rows=$rows&fetch_objects=true' > $output
+        curl --silent -X GET --header 'Accept: application/json' 'https://api.monarchinitiative.org/api/association/$type/$subject/$object?rows=$rows&fetch_objects=true' > $output
 	#end if
 	]]></command>
     <inputs>
@@ -25,9 +25,7 @@
         </param>
         <param name="rows" type="text" format="txt" multiple="false" value="1000" label="Num Rows"/>
     </inputs>
-    <outputs>
-        <data name="output" format="json"/>
-    </outputs>
+    <expand macro="outputs" />
     <tests>
         <test>
             <param name="subject" value="NCBIGene:84570"/>
@@ -51,12 +49,6 @@
             <output name="output" file="between-associations.json"/>
         </test>
     </tests>
-    <help><![CDATA[
-        Pulls data from Monarch Initiative BioLink API web services as JSON.
-		https://api.monarchinitiative.org/api/
-    ]]></help>
-    <citations>
-        <citation type="doi">doi:10.5281/zenodo.56412</citation>
-    </citations>
+    <expand macro="citations" />
 </tool>