Skip to content
This repository has been archived by the owner on Jan 20, 2020. It is now read-only.

Latest commit

 

History

History
42 lines (29 loc) · 1.12 KB

README.rst

File metadata and controls

42 lines (29 loc) · 1.12 KB

Bioconvert API

https://secure.travis-ci.org/biokit/bioconvert-django-api.png

A Django app using django-rest-framwork to propose bioconvert convertion through a REST API

Quick start

1. Add "rest_framework" and then the "bioconvertapi" to your INSTALLED_APPS setting like this:

INSTALLED_APPS = [
    ...
    'rest_framework',
    'bioconvertapi',
]

2. Include the bioconvertapi URLconf in your project urls.py and serve the media directory like this:

urlpatterns = [
    ...
    url(r'^bioconvert-api/', include('bioconvertapi.urls')),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)

3. Visit http://127.0.0.1:8000/bioconvert-api/fastq/fasta/ to convert from fastq to fasta