{"id":18246258,"url":"https://github.com/mfcovington/django-compatible-index-calculator","last_synced_at":"2025-08-01T11:08:47.250Z","repository":{"id":146346909,"uuid":"71211085","full_name":"mfcovington/django-compatible-index-calculator","owner":"mfcovington","description":"A Django app for identifying compatible index sequences for high-throughput sequencing experiments","archived":false,"fork":false,"pushed_at":"2019-05-23T21:34:24.000Z","size":156,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-04-08T19:26:41.042Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://mfcovington.pythonanywhere.com/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mfcovington.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-10-18T05:09:10.000Z","updated_at":"2021-11-12T23:42:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"1ea63014-9842-4ec8-a682-580443247c08","html_url":"https://github.com/mfcovington/django-compatible-index-calculator","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mfcovington/django-compatible-index-calculator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mfcovington%2Fdjango-compatible-index-calculator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mfcovington%2Fdjango-compatible-index-calculator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mfcovington%2Fdjango-compatible-index-calculator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mfcovington%2Fdjango-compatible-index-calculator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mfcovington","download_url":"https://codeload.github.com/mfcovington/django-compatible-index-calculator/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mfcovington%2Fdjango-compatible-index-calculator/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268214222,"owners_count":24214352,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-05T09:25:10.187Z","updated_at":"2025-08-01T11:08:47.209Z","avatar_url":"https://github.com/mfcovington.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"**********\ndjango-compatible-index-sequences\n**********\n\n``django-compatible-index-sequences`` is a Django app for identifying compatible index sequences for high-throughput sequencing experiments.\n\nSource code is available on GitHub at `mfcovington/django-compatible-index-sequences \u003chttps://github.com/mfcovington/django-compatible-index-sequences\u003e`_.\n\n\n.. contents:: :local:\n\n\nInstallation\n============\n\n.. **PyPI**\n\n.. .. code-block:: sh\n\n..     pip install django-compatible-index-sequences\n\n\n**GitHub (development branch)**\n\n.. code-block:: sh\n\n    pip install git+http://github.com/mfcovington/django-compatible-index-sequences.git@develop\n\n\nConfiguration\n=============\n\nAdd ``compatible_index_sequences`` and its dependencies to ``INSTALLED_APPS`` in ``settings.py``:\n\n.. code-block:: python\n\n    INSTALLED_APPS = (\n        ...\n        'compatible_index_sequences.apps.CompatibleIndexSequencesConfig',\n        'bootstrap3',\n        'sekizai',\n    )\n\n\nAdd the ``compatible_index_sequences`` URLs to the site's ``urls.py``:\n\n.. code-block:: python\n\n    from django.conf.urls import url, include\n\n    urlpatterns = [\n        ...\n        url(r'^compatible_index_sequences/', include('compatible_index_sequences.urls', namespace='compatible_index_sequences')),\n    ]\n\n\nAdd ``sekizai`` settings:\n\n- For **Django versions before 1.10**, add ``sekizai.context_processors.sekizai`` to ``TEMPLATE_CONTEXT_PROCESSORS``:\n\n  .. code-block:: python\n\n      from django.conf.global_settings import TEMPLATE_CONTEXT_PROCESSORS\n      TEMPLATE_CONTEXT_PROCESSORS += ('sekizai.context_processors.sekizai',)\n\n\n- For **Django versions 1.10 and later**, add ``sekizai.context_processors.sekizai`` to ``TEMPLATES``:\n\n  .. code-block:: python\n\n      TEMPLATES = [\n          {\n              # ...\n              'OPTIONS': {\n                  'context_processors': [\n                      # ...\n                      'sekizai.context_processors.sekizai',\n                  ],\n              },\n          },\n      ]\n\n\nMigrations\n==========\n\nCreate and perform ``compatible_index_sequences`` migrations:\n\n.. code-block:: sh\n\n    python manage.py makemigrations compatible_index_sequences\n    python manage.py migrate\n\n\nPre-Populate Database\n=====================\n\nAdd commercial index sets to the database:\n\n.. code-block:: sh\n\n    python manage.py loaddata compatible_index_sequences/fixtures/*.json\n\n\nUsage\n=====\n\n- Start the development server:\n\n.. code-block:: sh\n\n    python manage.py runserver\n\n\n- Visit: ``http://127.0.0.1:8000/compatible_index_sequences/``\n\n\n*Version 0.0.0*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmfcovington%2Fdjango-compatible-index-calculator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmfcovington%2Fdjango-compatible-index-calculator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmfcovington%2Fdjango-compatible-index-calculator/lists"}