1 | 1 |
deleted file mode 100644 |
... | ... |
@@ -1,26 +0,0 @@ |
1 |
-quick: install |
|
2 |
- |
|
3 |
-all: install vig build check |
|
4 |
- |
|
5 |
-vig: |
|
6 |
- R -e "devtools::build_vignettes()" |
|
7 |
- |
|
8 |
-build: |
|
9 |
- (cd ..; R CMD build --no-build-vignettes MotifDb) |
|
10 |
- |
|
11 |
-install: |
|
12 |
- (cd ..; R CMD INSTALL MotifDb) |
|
13 |
- |
|
14 |
-check: build |
|
15 |
- (cd ..; R CMD check --no-manual --no-build-vignettes --ignore-vignettes `ls -t MotifDb_* | head -1`) |
|
16 |
- |
|
17 |
-biocCheck: |
|
18 |
- (cd ..; R CMD BiocCheck `ls -t MotifDb_* | head -1`) |
|
19 |
- |
|
20 |
-unitTests: test |
|
21 |
- |
|
22 |
-test: |
|
23 |
- for x in inst/unitTests/test_*.R; do echo ============== $$x; R -f $$x; done |
|
24 |
- |
|
25 |
-site: |
|
26 |
- R -e "devtools::build_site()" |
... | ... |
@@ -1,4 +1,15 @@ |
1 |
-oMotifDb) |
|
1 |
+quick: install |
|
2 |
+ |
|
3 |
+all: install vig build check |
|
4 |
+ |
|
5 |
+vig: |
|
6 |
+ R -e "devtools::build_vignettes()" |
|
7 |
+ |
|
8 |
+build: |
|
9 |
+ (cd ..; R CMD build --no-build-vignettes MotifDb) |
|
10 |
+ |
|
11 |
+install: |
|
12 |
+ (cd ..; R CMD INSTALL MotifDb) |
|
2 | 13 |
|
3 | 14 |
check: build |
4 | 15 |
(cd ..; R CMD check --no-manual --no-build-vignettes --ignore-vignettes `ls -t MotifDb_* | head -1`) |
... | ... |
@@ -1,15 +1,4 @@ |
1 |
-quick: install |
|
2 |
- |
|
3 |
-all: install vig build check |
|
4 |
- |
|
5 |
-vig: |
|
6 |
- R -e "devtools::build_vignettes()" |
|
7 |
- |
|
8 |
-build: |
|
9 |
- (cd ..; R CMD build --no-build-vignettes MotifDb) |
|
10 |
- |
|
11 |
-install: |
|
12 |
- (cd ..; R CMD INSTALL --no-test-load MotifDb) |
|
1 |
+oMotifDb) |
|
13 | 2 |
|
14 | 3 |
check: build |
15 | 4 |
(cd ..; R CMD check --no-manual --no-build-vignettes --ignore-vignettes `ls -t MotifDb_* | head -1`) |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,26 @@ |
1 |
+quick: install |
|
2 |
+ |
|
3 |
+all: vig build check |
|
4 |
+ |
|
5 |
+vig: |
|
6 |
+ R -e "devtools::build_vignettes()" |
|
7 |
+ |
|
8 |
+build: |
|
9 |
+ (cd ..; R CMD build --no-build-vignettes MotifDb) |
|
10 |
+ |
|
11 |
+install: |
|
12 |
+ (cd ..; R CMD INSTALL --no-test-load MotifDb) |
|
13 |
+ |
|
14 |
+check: build |
|
15 |
+ (cd ..; R CMD check --no-manual --no-build-vignettes --ignore-vignettes `ls -t MotifDb_* | head -1`) |
|
16 |
+ |
|
17 |
+biocCheck: |
|
18 |
+ (cd ..; R CMD BiocCheck `ls -t MotifDb_* | head -1`) |
|
19 |
+ |
|
20 |
+unitTests: test |
|
21 |
+ |
|
22 |
+test: |
|
23 |
+ for x in inst/unitTests/test_*.R; do echo ============== $$x; R -f $$x; done |
|
24 |
+ |
|
25 |
+site: |
|
26 |
+ R -e "devtools::build_site()" |