Skip to content

Commit 213bdc1

Browse files
committed
Major updates: v2.0
1 parent edb08e8 commit 213bdc1

Some content is hidden

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

44 files changed

+15638
-4531
lines changed

.gitignore

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# --- Python Bytecode and Caches ---
2+
# These are generated by the Python interpreter
3+
__pycache__/
4+
*.py[cod]
5+
*$py.class
6+
7+
# Type checker cache
8+
.mypy_cache/
9+
10+
# --- Virtual Environments ---
11+
# Never commit your environment
12+
venv/
13+
env/
14+
.venv/
15+
.env/
16+
virtualenv/
17+
18+
# --- Build and Distribution Artifacts ---
19+
# These are generated when you package your library
20+
build/
21+
dist/
22+
sdist/
23+
*.egg-info/
24+
.eggs/
25+
*.whl
26+
*.tar.gz
27+
28+
# setuptools cache
29+
.setuptools-cache
30+
31+
# --- Testing and Coverage ---
32+
# Caches and reports from testing tools
33+
.pytest_cache/
34+
.coverage
35+
.coverage.*
36+
coverage.xml
37+
htmlcov/
38+
nosetests.xml
39+
# tox environments
40+
.tox/
41+
42+
# --- IDE and Editor Specific ---
43+
# User-specific settings for various editors
44+
.idea/
45+
.vscode/
46+
*.sublime-project
47+
*.sublime-workspace
48+
*.swp
49+
*.swo
50+
*~
51+
52+
# --- Operating System Files ---
53+
# Junk files from macOS, Windows, and Linux
54+
.DS_Store
55+
._*
56+
Thumbs.db
57+
ehthumbs.db
58+
59+
# --- Secrets and Local Config ---
60+
# NEVER commit secrets, API keys, or local settings
61+
.env
62+
*.env
63+
local_settings.py
64+
config.local.ini
65+
66+
# --- Logs ---
67+
*.log
68+
69+
# --- Docs Build Artifacts ---
70+
docs/build/
71+
docs/source/API/
72+
docs/_build/

README.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,4 @@ on the following systems:
4646
## Documentation and tutorials
4747

4848
Please visit [documentation web-site](https://sclitr.readthedocs.io/en/latest/) to check out API description and a few
49-
tutorials with analysis.
50-
51-
An example with the dataset from [Weinreb et al., 2020](https://www.science.org/doi/10.1126/science.aaw3381) is available on
52-
[Google Colab](https://colab.research.google.com/github/kharchenkolab/scLiTr/blob/main/docs/source/Basic_usage.ipynb)
53-
(takes about 45 minutes on the CPU, of which approximately 30 minutes are clone2vec latent representation construction).
54-
55-
## clones2cells
56-
57-
For interactive exploration of clonal and gene expression embeddings together we recommend using
58-
our simple tool [clones2cells](https://github.com/serjisa/clones2cells_app).
59-
49+
tutorials with analysis.

docs/requirements.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
sphinx
2-
sphinx-rtd-theme
32
nbsphinx
43
ipywidgets
54
numpydoc
5+
scanpydoc
6+
sphinx-autodoc-typehints
67
tqdm
78
numpy
89
pandas
10+
scipy
11+
seaborn
12+
matplotlib
913
pynndescent
1014
scanpy
1115
scikit-learn
1216
torch
1317
mpltern
1418
catboost
1519
geosketch
20+
fastglmpca
1621
textalloc

docs/source/.ipynb_checkpoints/Basic_usage-checkpoint.ipynb

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

docs/source/.ipynb_checkpoints/Clonal_embeddings-checkpoint.ipynb

Lines changed: 463 additions & 0 deletions
Large diffs are not rendered by default.
14.2 KB
Loading

docs/source/Basic_usage.ipynb

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

docs/source/Clonal_embeddings.ipynb

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

docs/source/Cluster_based_SHAP.ipynb

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

docs/source/Cluster_free_SHAP.ipynb

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

0 commit comments

Comments
 (0)