├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── publish.yml │ └── ruff.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── env_osx64.yml ├── environment.yml ├── pyproject.toml ├── src └── blastbesties │ ├── __init__.py │ ├── app.py │ ├── blastops.py │ ├── logs.py │ └── utils.py └── tests └── test_blastops.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamtaranto/blast-besties/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamtaranto/blast-besties/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamtaranto/blast-besties/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/ruff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamtaranto/blast-besties/HEAD/.github/workflows/ruff.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamtaranto/blast-besties/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamtaranto/blast-besties/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamtaranto/blast-besties/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamtaranto/blast-besties/HEAD/README.md -------------------------------------------------------------------------------- /env_osx64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamtaranto/blast-besties/HEAD/env_osx64.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamtaranto/blast-besties/HEAD/environment.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamtaranto/blast-besties/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/blastbesties/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/blastbesties/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamtaranto/blast-besties/HEAD/src/blastbesties/app.py -------------------------------------------------------------------------------- /src/blastbesties/blastops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamtaranto/blast-besties/HEAD/src/blastbesties/blastops.py -------------------------------------------------------------------------------- /src/blastbesties/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamtaranto/blast-besties/HEAD/src/blastbesties/logs.py -------------------------------------------------------------------------------- /src/blastbesties/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamtaranto/blast-besties/HEAD/src/blastbesties/utils.py -------------------------------------------------------------------------------- /tests/test_blastops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamtaranto/blast-besties/HEAD/tests/test_blastops.py --------------------------------------------------------------------------------