Mercurial > repos > nathandunn > biolinkmonarchinitiative
comparison phenotype-gene-associations.xml @ 0:4f6fba8332ec draft
planemo upload commit 570b5e3caa1a2bd2d9937fb6acc3ea991bfeaa10-dirty
author | nathandunn |
---|---|
date | Wed, 21 Jun 2017 18:42:56 -0400 |
parents | |
children | 88e1bd76b069 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4f6fba8332ec |
---|---|
1 <tool id="monarch-phenotype-gene-associations" name="Phenotype Gene Associations" version="0.1.0"> | |
2 <requirements/> | |
3 <stdio> | |
4 <exit_code range="1:" /> | |
5 </stdio> | |
6 <command><![CDATA[ | |
7 curl -X GET --header 'Accept: application/json' 'https://api.monarchinitiative.org/api/bioentity/phenotype/$input/gene/$taxid/ids?rows=$rows&fetch_objects=true' > $output | |
8 ]]></command> | |
9 <inputs> | |
10 <param name="input" type="text" format="txt" multiple="false" label="Phenotype ID (e.g. MP:0001569)" /> | |
11 <param name="taxid" type="text" format="txt" multiple="false" label="Taxon ID (e.g. NCBITaxon:10090)" /> | |
12 <param name="rows" type="text" format="txt" multiple="false" value="1000" label="Num Rows"/> | |
13 </inputs> | |
14 <outputs> | |
15 <data name="output" format="json" /> | |
16 </outputs> | |
17 <tests> | |
18 <test> | |
19 <param name="input" value="MP:0001569"/> | |
20 <param name="taxid" value="NCBITaxon:10090"/> | |
21 <output name="output" file="phenotype-for-phenotype-and-taxon.json"/> | |
22 </test> | |
23 </tests> | |
24 <help><![CDATA[ | |
25 Pulls data from Monarch Initiative BioLink API web services as JSON. | |
26 https://api.monarchinitiative.org/api/ | |
27 ]]></help> | |
28 <citations> | |
29 <citation type="doi">doi:10.5281/zenodo.56412</citation> | |
30 </citations> | |
31 </tool> | |
32 |