-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implementing Base Count Coverage Depth
Overriding Branch Protection: Reviewers are absent, and this PR includes the initial project setup and is not an official repo.
- Loading branch information
Showing
24 changed files
with
795 additions
and
423 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
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 |
---|---|---|
@@ -1,2 +1,5 @@ | ||
.DS_Store | ||
poetry.lock | ||
.vscode/ | ||
__pycache__/ | ||
*.pyc |
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,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 |
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 |
---|---|---|
|
@@ -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" | ||
|
@@ -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 | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.