-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor bug fixes and code improvements
- Loading branch information
Showing
7 changed files
with
43 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,3 +29,4 @@ dependencies: | |
- simple_colors | ||
- adjustText | ||
- watermark | ||
- pytest |
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,30 @@ | ||
[tool.poetry] | ||
name = "ScreenPro2" | ||
version = "0.5.0" | ||
description = "Flexible analysis of high-content CRISPR screening" | ||
authors = [ | ||
"Abe Arab <[email protected]>" | ||
] | ||
license = "MIT" | ||
readme = "README.md" | ||
homepage = "https://github.com/ArcInstitute/ScreenPro2" | ||
repository = "https://github.com/ArcInstitute/ScreenPro2" | ||
keywords = ["CRISPR", "screening", "bioinformatics"] | ||
packages = [ | ||
{ include = "screenpro" }, | ||
{ include = "pyproject.toml" }, | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.9" | ||
|
||
[tool.poetry.scripts] | ||
screenpro = "screenpro.main:main" | ||
|
||
[tool.poetry.group.test.dependencies] | ||
pytest = "*" | ||
tomli = "*" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"] | ||
build-backend = "poetry_dynamic_versioning.backend" |
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 |
---|---|---|
|
@@ -29,8 +29,3 @@ | |
from .ngs import GuideCounter | ||
from .assays import PooledScreens, GImaps | ||
from .dashboard import DrugScreenDashboard | ||
|
||
|
||
__version__ = "0.4.18" | ||
__author__ = "Abe Arab" | ||
__email__ = '[email protected]' # "[email protected]" |
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