{% extends "base.html" %} {% set active_page = "webservices" %} {% set page_title = "Web Services" %} {% block content %}
Most Mutalyzer functionality is programmatically available through two interfaces: a SOAP web service and a HTTP/RPC+JSON web service.
Consider subscribing to our low-traffic mutalyzer-announce mailing list if you're using our webservices. Whenever there are important changes to the webservices upcoming, we will announce them there.
A WSDL description is available for easy generation of client programs in many languages. See the annotated API for detailed documentation.
The following are some example client programs for SOAP web service. They use the checkSyntax method to determine if a variant description adheres to the HGVS format.
Here is an example that could be used for text mining on a sample input file.
The HTTP/RPC+JSON web service is experimental and currently undocumented. It can be called using HTTP GET requests on {{ json_root_url }}/method?param=value
where method
is the name of the method to be called and method parameters are expected as param=value
query string parameters. Responses are JSON-encoded.
Example:
checkSyntax?variant=AB026906.1:c.274del
For now, you can work from this example using the above mentioned annotated SOAP API, since the HTTP/RPC+JSON web service mirrors the functionality of the SOAP web service.
{% endblock content %}