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

A REST API of bioconvert using Django REST framework

License

Notifications You must be signed in to change notification settings

biokit/bioconvert-django-api

Repository files navigation

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

About

A REST API of bioconvert using Django REST framework

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages