Skip to content

Commit 5c0fbfd

Browse files
rec3141claude
andcommitted
Overhaul repo: clean up, add docs, modernize pipeline
README: - Rewrite following papa2 style (badges, install, Python API, Nextflow usage) - Remove screenshots, live demo link, R Shiny references Documentation: - Add mkdocs-material site (index, quickstart, API reference, pipeline guide) - Add GitHub Pages auto-deploy workflow Pipeline: - Default to Python/papa2 for all steps (lang='python', dada_engine follows lang) - Remove R fallback hack in dada_engine resolution - Update conda envs to use bioconda papa2 and microscape packages - Streamline R env to bioconda packages only Cleanup: - Delete nextflow/bin/py/ (ported to microscape/ package) - Delete screenshots, TODO.md, BENCHMARKS.md Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 1c3fe02 commit 5c0fbfd

33 files changed

+723
-3332
lines changed

.github/workflows/docs.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Deploy docs
2+
3+
on:
4+
push:
5+
branches: [main]
6+
paths:
7+
- 'docs/**'
8+
- 'mkdocs.yml'
9+
- 'microscape/**'
10+
11+
permissions:
12+
contents: write
13+
14+
jobs:
15+
deploy:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- uses: actions/setup-python@v5
21+
with:
22+
python-version: '3.12'
23+
24+
- name: Install mkdocs and dependencies
25+
run: pip install mkdocs-material "mkdocstrings[python]"
26+
27+
- name: Install microscape
28+
run: pip install -e .
29+
30+
- name: Deploy to GitHub Pages
31+
run: mkdocs gh-deploy --force

BENCHMARKS.md

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

0 commit comments

Comments
 (0)