forked from sbotond/paper-rgasp3-cov
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (21 loc) · 959 Bytes
/
Makefile
File metadata and controls
32 lines (21 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.PHONY: t
# Building tools:
tools: annoparse covstat statvis statdump
covstat: lib/* src_covstat.py
@cat lib/preamble lib/*.py src_covstat.py > bin/covstat; chmod +x bin/covstat
annoparse: lib/* src_annoparse.py
@cat lib/preamble lib/*.py src_annoparse.py > bin/annoparse; chmod +x bin/annoparse
t: covstat annoparse
@bin/annoparse -s -l t/test.sizes -g t/test.gtf -p t/annot.pk
@bin/covstat -g t/annot.pk -p t t/test_1.bam
tv: statvis
@bin/statvis -vs config/vs_plots.tab -m config/style/methods.tab -c config/style/styles.tab -r t/test_report.pdf -t Test t/t-test_stranded_1.pk t/t-test_stranded_1.pk
td: statdump
@bin/statdump t/t-test_stranded_1.pk t/t-test_stranded_1.pk
statvis: lib/* src_statvis.py
@cat lib/preamble lib/*.py src_statvis.py > bin/statvis; chmod +x bin/statvis
statdump: lib/* src_statdump.py
@cat lib/preamble lib/*.py src_statdump.py > bin/statdump; chmod +x bin/statdump
com:
@git commit -a
include analysis.mk