annotate associations.xml @ 1:66ece4fd024f draft default tip

planemo upload commit 20eeb677e99874173440a365f2db04e315e7ebed
author nathandunn
date Wed, 28 Jun 2017 10:27:08 -0400
parents 028a3ffc17b4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
1 <tool id="planteome-associations" name="Associations" version="0.1.0">
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
2 <macros>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
3 <import>macros.xml</import>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
4 </macros>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
5 <expand macro="frontmatter" />
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
6 <command><![CDATA[
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
7 #if $type == 'find'
1
66ece4fd024f planemo upload commit 20eeb677e99874173440a365f2db04e315e7ebed
nathandunn
parents: 0
diff changeset
8 curl --silent -X GET --header 'Accept: application/json' 'http://biolink.planteome.org/api/association/$type/?rows=$rows&fetch_objects=true&subject=$subject' > $output
0
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
9 #else if $type == 'from'
1
66ece4fd024f planemo upload commit 20eeb677e99874173440a365f2db04e315e7ebed
nathandunn
parents: 0
diff changeset
10 curl --silent -X GET --header 'Accept: application/json' 'http://biolink.planteome.org/api/association/$type/$subject?rows=$rows&fetch_objects=true' > $output
0
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
11 #else if $type == 'to'
1
66ece4fd024f planemo upload commit 20eeb677e99874173440a365f2db04e315e7ebed
nathandunn
parents: 0
diff changeset
12 curl --silent -X GET --header 'Accept: application/json' 'http://biolink.planteome.org/api/association/$type/$object?rows=$rows&fetch_objects=true' > $output
0
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
13 #else if $type == 'between'
1
66ece4fd024f planemo upload commit 20eeb677e99874173440a365f2db04e315e7ebed
nathandunn
parents: 0
diff changeset
14 curl --silent -X GET --header 'Accept: application/json' 'http://biolink.planteome.org/api/association/$type/$subject/$object?rows=$rows&fetch_objects=true' > $output
0
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
15 #end if
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
16 ]]></command>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
17 <inputs>
1
66ece4fd024f planemo upload commit 20eeb677e99874173440a365f2db04e315e7ebed
nathandunn
parents: 0
diff changeset
18 <param name="subject" type="text" format="txt" multiple="false" label="Subject (e.g., EnsemblPlants:GRMZM2G061969_T01)"/>
66ece4fd024f planemo upload commit 20eeb677e99874173440a365f2db04e315e7ebed
nathandunn
parents: 0
diff changeset
19 <param name="object" type="text" format="txt" multiple="false" label="Object (e.g., GO:0005783)"/>
0
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
20 <param name="type" type="select" multiple="false" display="radio" label="Type">
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
21 <option value="find">Find (subject)</option>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
22 <option value="from">From (subject)</option>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
23 <option value="to">To (object)</option>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
24 <option value="between">Between (subject -> object)</option>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
25 </param>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
26 <param name="rows" type="text" format="txt" multiple="false" value="1000" label="Num Rows"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
27 </inputs>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
28 <expand macro="outputs" />
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
29 <tests>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
30 <test>
1
66ece4fd024f planemo upload commit 20eeb677e99874173440a365f2db04e315e7ebed
nathandunn
parents: 0
diff changeset
31 <param name="subject" value="EnsemblPlants:GRMZM2G061969_T01"/>
0
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
32 <param name="type" value="find"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
33 <output name="output" file="find-associations-for-subject.json"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
34 </test>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
35 <test>
1
66ece4fd024f planemo upload commit 20eeb677e99874173440a365f2db04e315e7ebed
nathandunn
parents: 0
diff changeset
36 <param name="subject" value="EnsemblPlants:GRMZM2G061969_T01"/>
0
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
37 <param name="type" value="from"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
38 <output name="output" file="from-associations-for-subject.json"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
39 </test>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
40 <test>
1
66ece4fd024f planemo upload commit 20eeb677e99874173440a365f2db04e315e7ebed
nathandunn
parents: 0
diff changeset
41 <param name="object" value="GO:0005783"/>
0
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
42 <param name="type" value="to"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
43 <output name="output" file="to-associations-for-object.json"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
44 </test>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
45 <test>
1
66ece4fd024f planemo upload commit 20eeb677e99874173440a365f2db04e315e7ebed
nathandunn
parents: 0
diff changeset
46 <param name="subject" value="EnsemblPlants:GRMZM2G061969_T01"/>
66ece4fd024f planemo upload commit 20eeb677e99874173440a365f2db04e315e7ebed
nathandunn
parents: 0
diff changeset
47 <param name="object" value="GO:0005783"/>
0
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
48 <param name="type" value="between"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
49 <output name="output" file="between-associations.json"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
50 </test>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
51 </tests>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
52 <expand macro="citations" />
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
53 </tool>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
54