-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from pepkit/dev
v0.1.1
- Loading branch information
Showing
33 changed files
with
860 additions
and
259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
^\.travis\.yml$ | ||
^_pkgdown.yaml | ||
^docs | ||
^update_examples.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
inst/doc | ||
.Rproj.user | ||
.Rhistory | ||
.RData | ||
.DS_Store | ||
.DS_Store | ||
docs | ||
*.RProj |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r | ||
|
||
language: R | ||
sudo: false | ||
cache: packages | ||
warnings_are_errors: false | ||
before_install: | ||
- Rscript -e "install.packages('devtools');devtools::install_github(repo = 'pepkit/pepr',ref = 'dev');source('https://bioconductor.org/biocLite.R');biocLite('GenomicRanges');biocLite('BiocFileCache');devtools::install_github(repo = 'databio/simpleCache')" | ||
r_packages: devtools | ||
r_github_packages: | ||
- pepkit/pepr | ||
- databio/simpleCache | ||
bioc_packages: | ||
- GenomicRanges | ||
- BiocStyle | ||
- BiocFileCache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: BiocProject | ||
Title: Bioconductor Management with Portable Encapsulated Project (PEP) Objects | ||
Version: 0.1 | ||
Version: 0.1.1 | ||
Authors@R: c(person("Michal", "Stolarczyk", email = "[email protected]",role = c("aut", "cre")), | ||
person("Nathan", "Sheffield", email = "[email protected]",role = c("aut"))) | ||
Description: A Bioconductor-oriented project management class. It wraps the | ||
|
@@ -9,11 +9,15 @@ Description: A Bioconductor-oriented project management class. It wraps the | |
License: GPL-3 | ||
Encoding: UTF-8 | ||
LazyData: true | ||
Depends: S4Vectors, pepr | ||
Depends: S4Vectors, pepr, methods | ||
Suggests: | ||
knitr, | ||
rmarkdown | ||
rmarkdown, | ||
testthat, | ||
yaml | ||
Enhances: BiocFileCache, simpleCache, GenomicRanges | ||
biocViews: DataImport, DataRepresentation | ||
RoxygenNote: 6.1.1 | ||
URL: https://github.com/pepkit/BiocProject | ||
BugReports: https://github.com/pepkit/BiocProject | ||
VignetteBuilder: knitr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export(.insertPEP) | ||
export(.updateList) | ||
export(BiocProject) | ||
exportMethods(config) | ||
exportMethods(getProject) | ||
exportMethods(is) | ||
exportMethods(samples) | ||
import(S4Vectors) | ||
import(methods) | ||
import(pepr) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# config section names | ||
# | ||
# The YAML file looks like this: | ||
# | ||
# MAIN_SECTION: | ||
# FUNCTION_NAME: <name> | ||
# FUNCTION_PATH: <path> | ||
# FUNCTION_ARGS: | ||
# <arg1>: <val1> | ||
# <arg2>: <val2> | ||
MAIN_SECTION = "bioconductor" | ||
FUNCTION_ARGS = "funcArgs" | ||
FUNCTION_PATH = "readFunPath" | ||
FUNCTION_NAME = "readFunName" |
Oops, something went wrong.