Skip to content

Commit

Permalink
Merge branch 'concatenation-of-unimodal-data' of https://github.com/m…
Browse files Browse the repository at this point in the history
…ikelkou/scverse-tutorials into concatenation-of-unimodal-data
  • Loading branch information
mikelkou committed Aug 3, 2023
2 parents 322adcc + 81e835e commit cd978a9
Show file tree
Hide file tree
Showing 6 changed files with 190 additions and 156 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/execute-nbs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Execute notebooks
on:
pull_request_target:
branches: [main]
paths:
- "docs/**"
- "environment.yml"

jobs:
runnbs:
Expand Down
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ default_stages:
minimum_pre_commit_version: 2.16.0
repos:
- repo: https://github.com/psf/black
rev: "23.3.0"
rev: "23.7.0"
hooks:
- id: black-jupyter
- repo: https://github.com/asottile/blacken-docs
rev: 1.13.0
rev: 1.15.0
hooks:
- id: blacken-docs
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.0-alpha.9-for-vscode
rev: v3.0.0
hooks:
- id: prettier
# Newer versions of node don't work on systems that have an older version of GLIBC
Expand All @@ -24,8 +24,8 @@ repos:
# See https://github.com/scverse/cookiecutter-scverse/issues/143 and
# https://github.com/jupyterlab/jupyterlab/issues/12675
language_version: "17.9.1"
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.0.272
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.0.281
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand All @@ -49,13 +49,13 @@ repos:
language: fail
files: '.*\.rej$'
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.1
rev: 0.23.3
hooks:
- id: check-jsonschema
files: "tutorial-registry/schema.json"
args: ["--check-metaschema"]
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.1
rev: 0.23.3
hooks:
- id: check-jsonschema
files: "tutorial-registry/tutorials/.*/meta.yaml"
Expand Down
300 changes: 153 additions & 147 deletions docs/notebooks/basic-scrna-tutorial.ipynb

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions tutorial-registry/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,11 @@
"data structures",
"differential expression",
"functional analysis",
"concatenation"

"concatenation",
"preprocessing",
"cell-type annotation",
"quality control",
"visualization"
]
},
"uniqueItems": true
Expand Down
Binary file not shown.
22 changes: 22 additions & 0 deletions tutorial-registry/tutorials/preprocessing-and-clustering/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Preprocessing, clustering and cell-type annotation
description: |
This fundamental single-cell tutorial guides you through the most common analysis steps, including quality control,
normalization, feature selection, dimensionality reduction, clustering and cell-type annotation.
link: https://scverse-tutorials.readthedocs.io/en/latest/notebooks/basic-scrna-tutorial.html
image: icon.webp
primary_category: scRNA-seq
tags:
- preprocessing
- cell-type annotation
- quality control
- visualization
packages:
- anndata
- scanpy
- celltypist
- decoupler
authors:
- ivirshup
- dbdimitrov
- AnnaChristina
- Hrovatin

0 comments on commit cd978a9

Please sign in to comment.