Mercurial > repos > nathandunn > biolinkmonarchinitiative
view phenotype-gene-associations.xml @ 1:8fdad43e4250 draft
planemo upload commit 2e06360e9b6f5ca9e6d254430878008fa6a57a03
author | nathandunn |
---|---|
date | Wed, 21 Jun 2017 19:00:33 -0400 |
parents | 4f6fba8332ec |
children | 88e1bd76b069 |
line wrap: on
line source
<tool id="monarch-phenotype-gene-associations" name="Phenotype Gene Associations" version="0.1.0"> <requirements/> <stdio> <exit_code range="1:" /> </stdio> <command><![CDATA[ curl -X GET --header 'Accept: application/json' 'https://api.monarchinitiative.org/api/bioentity/phenotype/$input/gene/$taxid/ids?rows=$rows&fetch_objects=true' > $output ]]></command> <inputs> <param name="input" type="text" format="txt" multiple="false" label="Phenotype ID (e.g. MP:0001569)" /> <param name="taxid" type="text" format="txt" multiple="false" label="Taxon ID (e.g. NCBITaxon:10090)" /> <param name="rows" type="text" format="txt" multiple="false" value="1000" label="Num Rows"/> </inputs> <outputs> <data name="output" format="json" /> </outputs> <tests> <test> <param name="input" value="MP:0001569"/> <param name="taxid" value="NCBITaxon:10090"/> <output name="output" file="phenotype-for-phenotype-and-taxon.json"/> </test> </tests> <help><![CDATA[ Pulls data from Monarch Initiative BioLink API web services as JSON. https://api.monarchinitiative.org/api/ ]]></help> <citations> <citation type="doi">doi:10.5281/zenodo.56412</citation> </citations> </tool>