Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Tools development version

- minor documentation improvements. (#197, #198, @kelly-sovacool)

## Tools 0.7.0

- New pre-commit hook: `ccbr-hooks sync-nextflow-version`. Syncs `manifest.version` in `nextflow.config` from the repo `VERSION` file. (#193, @kelly-sovacool, @copilot)
Expand Down
2 changes: 2 additions & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@
/_freeze/
/site_libs/
/_inv/

**/*.quarto_ipynb
1 change: 1 addition & 0 deletions docs/_quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ quartodoc:
contents:
- hooks
- hooks.detect_absolute_paths
- hooks.sync_nextflow_version
- title: Legacy tools
contents:
- GSEA.deg2gs
Expand Down
3 changes: 1 addition & 2 deletions docs/render_site.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
ccbr_tools quarto-add fnl
python -m quartodoc build --verbose
python -m quartodoc interlinks
python -m quartodoc build --verbose && python -m quartodoc interlinks
quarto render
2 changes: 2 additions & 0 deletions src/ccbr_tools/hooks/sync_nextflow_version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
"""
Synchronize `manifest.version` in `nextflow.config` with the repo `VERSION` file.

Whenever the `VERSION` file is updated, the `manifest.version` entry in `nextflow.config` will be updated to match it.

## Usage with pre-commit

Add this to your `.pre-commit-config.yaml` file:
Expand Down
Loading