Skip to content

Commit

Permalink
Implementing Base Count Coverage Depth
Browse files Browse the repository at this point in the history
Overriding Branch Protection: Reviewers are absent, and this PR includes the initial project setup and is not an official repo.
  • Loading branch information
gordonkoehn authored Sep 12, 2024
2 parents 4d0fdb5 + acf98e5 commit a4a2a7b
Show file tree
Hide file tree
Showing 24 changed files with 795 additions and 423 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.11.2"
cache: "pip"
- name: Install Poetry
uses: snok/install-poetry@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.12"]
python-version: ["3.11.2"]
poetry-version: ["1.8.3"]

steps:
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
.DS_Store
poetry.lock
.vscode/
__pycache__/
*.pyc
12 changes: 12 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: usefulgnom
# Conda/Mamba environment file,
# to be used when running the snakemake pipeline,
# see workflow/README.md
channels:
- bioconda
- conda-forge
- defaults
dependencies:
- python=3.11.2
- snakemake=8.18.2
- poetry=1.8.3
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ version = "0.1.0"
description = "Viral Genomic Utilities"
authors = ["Gordon Julian Koehn <[email protected]>"]
readme = "README.md"
packages = [{include = "usefulgnom", from = "src"}]

[tool.poetry.dependencies]
python = "^3.12"
python = "^3.11.2"
pandas = "^2.2.2"
matplotlib = "^3.9.2"
seaborn = "^0.13.2"

pandas-stubs = "^2.2.2.240807"

[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
Expand All @@ -25,6 +26,7 @@ mkdocs-material = "^9.1.6"
mkdocstrings = {extras = ["python"], version = "^0.21.2"}
mkdocs-gen-files = "^0.4.0"
mkdocs-literate-nav = "^0.6.0"
setuptools = "^74.1.2"

[tool.coverage.report]
fail_under = 85.0
Expand Down
128 changes: 0 additions & 128 deletions scripts/basecnt_cov_dep.py

This file was deleted.

165 changes: 0 additions & 165 deletions scripts/freq_mat_mut_stats.py

This file was deleted.

Loading

0 comments on commit a4a2a7b

Please sign in to comment.