annotate genotype-associations.xml @ 0:028a3ffc17b4 draft

planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
author nathandunn
date Fri, 23 Jun 2017 15:04:12 -0400
parents
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-genotype-associations" name="Genotype 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 curl --silent -X GET --header 'Accept: application/json' 'http://biolink.planteome.org/apiapi/bioentity/genotype/$input/$association/?rows=$rows&fetch_objects=true' > $output
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
8 ]]></command>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
9 <inputs>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
10 <param name="input" type="text" format="txt" multiple="false" label="Genotype (e.g. dbSNPIndividual:12141)" />
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
11 <param name="association" type="select" multiple="false" display="radio" label="Type">
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
12 <option value="diseases">Diseases </option>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
13 <option value="genes">Genes</option>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
14 <option value="genotypes">Genotypes</option>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
15 <option value="phenotypes">Phenotypes</option>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
16 </param>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
17 <param name="rows" type="text" format="txt" multiple="false" value="1000" label="Num Rows"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
18 </inputs>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
19 <expand macro="outputs" />
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
20 <tests>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
21 <test>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
22 <param name="input" value="dbSNPIndividual:12141"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
23 <param name="association" value="diseases"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
24 <output name="output" file="diseases-for-genotype.json"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
25 </test>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
26 <test>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
27 <param name="input" value="dbSNPIndividual:12141"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
28 <param name="association" value="genes"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
29 <output name="output" file="genes-for-genotype.json"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
30 </test>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
31 <test>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
32 <param name="input" value="dbSNPIndividual:12141"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
33 <param name="association" value="genotypes"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
34 <output name="output" file="genotypes-for-genotype.json"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
35 </test>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
36 <test>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
37 <param name="input" value="dbSNPIndividual:12141"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
38 <param name="association" value="phenotypes"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
39 <output name="output" file="phenotypes-for-genotype.json"/>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
40 </test>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
41 </tests>
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
42 <expand macro="citations" />
028a3ffc17b4 planemo upload commit b095175f34e78ceded24a6e1da99b328f50db86d
nathandunn
parents:
diff changeset
43 </tool>