Skip to content
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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# PyDESeq2
<img src="docs/source/_static/pydeseq2_logo_green.png" width="600">


## Table of Contents
- [PyDESeq2](#pydeseq2)
Expand Down
Binary file added docs/source/_static/pydeseq2_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
57 changes: 57 additions & 0 deletions docs/source/_static/pydeseq2_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/source/_static/pydeseq2_logo_green.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 6 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,11 @@
# further. For a list of options available for each theme, see the
# documentation.
#
html_theme_options = {"analytics_id": "UA-83738774-2"}
html_theme_options = {
"analytics_id": "UA-83738774-2",
"logo_only": True,
"display_version": True,
}

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
Expand Down Expand Up @@ -246,7 +250,7 @@
"sidebar.css",
]

# html_logo = "static/logo.svg"
html_logo = "_static/pydeseq2_logo.svg"
html_show_sourcelink = False
html_show_sphinx = True

Expand Down
4 changes: 2 additions & 2 deletions pydeseq2/dds.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ class DeseqDataSet(ad.AnnData):
----------
adata : anndata.AnnData
AnnData from which to initialize the DeseqDataSet. Must have counts ('X') and
clinical metadata ('obs') fields. If ``None``, both ``counts`` and ``clinical``
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

for next time keep things unrelated to the PR for a separate PR

arguments must be provided.
clinical metadata ('obs') fields. If ``None``, both ``counts`` and ``clinical``
arguments must be provided.

counts : pandas.DataFrame
Raw counts. One column per gene, rows are indexed by sample barcodes.
Expand Down