Skip to content

Commit 955aadb

Browse files
authored
Merge pull request #12 from CahanLab/draft_0.3.1
version 0.1.4
2 parents 250fae3 + 23c7334 commit 955aadb

File tree

112 files changed

+13496
-2342
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+13496
-2342
lines changed

docs/classifier.md

Lines changed: 7 additions & 0 deletions

docs/img/logo.png

2.34 KB

docs/img/logoGlow.png

5.11 KB

docs/index.md

Lines changed: 4 additions & 0 deletions

docs/install.md

Lines changed: 14 additions & 0 deletions

docs/javascripts/extra.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// Using the document$ observable from mkdocs-material to get notified of page "reload" also if using `navigation.instant` (SSA)
2+
document$.subscribe(function() {
3+
// First check if the page contains a notebook-related class
4+
if (document.querySelector('.jp-Notebook')) {
5+
document.querySelector("div.md-sidebar.md-sidebar--secondary").remove();
6+
// document.querySelector("div.md-sidebar.md-sidebar--primary").remove();
7+
}
8+
});
9+
10+

docs/notebooks/Basics.ipynb

Lines changed: 527 additions & 0 deletions
Large diffs are not rendered by default.

docs/notebooks/categorize.ipynb

Lines changed: 637 additions & 0 deletions
Large diffs are not rendered by default.

docs/notebooks/eb_diagram.png

149 KB
File renamed without changes.

docs/notebooks/img/categories.jpg

310 KB

docs/notebooks/img/eb_diagram.png

149 KB

docs/notebooks/old_quickstart.ipynb

Lines changed: 449 additions & 0 deletions
Large diffs are not rendered by default.

docs/notebooks/quickstart.ipynb

Lines changed: 538 additions & 0 deletions
Large diffs are not rendered by default.

docs/plotting.md

Lines changed: 4 additions & 0 deletions

docs/requirements.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

docs/source/apidocs/index.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/source/conf.py

Lines changed: 0 additions & 56 deletions
This file was deleted.

docs/source/install.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

docs/stylesheets/extra.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/* hide jupyter notebooks input/output numbers */
2+
.jp-InputPrompt {
3+
display: none !important;
4+
}
5+
6+
.jp-OutputPrompt {
7+
display: none !important;
8+
}
9+

docs/utils.md

Lines changed: 6 additions & 0 deletions

md_img/HM_Lung_Leiden_101120.png

-87.2 KB
Binary file not shown.

md_img/HM_Val_Lung_100920.png

-92.2 KB
Binary file not shown.

md_img/HM_Val_Other_100920.png

-328 KB
Binary file not shown.
-169 KB
Binary file not shown.

md_img/PR_curves_Lung_100920.png

-130 KB
Binary file not shown.

md_img/UMAP_Lung_Other_101120.png

-381 KB
Binary file not shown.

md_img/UMAP_Lung_SCN_101120.png

-238 KB
Binary file not shown.

md_img/hm_mgenes_result.png

-21.6 KB
Binary file not shown.

md_img/output_17_0.png

-130 KB
Binary file not shown.

md_img/output_18_0.png

-5 KB
Binary file not shown.

md_img/output_20_0.png

-81.5 KB
Binary file not shown.

md_img/output_21_0.png

-275 KB
Binary file not shown.

md_img/output_22_0.png

-92.2 KB
Binary file not shown.

md_img/output_24_0.png

-76.6 KB
Binary file not shown.

md_img/pca_lung_101120.png

-90.2 KB
Binary file not shown.

md_img/temp

Lines changed: 0 additions & 1 deletion
This file was deleted.

mkdocs.yml

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
site_name: pySingleCellNet
2+
site_author: Patrick Cahan
3+
copyright: Copyright © 2024 Cahan Lab
4+
repo_url: https://github.com/CahanLab/PySingleCellNet
5+
6+
use_directory_urls: false
7+
8+
extra_css:
9+
- stylesheets/extra.css
10+
11+
extra_javascript:
12+
- javascripts/extra.js
13+
14+
theme:
15+
name: material
16+
font:
17+
text: Noto Sans
18+
palette:
19+
primary: light blue
20+
logo: img/logoGlow.png
21+
favicon: img/logo.png
22+
features:
23+
- content.footnote.tooltips
24+
- navigation.expand
25+
- toc.integrate
26+
# - navigation.tabs
27+
# - navigation.tabs.sticky
28+
# - navigation.sections
29+
30+
markdown_extensions:
31+
- md_in_html
32+
- footnotes
33+
- admonition
34+
- attr_list
35+
- tables
36+
- def_list
37+
- toc:
38+
title: On this page
39+
- pymdownx.blocks.caption
40+
- pymdownx.tasklist:
41+
custom_checkbox: false
42+
- pymdownx.emoji:
43+
emoji_index: !!python/name:material.extensions.emoji.twemoji
44+
emoji_generator: !!python/name:material.extensions.emoji.to_svg
45+
46+
plugins:
47+
- mkdocstrings:
48+
handlers:
49+
python:
50+
options:
51+
separate_signature: true
52+
docstring_section_style: list
53+
heading_level: 3
54+
- search
55+
- mkdocs-jupyter:
56+
execute: false
57+
include_source: True
58+
59+
nav:
60+
# - Home: index.md
61+
- Installation: install.md
62+
- Tutorials:
63+
- 'Quickstart': notebooks/quickstart.ipynb
64+
- 'Explore': notebooks/categorize.ipynb
65+
# - 'train & classify': 'notebooks/Basics.ipynb'
66+
# - 'analyze _in vitro_ cells': 'notebooks/explore.ipynb'
67+
# - 'prepare training data': 'notebooks/how-to_prepare_reference_data.ipynb'
68+
# - 'Train a classifier': 'notebooks/train_classifier.ipynb'
69+
# - 'Enrichment analysis': 'notebooks/enrichment.ipynb'
70+
- Training data: training_data.md
71+
- References: refs.md
72+
- API:
73+
- 'Utility functions': 'utils.md'
74+
- 'Classifier functions': 'classifier.md'
75+
- 'Plotting functions': 'plotting.md'
76+
77+
File renamed without changes.
File renamed without changes.

old_docs/requirements.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
sphinx
2+
sphinx-rtd-theme
3+
sphinx-autodoc-typehints
4+
sphinxcontrib-napoleon
5+
nbsphinx
6+
myst-nb
7+
sphinx-copybutton
8+
sphinx-book-theme
File renamed without changes.
File renamed without changes.

old_docs/source/apidocs/modules.rst

Lines changed: 7 additions & 0 deletions
Lines changed: 4 additions & 0 deletions
Lines changed: 4 additions & 0 deletions
Lines changed: 4 additions & 0 deletions
Lines changed: 4 additions & 0 deletions
Lines changed: 18 additions & 0 deletions
Lines changed: 4 additions & 0 deletions
Lines changed: 4 additions & 0 deletions
Lines changed: 4 additions & 0 deletions
Lines changed: 30 additions & 0 deletions
Lines changed: 4 additions & 0 deletions
Lines changed: 4 additions & 0 deletions
Lines changed: 4 additions & 0 deletions
Lines changed: 4 additions & 0 deletions
Lines changed: 4 additions & 0 deletions
Lines changed: 4 additions & 0 deletions
Lines changed: 4 additions & 0 deletions
Lines changed: 4 additions & 0 deletions
Lines changed: 4 additions & 0 deletions
Lines changed: 19 additions & 0 deletions

0 commit comments

Comments
 (0)