{% extends "base.html" %} {% set active_page = "about" %} {% set page_title = "About Mutalyzer" %} {% block content %}

Mutalyzer {{ mutalyzer_version }} is designed and developed by Jeroen F.J. Laros, with the following exceptions:

Furthermore we would like to thank the following people for their valuable work on previous versions that acted as a guideline for the development of the current version:

Specifications are given by Peter E.M. Taschner and Johan T. den Dunnen.

Since references to WWW-sites are not yet acknowledged as citations, please mention "Wildeman M et al. (2008). Improving sequence variant descriptions in mutation databases and literature using the Mutalyzer sequence variation nomenclature checker. Hum Mutat 29, 6-13" (direct link) when referring to these pages.

Open Source

Mutalyzer is Open Source and available under the GNU Affero General Public License. Please contact the authors if you want to discuss custom licensing.

Contributions to Mutalyzer are very welcome! They can be feature requests, bug reports, bug fixes, unit tests, documentation updates, or anything els you may come up with.

Development of Mutalyzer happens on GitHub: github.com/mutalyzer/mutalyzer

If you're interested in running your own Mutalyzer installation, please have a look at our Mutalyzer Ansible role for a completely automated deployment.

Sponsors

We would like to thank the following organisations for their contribution to the development of Mutalyzer.

Gen2Phen Gen2Phen project
NBIC Netherlands Bioinformatics Centre
Eurogentest EuroGentest
Dutch national program COMMIT Dutch national program COMMIT
Landscape - Increasing Data Impact Landscape - Increasing Data Impact

Counters

We keep simple counters for the use of the various Mutalyzer services, broken down by interface.

Note that not all counters were started at the same time, so numbers can not always be compared directly.

Service Interface Total (all interfaces)
Website Webservice Batch job
Syntax checker {{ '{0:,}'.format(counter_totals['syntax-checker/website']|d(0)) }} {{ '{0:,}'.format(counter_totals['syntax-checker/webservice']|d(0)) }} {{ '{0:,}'.format(counter_totals['syntax-checker/batch']|d(0)) }} {{ '{0:,}'.format(counter_totals['syntax-checker/website']|d(0) + counter_totals['syntax-checker/webservice']|d(0) + counter_totals['syntax-checker/batch']|d(0)) }}
Name checker {{ '{0:,}'.format(counter_totals['name-checker/website']|d(0)) }} {{ '{0:,}'.format(counter_totals['name-checker/webservice']|d(0)) }} {{ '{0:,}'.format(counter_totals['name-checker/batch']|d(0)) }} {{ '{0:,}'.format(counter_totals['name-checker/website']|d(0) + counter_totals['name-checker/webservice']|d(0) + counter_totals['name-checker/batch']|d(0)) }}
Description extractor {{ '{0:,}'.format(counter_totals['description-extractor/website']|d(0)) }} {{ '{0:,}'.format(counter_totals['description-extractor/webservice']|d(0)) }} N/A {{ '{0:,}'.format(counter_totals['description-extractor/website']|d(0) + counter_totals['description-extractor/webservice']|d(0)) }}
Position converter {{ '{0:,}'.format(counter_totals['position-converter/website']|d(0)) }} {{ '{0:,}'.format(counter_totals['position-converter/webservice']|d(0)) }} {{ '{0:,}'.format(counter_totals['position-converter/batch']|d(0)) }} {{ '{0:,}'.format(counter_totals['position-converter/website']|d(0) + counter_totals['position-converter/webservice']|d(0) + counter_totals['position-converter/batch']|d(0)) }}
SNP converter {{ '{0:,}'.format(counter_totals['snp-converter/website']|d(0)) }} {{ '{0:,}'.format(counter_totals['snp-converter/webservice']|d(0)) }} {{ '{0:,}'.format(counter_totals['snp-converter/batch']|d(0)) }} {{ '{0:,}'.format(counter_totals['snp-converter/website']|d(0) + counter_totals['snp-converter/webservice']|d(0) + counter_totals['snp-converter/batch']|d(0)) }}
Batch jobs {{ '{0:,}'.format(counter_totals['batch-job/website']|d(0)) }} {{ '{0:,}'.format(counter_totals['batch-job/webservice']|d(0)) }} N/A {{ '{0:,}'.format(counter_totals['batch-job/website']|d(0) + counter_totals['batch-job/webservice']|d(0)) }}
Total (all services) {{ '{0:,}'.format(counter_totals['syntax-checker/website']|d(0) + counter_totals['name-checker/website']|d(0) + counter_totals['description-extractor/website']|d(0) + counter_totals['position-converter/website']|d(0) + counter_totals['snp-converter/website']|d(0) + counter_totals['batch-job/website']|d(0)) }} {{ '{0:,}'.format(counter_totals['syntax-checker/webservice']|d(0) + counter_totals['name-checker/webservice']|d(0) + counter_totals['description-extractor/webservice']|d(0) + counter_totals['position-converter/webservice']|d(0) + counter_totals['snp-converter/webservice']|d(0) + counter_totals['batch-job/webservice']|d(0)) }} {{ '{0:,}'.format(counter_totals['syntax-checker/batch']|d(0) + counter_totals['name-checker/batch']|d(0) + counter_totals['position-converter/batch']|d(0) + counter_totals['snp-converter/batch']|d(0)) }} {{ '{0:,}'.format(counter_totals['syntax-checker/website']|d(0) + counter_totals['syntax-checker/webservice']|d(0) + counter_totals['syntax-checker/batch']|d(0) + counter_totals['name-checker/website']|d(0) + counter_totals['name-checker/webservice']|d(0) + counter_totals['name-checker/batch']|d(0) + counter_totals['description-extractor/website']|d(0) + counter_totals['description-extractor/webservice']|d(0) + counter_totals['position-converter/website']|d(0) + counter_totals['position-converter/webservice']|d(0) + counter_totals['position-converter/batch']|d(0) + counter_totals['snp-converter/website']|d(0) + counter_totals['snp-converter/webservice']|d(0) + counter_totals['snp-converter/batch']|d(0) + counter_totals['batch-job/website']|d(0) + counter_totals['batch-job/webservice']|d(0)) }}
{% endblock content %}