Mercurial > repos > nathandunn > biolinkplanteome
diff associations.xml @ 0:028a3ffc17b4 draft
planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
author | nathandunn |
---|---|
date | Fri, 23 Jun 2017 15:04:12 -0400 |
parents | |
children | 66ece4fd024f |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/associations.xml Fri Jun 23 15:04:12 2017 -0400 @@ -0,0 +1,54 @@ +<tool id="planteome-associations" name="Associations" version="0.1.0"> + <macros> + <import>macros.xml</import> + </macros> + <expand macro="frontmatter" /> + <command><![CDATA[ + #if $type == 'find' + curl --silent -X GET --header 'Accept: application/json' 'http://biolink.planteome.org/apiapi/association/$type/?rows=$rows&fetch_objects=true&subject=$subject' > $output + #else if $type == 'from' + curl --silent -X GET --header 'Accept: application/json' 'http://biolink.planteome.org/apiapi/association/$type/$subject?rows=$rows&fetch_objects=true' > $output + #else if $type == 'to' + curl --silent -X GET --header 'Accept: application/json' 'http://biolink.planteome.org/apiapi/association/$type/$object?rows=$rows&fetch_objects=true' > $output + #else if $type == 'between' + curl --silent -X GET --header 'Accept: application/json' 'http://biolink.planteome.org/apiapi/association/$type/$subject/$object?rows=$rows&fetch_objects=true' > $output + #end if + ]]></command> + <inputs> + <param name="subject" type="text" format="txt" multiple="false" label="Subject"/> + <param name="object" type="text" format="txt" multiple="false" label="Object"/> + <param name="type" type="select" multiple="false" display="radio" label="Type"> + <option value="find">Find (subject)</option> + <option value="from">From (subject)</option> + <option value="to">To (object)</option> + <option value="between">Between (subject -> object)</option> + </param> + <param name="rows" type="text" format="txt" multiple="false" value="1000" label="Num Rows"/> + </inputs> + <expand macro="outputs" /> + <tests> + <test> + <param name="subject" value="NCBIGene:84570"/> + <param name="type" value="find"/> + <output name="output" file="find-associations-for-subject.json"/> + </test> + <test> + <param name="subject" value="NCBIGene:84570"/> + <param name="type" value="from"/> + <output name="output" file="from-associations-for-subject.json"/> + </test> + <test> + <param name="object" value="MP:0013765"/> + <param name="type" value="to"/> + <output name="output" file="to-associations-for-object.json"/> + </test> + <test> + <param name="subject" value="MGI:1342287"/> + <param name="object" value="MP:0013765"/> + <param name="type" value="between"/> + <output name="output" file="between-associations.json"/> + </test> + </tests> + <expand macro="citations" /> +</tool> +