-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
55 lines (28 loc) · 827 Bytes
/
Makefile
File metadata and controls
55 lines (28 loc) · 827 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
33
34
35
36
37
38
39
40
41
42
43
44
45
document :
Rscript -e "devtools::document()"
check :
Rscript -e "devtools::check()"
site : document
Rscript -e "pkgdown::build_site()"
install :
Rscript -e "devtools::install()"
paper.pdf : paper.md paper.bib
pandoc --filter pandoc-citeproc -o paper.pdf paper.md
test : test_advice test_biplot test_heatmap test_heatmap_big test_pathological test_vst_plot test_vst_stability_plots
test_advice :
Rscript test/advice.R
test_biplot :
Rscript test/biplot.R
test_heatmap :
Rscript test/heatmap.R
test_heatmap_big :
Rscript test/heatmap_big.R
test_pathological :
Rscript test/pathological.R
test_vst_plot :
Rscript test/vst_plot.R
test_vst_stability_plots :
Rscript test/vst_stability_plots.R
# This launches a web-server, so not included in standard test run
test_shiny:
Rscript test/shiny.R