|
| 1 | +ROOT_DIR := $(shell echo $(dir $(lastword $(MAKEFILE_LIST))) | sed 's|/*$$||') |
| 2 | + |
| 3 | +SHELL := /bin/bash |
| 4 | + |
| 5 | +define version |
| 6 | +$(shell uv run python -c "from oncodriveclustl import __version__; print(__version__)") |
| 7 | +endef |
| 8 | + |
| 9 | +define git_tag_or_sha |
| 10 | +$(shell git describe --tags --exact-match 2>/dev/null || git rev-parse --short HEAD) |
| 11 | +endef |
| 12 | + |
| 13 | +define image |
| 14 | +bbglab/oncodriveclustl:$(call version) |
| 15 | +endef |
| 16 | + |
| 17 | +BOLDRED := $(shell tput bold && tput setaf 1) |
| 18 | +BOLDGREEN := $(shell tput bold && tput setaf 2) |
| 19 | +BOLDYELLOW := $(shell tput bold && tput setaf 3) |
| 20 | +BOLDBLUE := $(shell tput bold && tput setaf 4) |
| 21 | +LIGHTBLUE := $(shell tput setaf 6) |
| 22 | +WHITE := $(shell tput sgr0 && tput setaf 7) |
| 23 | +RESET := $(shell tput sgr0) |
| 24 | + |
| 25 | + |
| 26 | +.PHONY: help |
| 27 | +help: |
| 28 | + @echo "$(BOLDYELLOW)Available targets:$(RESET)" |
| 29 | + @echo |
| 30 | + @echo "$(BOLDGREEN) checks $(WHITE)-> Run all the checks (format and lint)" |
| 31 | + @echo "$(BOLDGREEN) check-format $(WHITE)-> Check for formatting errors" |
| 32 | + @echo "$(BOLDGREEN) check-lint $(WHITE)-> Check for lint errors" |
| 33 | + @echo "$(BOLDGREEN) check-docker $(WHITE)-> Check the Dockerfile" |
| 34 | + @echo "$(BOLDGREEN) format $(WHITE)-> Format source code" |
| 35 | + @echo "$(BOLDGREEN) build-dist $(WHITE)-> Build source and wheel distribution files" |
| 36 | + @echo "$(BOLDGREEN) build-image $(WHITE)-> Build the Docker image" |
| 37 | + @echo "$(BOLDGREEN) push-image $(WHITE)-> Push the Docker image into DockerHub" |
| 38 | + @echo "$(BOLDGREEN) run-example $(WHITE)-> Run the included example using the Docker image" |
| 39 | + @echo "$(BOLDGREEN) clean $(WHITE)-> Clean the working directory (build files, virtual environments, caches)" |
| 40 | + @echo "$(RESET)" |
| 41 | + |
| 42 | +.PHONY: uv-installed |
| 43 | +uv-installed: |
| 44 | + @if ! which uv > /dev/null; then \ |
| 45 | + echo "$(BOLDRED)This project build is managed by $(BOLDYELLOW)uv$(BOLDRED), which is not installed.$(RESET)"; \ |
| 46 | + echo "$(LIGHTBLUE)Please follow these instructions to install it:$(RESET)"; \ |
| 47 | + echo "$(LIGHTBLUE)--> $(BOLDBLUE)https://docs.astral.sh/uv/#getting-started$(RESET)"; \ |
| 48 | + exit 1; \ |
| 49 | + fi |
| 50 | + |
| 51 | +.PHONY: ruff-installed |
| 52 | +ruff-installed: uv-installed |
| 53 | + @if ! which ruff > /dev/null; then \ |
| 54 | + echo "$(BOLDRED)This project requires $(BOLDYELLOW)ruff$(BOLDRED), which is not installed.$(RESET)"; \ |
| 55 | + echo "$(LIGHTBLUE)Installing it with $(BOLDYELLOW)uv tool install ruff$(RESET)"; \ |
| 56 | + uv tool install ruff; \ |
| 57 | + ruff --version; \ |
| 58 | + fi |
| 59 | + |
| 60 | +.PHONY: checks |
| 61 | +checks: check-format check-lint check-docker |
| 62 | + |
| 63 | +.PHONY: check-format |
| 64 | +check-format: ruff-installed |
| 65 | + @echo "$(BOLDGREEN)Checking code format ...$(RESET)" |
| 66 | + ruff format --check |
| 67 | + @echo "$(BOLDGREEN)==> Success!$(RESET)" |
| 68 | + |
| 69 | +.PHONY: check-lint |
| 70 | +check-lint: ruff-installed |
| 71 | + @echo "$(BOLDGREEN)Checking lint ...$(RESET)" |
| 72 | + ruff check |
| 73 | + @echo "$(BOLDGREEN)==> Success!$(RESET)" |
| 74 | + |
| 75 | +.PHONY: check-docker |
| 76 | +check-docker: |
| 77 | + @echo "$(BOLDGREEN)Checking Dockerfile ...$(RESET)" |
| 78 | + docker run --rm -i \ |
| 79 | + -v $$(pwd):/project \ |
| 80 | + hadolint/hadolint hadolint \ |
| 81 | + --config /project/.hadolint.yaml \ |
| 82 | + /project/Dockerfile |
| 83 | + @echo "$(BOLDGREEN)==> Success!$(RESET)" |
| 84 | + |
| 85 | +.PHONY: check-version |
| 86 | +check-version: uv-installed |
| 87 | + @echo "$(BOLDGREEN)Checking that the version matches the tag ...$(RESET)" |
| 88 | + @if [ "$(call version)" != "$(call git_tag_or_sha)" ]; then \ |
| 89 | + echo "$(BOLDRED)==> Version $(BOLDYELLOW)$(call version)$(BOLDRED) doesn't match the git tag $(BOLDYELLOW)$(call git_tag_or_sha)$(BOLDRED) !!!$(RESET)"; \ |
| 90 | + echo "$(BOLDRED)==> Please update the $(BOLDYELLOW)__version__$(BOLDRED) in $(BOLDYELLOW)oncodrivefml/__init__.py$(BOLDRED) and re-create the tag.$(RESET)"; \ |
| 91 | + exit 1; \ |
| 92 | + fi |
| 93 | + @echo "$(BOLDGREEN)==> Success!$(RESET)" |
| 94 | + |
| 95 | +.PHONY: format |
| 96 | +format: ruff-installed |
| 97 | + @echo "$(BOLDGREEN)Formatting code ...$(RESET)" |
| 98 | + ruff format |
| 99 | + |
| 100 | +.PHONY: build-dist |
| 101 | +build-dist: uv-installed |
| 102 | + @echo "$(BOLDGREEN)Building packages ...$(RESET)" |
| 103 | + uv build |
| 104 | + |
| 105 | +.PHONY: publish-dist |
| 106 | +publish-dist: uv-installed |
| 107 | + @echo "$(BOLDGREEN)Publishing OncodriveCLUSTL $(BOLDYELLOW)$(call version)$(BOLDGREEN) to PyPI ...$(RESET)" |
| 108 | + @if [ -z "$(PYPI_TOKEN)" ]; then \ |
| 109 | + echo "$(BOLDRED)==> Missing PyPI token !!!$(RESET)"; \ |
| 110 | + exit 1; \ |
| 111 | + fi |
| 112 | + uv publish --token $(PYPI_TOKEN) |
| 113 | + |
| 114 | +.PHONY: build-image |
| 115 | +build-image: uv-installed |
| 116 | + @echo "$(BOLDGREEN)Building Docker image $(BOLDYELLOW)$(call image)$(BOLDGREEN) ...$(RESET)" |
| 117 | + docker build --progress=plain -t $(call image) . |
| 118 | + @echo "$(BOLDGREEN)==> Success!$(RESET)" |
| 119 | + |
| 120 | +.PHONY: build-image |
| 121 | +push-image: uv-installed |
| 122 | + @echo "$(BOLDGREEN)Pushing the Docker image into the DockerHub ...$(RESET)" |
| 123 | + docker push $(call image) |
| 124 | + @echo "$(BOLDGREEN)==> Success!$(RESET)" |
| 125 | + |
| 126 | +.PHONY: run-example |
| 127 | +run-example: uv-installed |
| 128 | + @echo "$(BOLDGREEN)Running example ...$(RESET)" |
| 129 | + uv run oncodriveclustl \ |
| 130 | + -i example/PAAD.tsv.gz -r example/cds.hg19.regions.gz -o example/output \ |
| 131 | + -sw 15 -cw 15 -simw 35 -sim region_restricted --concatenate --clustplot -e KRAS |
| 132 | + @echo "$(BOLDGREEN)==> Success!$(RESET)" |
| 133 | + |
| 134 | +.PHONY: clean |
| 135 | +clean: |
| 136 | + @echo "$(BOLDGREEN)Cleaning the repository ...$(RESET)" |
| 137 | + rm -rf ./oncodriveclustl.egg-info ./dist ./.ruff_cache ./.venv |
| 138 | + find . -name "__pycache__" -type d -exec rm -r {} + |
0 commit comments