├── .editorconfig ├── .git-blame-ignore-revs ├── .github ├── pr_labels.yml └── workflows │ ├── lint-code.yml │ └── test-code.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst └── scripts.rst ├── examples ├── attach_delivery_report.py ├── epp_script.py ├── get_application.py ├── get_artifacts.py ├── get_containers.py ├── get_labs.py ├── get_processes.py ├── get_projects.py ├── get_samples.py ├── get_samples2.py ├── set_project_queued.py └── set_sample_name.py ├── genologics ├── __init__.py ├── config.py ├── constants.py ├── descriptors.py ├── entities.py ├── epp.py ├── internal_classes.py ├── lims.py ├── lims_utils.py ├── test_utils.py └── version.py ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── test_descriptors.py ├── test_entities.py ├── test_example.py ├── test_lims.py └── to_rewrite_test_logging.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/pr_labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/.github/pr_labels.yml -------------------------------------------------------------------------------- /.github/workflows/lint-code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/.github/workflows/lint-code.yml -------------------------------------------------------------------------------- /.github/workflows/test-code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/.github/workflows/test-code.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/scripts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/docs/scripts.rst -------------------------------------------------------------------------------- /examples/attach_delivery_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/examples/attach_delivery_report.py -------------------------------------------------------------------------------- /examples/epp_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/examples/epp_script.py -------------------------------------------------------------------------------- /examples/get_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/examples/get_application.py -------------------------------------------------------------------------------- /examples/get_artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/examples/get_artifacts.py -------------------------------------------------------------------------------- /examples/get_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/examples/get_containers.py -------------------------------------------------------------------------------- /examples/get_labs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/examples/get_labs.py -------------------------------------------------------------------------------- /examples/get_processes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/examples/get_processes.py -------------------------------------------------------------------------------- /examples/get_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/examples/get_projects.py -------------------------------------------------------------------------------- /examples/get_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/examples/get_samples.py -------------------------------------------------------------------------------- /examples/get_samples2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/examples/get_samples2.py -------------------------------------------------------------------------------- /examples/set_project_queued.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/examples/set_project_queued.py -------------------------------------------------------------------------------- /examples/set_sample_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/examples/set_sample_name.py -------------------------------------------------------------------------------- /genologics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/genologics/__init__.py -------------------------------------------------------------------------------- /genologics/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/genologics/config.py -------------------------------------------------------------------------------- /genologics/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/genologics/constants.py -------------------------------------------------------------------------------- /genologics/descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/genologics/descriptors.py -------------------------------------------------------------------------------- /genologics/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/genologics/entities.py -------------------------------------------------------------------------------- /genologics/epp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/genologics/epp.py -------------------------------------------------------------------------------- /genologics/internal_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/genologics/internal_classes.py -------------------------------------------------------------------------------- /genologics/lims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/genologics/lims.py -------------------------------------------------------------------------------- /genologics/lims_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/genologics/lims_utils.py -------------------------------------------------------------------------------- /genologics/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/genologics/test_utils.py -------------------------------------------------------------------------------- /genologics/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "2.0.1" 2 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | setuptools 3 | six 4 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [egg_info] 2 | tag_svn_revision = true 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/tests/test_descriptors.py -------------------------------------------------------------------------------- /tests/test_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/tests/test_entities.py -------------------------------------------------------------------------------- /tests/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/tests/test_example.py -------------------------------------------------------------------------------- /tests/test_lims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/tests/test_lims.py -------------------------------------------------------------------------------- /tests/to_rewrite_test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciLifeLab/genologics/HEAD/tests/to_rewrite_test_logging.py --------------------------------------------------------------------------------