-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #81 from FrancisCrickInstitute/staging
Staging
- Loading branch information
Showing
15 changed files
with
83 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,5 @@ | ||
from plaque_assay import main | ||
from plaque_assay import ingest | ||
from plaque_assay import stats | ||
from plaque_assay import utils | ||
from plaque_assay import experiment | ||
from plaque_assay import plate | ||
from plaque_assay import failure | ||
from plaque_assay import sample | ||
from plaque_assay import consts | ||
from plaque_assay import qc_criteria | ||
from plaque_assay import db_models | ||
from plaque_assay import errors | ||
from plaque_assay import titration | ||
from plaque_assay import titration_dilution | ||
from plaque_assay import titration_ingest | ||
from plaque_assay import titration_db_uploader | ||
from plaque_assay import titration_main | ||
from plaque_assay import titration_utils | ||
from plaque_assay import (consts, db_models, errors, experiment, failure, | ||
ingest, main, plate, qc_criteria, sample, stats, | ||
titration, utils) | ||
|
||
|
||
__all__ = [ | ||
"main", | ||
"ingest", | ||
"stats", | ||
"utils", | ||
"experiment", | ||
"plate", | ||
"failure", | ||
"sample", | ||
"consts", | ||
"qc_criteria", | ||
"db_models", | ||
"errors", | ||
"titration", | ||
"titration_dilution", | ||
"titration_ingest", | ||
"titration_db_uploader", | ||
"titration_main", | ||
"titration_utils", | ||
] | ||
from .main import run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from . import consts, ingest, utils | ||
from .db_uploader import TitrationDatabaseUploader | ||
from .dilution import TitrationDilution | ||
from .main import run | ||
from .titration_class import Titration | ||
|
||
__all__ = [ | ||
"consts", | ||
"utils", | ||
"ingest", | ||
"run", | ||
"TitrationDatabaseUploader", | ||
"TitrationDilution", | ||
"Titration", | ||
] |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 5 additions & 6 deletions
11
plaque_assay/titration_ingest.py → plaque_assay/titration/ingest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ def read_requirements(): | |
author="Scott Warchal", | ||
author_email="[email protected]", | ||
license="MIT", | ||
packages=["plaque_assay"], | ||
packages=["plaque_assay", "plaque_assay.titration"], | ||
python_requires=">=3.6", | ||
install_requires=read_requirements(), | ||
tests_require="pytest", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters