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

Documentation updates #23

Merged
merged 44 commits into from
May 23, 2024
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
61ad6f3
test countReads added
vivekbhr Jul 4, 2023
e06120a
reformat
vivekbhr Jul 4, 2023
8817c27
codecov upload
vivekbhr Jul 4, 2023
0505bb3
codecov token added
vivekbhr Jul 4, 2023
2f580bc
syntax
vivekbhr Jul 4, 2023
f9aec19
syntax
vivekbhr Jul 4, 2023
835931c
added new logo and docs improvement
vivekbhr Jul 4, 2023
69d3bf8
python test version bump to 3.10, trying to fix github actions
vivekbhr Jul 4, 2023
ea26d2a
pytest workflow copied from codecov github now
vivekbhr Jul 4, 2023
af5ad37
doc improvement
vivekbhr Jul 7, 2023
7149fd6
warnings and logs ignores unless verbose
vivekbhr Jul 10, 2023
69564c7
add corpus_tfidf to model obj
vivekbhr Jul 13, 2023
e4e4d93
minor updates with imports
vivekbhr Aug 4, 2023
b0cda37
faster barcode counts and improved plotting
vivekbhr Aug 28, 2023
00bc2d9
all tools: skip read if cellTag is absent
vivekbhr Sep 1, 2023
822cb2a
lint
vivekbhr Sep 1, 2023
30dc07a
minor updates
vivekbhr Sep 21, 2023
1395ec1
updated docs
vivekbhr Sep 22, 2023
17e2230
fixed borken image link
vivekbhr Sep 22, 2023
bb91292
bring back sphinx-rtd
vivekbhr Nov 5, 2023
daba75c
correction Beta log_partition function + reparametrization of Beta wi…
Sep 14, 2023
00baf13
correction Beta log_partition function + reparametrization of Beta wi…
Sep 14, 2023
8b14002
Documentation for GLM PCA
Sep 14, 2023
19b489f
documentation for ExponentialFamily and GLMPCA
Sep 14, 2023
430c73e
error in beta distributions with parameters
Sep 15, 2023
191a94b
fix issue with logit on SigmoidBeta
Sep 15, 2023
b25468e
fix logit error with SigmoidBeta + tests for ExponentialFamily
Sep 15, 2023
f46d516
error sigmoig/logit in SigmoidBeta
Oct 6, 2023
ea20bd6
Tutorial GLM-PCA
Nov 3, 2023
7130fad
fixed docs for cmdline
vivekbhr Nov 5, 2023
3250490
added glmPCA notebooks
vivekbhr Nov 5, 2023
9b4d716
lint
vivekbhr Nov 5, 2023
d7d4277
fix tests
vivekbhr Nov 5, 2023
824cacf
lint
vivekbhr Nov 5, 2023
033af93
another try for coverage on mac
vivekbhr Nov 5, 2023
66a3e7e
minor changes to notebooks
vivekbhr Feb 24, 2024
e6b88b8
run pytest only on ubuntu
vivekbhr Feb 25, 2024
d194f93
fit format
vivekbhr Feb 25, 2024
4eacef7
Merge pull request #21 from vivekbhr/glm_pca_devel
vivekbhr Feb 25, 2024
10e2146
fix docs references
vivekbhr Feb 25, 2024
92f0098
cleanup
vivekbhr May 5, 2024
64393e7
minor fixes
vivekbhr May 7, 2024
3e819e9
conda fix
vivekbhr May 7, 2024
0e4ec8f
added 10xRNA tutorial
vivekbhr May 21, 2024
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
Prev Previous commit
Next Next commit
minor fixes
vivekbhr committed May 7, 2024
commit 64393e7bd7b5e21517b3d157d83faa4485ce60ec
1 change: 1 addition & 0 deletions sincei/_deprecated.py
Original file line number Diff line number Diff line change
@@ -135,6 +135,7 @@ def cluster_LSA(
Graph object.
"""
import community

# cluster on cel-topic dist
_distances = pairwise_distances(cell_topic.iloc[:, 1:], metric=distance_metric)
knn_indices, knn_distances = _get_indices_distances_from_dense_matrix(_distances, nk)
4 changes: 2 additions & 2 deletions sincei/scCountReads.py
Original file line number Diff line number Diff line change
@@ -200,11 +200,11 @@ def main(args=None):

num_reads_per_bin, regionList = c.run(allArgs=args)

sys.stderr.write("Number of bins " "found: {}\n".format(num_reads_per_bin.shape[0]))
sys.stderr.write("Number of bins/features " "found: {}\n".format(num_reads_per_bin.shape[0]))

if num_reads_per_bin.shape[0] < 1:
exit(
"ERROR: too few non zero bins found.\n"
"ERROR: too few non zero bins/features found.\n"
"If using --region please check that this "
"region is covered by reads.\n"
)