Modifications to address the comments and modifications proposed by a member of the Bioconductor core team (Last submission stage):
https://github.com/Bioconductor/Contributions/issues/1263
- New more robustic functions to query Omnipath webservice following Bioconductor recommendations.
- New testing funcitons using the package testthat and following Bioconductor recommendations.
- Coding style modifications to meet Bioconductor recommendations and requirements.
... | ... |
@@ -1,37 +1,29 @@ |
1 |
+inst/doc |
|
1 | 2 |
# History files |
2 | 3 |
.Rhistory |
3 | 4 |
.Rapp.history |
4 | 5 |
|
5 | 6 |
# Session Data files |
6 | 7 |
.RData |
7 |
- |
|
8 | 8 |
# Example code in package build process |
9 | 9 |
*-Ex.R |
10 |
- |
|
11 | 10 |
# Output files from R CMD build |
12 | 11 |
/*.tar.gz |
13 |
- |
|
14 | 12 |
# Output files from R CMD check |
15 | 13 |
/*.Rcheck/ |
16 |
- |
|
17 | 14 |
# RStudio files |
18 | 15 |
.Rproj.user/ |
19 |
- |
|
20 | 16 |
# produced vignettes |
21 | 17 |
vignettes/*.html |
22 | 18 |
vignettes/*.pdf |
23 |
- |
|
24 | 19 |
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 |
25 | 20 |
.httr-oauth |
26 |
- |
|
27 | 21 |
# knitr and R markdown default cache directories |
28 | 22 |
/*_cache/ |
29 | 23 |
/cache/ |
30 |
- |
|
31 | 24 |
# Temporary files created by R markdown |
32 | 25 |
*.utf8.md |
33 | 26 |
*.knit.md |
34 |
- |
|
35 | 27 |
# Shiny token, see https://shiny.rstudio.com/articles/shinyapps.html |
36 | 28 |
rsconnect/ |
37 | 29 |
.Rproj.user |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,36 @@ |
1 |
+# History files |
|
2 |
+.Rhistory |
|
3 |
+.Rapp.history |
|
4 |
+ |
|
5 |
+# Session Data files |
|
6 |
+.RData |
|
7 |
+ |
|
8 |
+# Example code in package build process |
|
9 |
+*-Ex.R |
|
10 |
+ |
|
11 |
+# Output files from R CMD build |
|
12 |
+/*.tar.gz |
|
13 |
+ |
|
14 |
+# Output files from R CMD check |
|
15 |
+/*.Rcheck/ |
|
16 |
+ |
|
17 |
+# RStudio files |
|
18 |
+.Rproj.user/ |
|
19 |
+ |
|
20 |
+# produced vignettes |
|
21 |
+vignettes/*.html |
|
22 |
+vignettes/*.pdf |
|
23 |
+ |
|
24 |
+# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 |
|
25 |
+.httr-oauth |
|
26 |
+ |
|
27 |
+# knitr and R markdown default cache directories |
|
28 |
+/*_cache/ |
|
29 |
+/cache/ |
|
30 |
+ |
|
31 |
+# Temporary files created by R markdown |
|
32 |
+*.utf8.md |
|
33 |
+*.knit.md |
|
34 |
+ |
|
35 |
+# Shiny token, see https://shiny.rstudio.com/articles/shinyapps.html |
|
36 |
+rsconnect/ |