Skip to content

Commit

Permalink
Fix docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasMahieu committed Jun 15, 2024
1 parent cfb95c2 commit 91b02a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions docs/api/io.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Input/Output

Importing of topics bed files (outputs from [pycistopic](https://pycistopic.readthedocs.io/en/latest/)) and consensus regions bed file into Anndata format for topic regression or classification.
Importing of topics bed files (outputs from [pycistopic](https://pycistopic.readthedocs.io/en/latest/)) and consensus regions bed file into Anndata format for topic regression or classification.
Importing of bigwigs files and consensus region bed files into Anndata format for peak regression or classification.

```{eval-rst}
Expand All @@ -13,7 +13,6 @@ Importing of bigwigs files and consensus region bed files into Anndata format fo
.. autosummary::
:toctree: _autosummary
import_topics
import_bigwigs
import_peaks
```

2 changes: 1 addition & 1 deletion src/crested/pp/_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def filter_regions_on_specificity(
Example
-------
>>> filtered_adata = filter_regions_on_specificity(
>>> filtered_adata = crested.pp.filter_regions_on_specificity(
... adata,
... gini_std_threshold=1.0,
... )
Expand Down
2 changes: 1 addition & 1 deletion src/crested/pp/_normalization.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def normalize_peaks(
Example
-------
>>> normalized_adata = normalize_peaks(
>>> crested.pp.normalize_peaks(
... adata,
... peak_threshold=0,
... gini_std_threshold=2.0,
Expand Down

0 comments on commit 91b02a2

Please sign in to comment.