├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── jekyll-gh-pages.yml │ └── test-build.yml ├── .gitignore ├── .readthedocs.yaml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.IN ├── README.md ├── _config.yml ├── docs ├── api.md ├── cli.md ├── index.md └── installation.md ├── labrat ├── __init__.py ├── cli.py ├── filemanager │ ├── __init__.py │ ├── archive.py │ └── organize.py ├── genetics │ ├── __init__.py │ ├── codons.json │ ├── dna_analysis.py │ └── protein_analysis.py ├── graphpad │ ├── __init__.py │ └── scripts.py ├── guis │ └── __init__.py ├── inventory │ └── lab_inventory_examples.xlsx ├── math │ ├── README.md │ ├── __init__.py │ └── functions.py ├── notebook │ └── __init__.py ├── project │ ├── __init__.py │ └── projectmanager.py └── utils.py ├── mkdocs.yml ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── test_archiver.py ├── test_cli.py ├── test_file_organizer.py ├── test_math_functions.py ├── test_project_manager.py └── test_protein_analysis.py /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/test-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/.github/workflows/test-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/MANIFEST.IN -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/_config.yml -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/docs/cli.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/docs/installation.md -------------------------------------------------------------------------------- /labrat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/labrat/__init__.py -------------------------------------------------------------------------------- /labrat/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/labrat/cli.py -------------------------------------------------------------------------------- /labrat/filemanager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/labrat/filemanager/__init__.py -------------------------------------------------------------------------------- /labrat/filemanager/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/labrat/filemanager/archive.py -------------------------------------------------------------------------------- /labrat/filemanager/organize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/labrat/filemanager/organize.py -------------------------------------------------------------------------------- /labrat/genetics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labrat/genetics/codons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/labrat/genetics/codons.json -------------------------------------------------------------------------------- /labrat/genetics/dna_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/labrat/genetics/dna_analysis.py -------------------------------------------------------------------------------- /labrat/genetics/protein_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/labrat/genetics/protein_analysis.py -------------------------------------------------------------------------------- /labrat/graphpad/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labrat/graphpad/scripts.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labrat/guis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labrat/inventory/lab_inventory_examples.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/labrat/inventory/lab_inventory_examples.xlsx -------------------------------------------------------------------------------- /labrat/math/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/labrat/math/README.md -------------------------------------------------------------------------------- /labrat/math/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/labrat/math/__init__.py -------------------------------------------------------------------------------- /labrat/math/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/labrat/math/functions.py -------------------------------------------------------------------------------- /labrat/notebook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labrat/project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/labrat/project/__init__.py -------------------------------------------------------------------------------- /labrat/project/projectmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/labrat/project/projectmanager.py -------------------------------------------------------------------------------- /labrat/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/labrat/utils.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_archiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/tests/test_archiver.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_file_organizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/tests/test_file_organizer.py -------------------------------------------------------------------------------- /tests/test_math_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/tests/test_math_functions.py -------------------------------------------------------------------------------- /tests/test_project_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/tests/test_project_manager.py -------------------------------------------------------------------------------- /tests/test_protein_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdhutchins/labrat/HEAD/tests/test_protein_analysis.py --------------------------------------------------------------------------------