Mercurial > repos > nathandunn > biolinkplanteome
annotate associations.xml @ 0:028a3ffc17b4 draft
planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
author | nathandunn |
---|---|
date | Fri, 23 Jun 2017 15:04:12 -0400 |
parents | |
children | 66ece4fd024f |
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' |
028a3ffc17b4
planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff
changeset
|
8 curl --silent -X GET --header 'Accept: application/json' 'http://biolink.planteome.org/apiapi/association/$type/?rows=$rows&fetch_objects=true&subject=$subject' > $output |
028a3ffc17b4
planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff
changeset
|
9 #else if $type == 'from' |
028a3ffc17b4
planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff
changeset
|
10 curl --silent -X GET --header 'Accept: application/json' 'http://biolink.planteome.org/apiapi/association/$type/$subject?rows=$rows&fetch_objects=true' > $output |
028a3ffc17b4
planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff
changeset
|
11 #else if $type == 'to' |
028a3ffc17b4
planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff
changeset
|
12 curl --silent -X GET --header 'Accept: application/json' 'http://biolink.planteome.org/apiapi/association/$type/$object?rows=$rows&fetch_objects=true' > $output |
028a3ffc17b4
planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff
changeset
|
13 #else if $type == 'between' |
028a3ffc17b4
planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff
changeset
|
14 curl --silent -X GET --header 'Accept: application/json' 'http://biolink.planteome.org/apiapi/association/$type/$subject/$object?rows=$rows&fetch_objects=true' > $output |
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> |
028a3ffc17b4
planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff
changeset
|
18 <param name="subject" type="text" format="txt" multiple="false" label="Subject"/> |
028a3ffc17b4
planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff
changeset
|
19 <param name="object" type="text" format="txt" multiple="false" label="Object"/> |
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> |
028a3ffc17b4
planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff
changeset
|
31 <param name="subject" value="NCBIGene:84570"/> |
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> |
028a3ffc17b4
planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff
changeset
|
36 <param name="subject" value="NCBIGene:84570"/> |
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> |
028a3ffc17b4
planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff
changeset
|
41 <param name="object" value="MP:0013765"/> |
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> |
028a3ffc17b4
planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff
changeset
|
46 <param name="subject" value="MGI:1342287"/> |
028a3ffc17b4
planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff
changeset
|
47 <param name="object" value="MP:0013765"/> |
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 |