Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improvements in phenotype calculation #84

Merged
merged 23 commits into from
Jul 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/source/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ History
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* add command line interface, i.e. ``screenpro --help``
* rename ``Counter`` class to ``GuideCounter`` for code clarity
* key bug fixes and improvements in phenotype calculation, normalization, and statistics
* major bug fixes and improvements in code formatting

0.2.11 - 0.3.5 (Apr 2024 - June 2024)
Expand Down
4 changes: 2 additions & 2 deletions docs/source/ngs.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ used for the screen, the functions are divided into two classes:

### Cas9 CRISPR-Cas system (single or dual sgRNA libraries)
```{eval-rst}
.. automodule:: screenpro.cas9
.. automodule:: screenpro.ngs.cas9
:members:
:show-inheritance:
```

### Cas12 CRISPR-Cas system (multiplexed crRNA libraries)
```{eval-rst}
.. automodule:: screenpro.cas12
.. automodule:: screenpro.ngs.cas12
:members:
:show-inheritance:
```
16 changes: 13 additions & 3 deletions docs/source/visualize.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
# Visualize module
# Visualization modules

Set of python classes and functions to enable visualizing CRISPR screening datasets.

___

```{eval-rst}
.. automodule:: screenpro.visualize
.. automodule:: screenpro.plotting.qc_plots
:members:
:undoc-members:
:show-inheritance:
```

.. automodule:: screenpro.plotting.pheno_plots
:members:
:undoc-members:
:show-inheritance:

.. automodule:: screenpro.dashboard
:members:
:undoc-members:
:show-inheritance:
```
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ dependencies:
- pip
- pip:
- polars
- pyarrow<17.0
- biobear>=0.20.3,<0.21
- pyarrow
- biobear
- numba
- pydeseq2
- simple_colors
Expand Down
2 changes: 1 addition & 1 deletion screenpro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
from .dashboard import DrugScreenDashboard


__version__ = "0.4.6"
__version__ = "0.4.7"
__author__ = "Abe Arab"
__email__ = 'abea@arcinstitute.org' # "abarbiology@gmail.com"
Loading
Loading