Skip to content

Commit

Permalink
docs pancreas (test url)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilibarra committed Aug 30, 2024
1 parent 2d2316d commit 17ce317
Show file tree
Hide file tree
Showing 3 changed files with 1,261 additions and 2,349 deletions.

Large diffs are not rendered by default.

3,455 changes: 1,147 additions & 2,308 deletions docs/notebooks/single_cell/02_2_2_scatac_multiome_pancreas_priors_evaluate.ipynb

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions mubind/datasets/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,10 @@ def genre(**kwargs):
return pwms

def archetypes_anno(**kwargs):
if not 'url' in kwargs:
url = 'https://www.dropbox.com/scl/fi/odxcg72nj3djbfz6r9nq8/motif_annotations.xlsx?rlkey=qlbyx9m7dj6qqui9ct80q9ejc&dl=1'
kwargs['url'] = url

url = kwargs['url']
# read reference clusters
archetypes_dir = 'data/archetypes'
Expand All @@ -492,6 +496,10 @@ def archetypes_anno(**kwargs):
return anno

def archetypes_clu(**kwargs):
if not 'url' in kwargs:
url = 'https://www.dropbox.com/scl/fi/odxcg72nj3djbfz6r9nq8/motif_annotations.xlsx?rlkey=qlbyx9m7dj6qqui9ct80q9ejc&dl=1'
kwargs['url'] = url

url = kwargs['url']
archetypes_dir = 'data/archetypes'
archetypes_path = os.path.join(archetypes_dir, 'motif_annotations.xlsx')
Expand Down

0 comments on commit 17ce317

Please sign in to comment.