Skip to content
Snippets Groups Projects
Commit 9a0d87a3 authored by Blaise Li's avatar Blaise Li
Browse files

Add install rule in Makefile.

parent cfdaca57
No related branches found
No related tags found
No related merge requests found
VERSION := $(shell git log | head -1 | cut -d " " -f2)
ifeq ($(PREFIX),)
PREFIX := /opt/bioinfo_utils_$(VERSION)
endif
install: all
install -d $(PREFIX)/bin
install run_pipeline $(PREFIX)/bin/.
install run_pipeline.sh $(PREFIX)/bin/.
for datatype in sRNA-seq smallRNA-seq RNA-seq GRO-seq PRO-seq Degradome-seq Ribo-seq iCLIP-seq iCLIP; \
do \
ln -s $(PREFIX)/bin/run_pipeline.sh $(PREFIX)/bin/run_$${datatype}_pipeline; \
done
all: run_pipeline all: run_pipeline
# Should depend on the rest of the repository. # Should depend on the rest of the repository.
......
...@@ -28,7 +28,7 @@ Here are the aliases available for each pipeline: ...@@ -28,7 +28,7 @@ Here are the aliases available for each pipeline:
- `run_PRO-seq_pipeline` - `run_PRO-seq_pipeline`
* RNA-seq * RNA-seq
- `run_RNA-seq_pipeline` - `run_RNA-seq_pipeline`
* Degradme-seq * Degradome-seq
- `run_Degradome-seq_pipeline` - `run_Degradome-seq_pipeline`
* Ribo-seq * Ribo-seq
- `run_Ribo-seq_pipeline` - `run_Ribo-seq_pipeline`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment