Skip to content

Commit

Permalink
chipexo sig task test passing
Browse files Browse the repository at this point in the history
  • Loading branch information
cmatKhan committed Dec 16, 2023
1 parent b1e25fe commit 26e82a7
Show file tree
Hide file tree
Showing 81 changed files with 1,674 additions and 842 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ To run the tests, check your test coverage, and generate an HTML coverage report
pytest
```

**NOTE**: if major changes are made to the database, it may be necesary to
remove `--reuse-db` from the `addopts` key of the pytest section of
`pyproject.toml`. It can be added back after a run without it.

### Live reloading and Sass CSS compilation

Moved to [Live reloading and SASS compilation](https://cookiecutter-django.readthedocs.io/en/latest/developing-locally.html#sass-compilation-live-reloading).
Expand Down
6 changes: 2 additions & 4 deletions config/api_router.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@

from yeastregulatorydb.regulatory_data.api.views import (
BindingManualQCViewSet,
BindingSourceViewSet,
BindingViewSet,
CallingCardsBackgroundViewSet,
ChrMapViewSet,
DataSourceViewSet,
ExpressionManualQCViewSet,
ExpressionSourceViewSet,
ExpressionViewSet,
FileFormatViewSet,
GenomicFeatureViewSet,
Expand All @@ -25,12 +24,11 @@

router.register("users", UserViewSet)
router.register("bindingmanualqc", BindingManualQCViewSet)
router.register("bindingsource", BindingSourceViewSet)
router.register("datasource", DataSourceViewSet)
router.register("binding", BindingViewSet)
router.register("callingcardsbackground", CallingCardsBackgroundViewSet)
router.register("chrmap", ChrMapViewSet)
router.register("expressionmanualqc", ExpressionManualQCViewSet)
router.register("expressionsource", ExpressionSourceViewSet)
router.register("expression", ExpressionViewSet)
router.register("fileformat", FileFormatViewSet)
router.register("genomicfeature", GenomicFeatureViewSet)
Expand Down
12 changes: 2 additions & 10 deletions docs/api/yeastregulatorydb.regulatory_data.api.serializers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,6 @@ yeastregulatorydb.regulatory\_data.api.serializers.BindingSerializer module
:undoc-members:
:show-inheritance:

yeastregulatorydb.regulatory\_data.api.serializers.BindingSourceSerializer module
---------------------------------------------------------------------------------

.. automodule:: yeastregulatorydb.regulatory_data.api.serializers.BindingSourceSerializer
:members:
:undoc-members:
:show-inheritance:

yeastregulatorydb.regulatory\_data.api.serializers.CallingCardsBackgroundSerializer module
------------------------------------------------------------------------------------------

Expand Down Expand Up @@ -60,10 +52,10 @@ yeastregulatorydb.regulatory\_data.api.serializers.ExpressionSerializer module
:undoc-members:
:show-inheritance:

yeastregulatorydb.regulatory\_data.api.serializers.ExpressionSourceSerializer module
yeastregulatorydb.regulatory\_data.api.serializers.DataSourceSerializer module
------------------------------------------------------------------------------------

.. automodule:: yeastregulatorydb.regulatory_data.api.serializers.ExpressionSourceSerializer
.. automodule:: yeastregulatorydb.regulatory_data.api.serializers.DataSourceSerializer
:members:
:undoc-members:
:show-inheritance:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Submodules
yeastregulatorydb.regulatory\_data.models.mixins.FileUploadWithIdMixin module
-----------------------------------------------------------------------------

.. automodule:: yeastregulatorydb.regulatory_data.models.mixins.FileUploadWithIdMixin
.. automodule:: yeastregulatorydb.regulatory_data.models.mixins.GzipFileUploadWithIdMixin
:members:
:undoc-members:
:show-inheritance:
Expand Down
12 changes: 2 additions & 10 deletions docs/api/yeastregulatorydb.regulatory_data.models.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ yeastregulatorydb.regulatory\_data.models.BindingManualQC module
:undoc-members:
:show-inheritance:

yeastregulatorydb.regulatory\_data.models.BindingSource module
yeastregulatorydb.regulatory\_data.models.DataSource module
--------------------------------------------------------------

.. automodule:: yeastregulatorydb.regulatory_data.models.BindingSource
.. automodule:: yeastregulatorydb.regulatory_data.models.DataSource
:members:
:undoc-members:
:show-inheritance:
Expand Down Expand Up @@ -76,14 +76,6 @@ yeastregulatorydb.regulatory\_data.models.ExpressionManualQC module
:undoc-members:
:show-inheritance:

yeastregulatorydb.regulatory\_data.models.ExpressionSource module
-----------------------------------------------------------------

.. automodule:: yeastregulatorydb.regulatory_data.models.ExpressionSource
:members:
:undoc-members:
:show-inheritance:

yeastregulatorydb.regulatory\_data.models.FileFormat module
-----------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ django-filter==23.5 # https://github.com/carltongibson/django-filter

# Third Party Software
# ------------------------------------------------------------------------------
callingcardstools==1.3.0 # https://github.com/cmatkhan/callingcardstools
callingcardstools==1.4.1 # https://github.com/cmatkhan/callingcardstools
Loading

0 comments on commit 26e82a7

Please sign in to comment.