Browse code

updated show method, renamed to makefile

paul-shannon authored on 04/03/2022 21:16:37
Showing 1 changed files
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()"
Browse code

full version restored

paul-shannon authored on 03/10/2021 15:49:33
Showing 1 changed files
... ...
@@ -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`)
Browse code

fixed onload error, moved tfs RData file to tfs directory

paul-shannon authored on 03/10/2021 15:37:53
Showing 1 changed files
... ...
@@ -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`)
Browse code

removed motifmatchr and its dependencies

paul-shannon authored on 02/04/2020 20:20:03
Showing 1 changed files
... ...
@@ -1,6 +1,6 @@
1 1
 quick: install
2 2
 
3
-all:  vig build check
3
+all:  install vig build check
4 4
 
5 5
 vig:
6 6
 	R -e "devtools::build_vignettes()"
Browse code

provisional addition of hocomoco v1, with reliability scores, A-D

paul-shannon authored on 10/03/2020 00:06:57
Showing 1 changed files
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()"