Skip to content

Commit 0228eca

Browse files
authored
Merge pull request #11 from pepkit/dev
Release 0.0.4
2 parents 6a04e4c + 0c6f120 commit 0228eca

80 files changed

Lines changed: 2155 additions & 1073 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.Rbuildignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
^.*\.Rproj$
22
^\.Rproj\.user$
33
^\.travis\.yml$
4-
^_pkgdown\.yml$
4+
^_pkgdown\.yml$

DESCRIPTION

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: pepr
22
Type: Package
33
Title: Reading Portable Encapsulated Projects
4-
Version: 0.0.3
4+
Version: 0.0.4
55
Date: 2017-08-09
66
Authors@R: c(person("Nathan", "Sheffield", email = "nathan@code.databio.org",
77
role = c("aut", "cre")),person("Michal","Stolarczyk",email="mjs5kd@virginia.edu",role=c("ctb")))
@@ -17,5 +17,6 @@ Suggests:
1717
testthat,
1818
rmarkdown
1919
VignetteBuilder: knitr
20-
License: GPL-3
20+
License: BSD_2_clause + file LICENSE
21+
BugReports: https://github.com/pepkit/pepr
2122
RoxygenNote: 6.1.0

LICENSE

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
YEAR: 2018
2+
COPYRIGHT HOLDER: Nathan Sheffield

NAMESPACE

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
11
# Generated by roxygen2: do not edit by hand
22

3+
export(.expandPath)
4+
export(.printNestedList)
5+
export(.strformat)
36
export(Project)
4-
export(activateSubproject)
5-
export(assemblyByOrganism)
6-
export(expandPath)
7+
export(config)
8+
export(getSample)
9+
export(getSubsample)
710
export(listSubprojects)
8-
export(listifyDF)
9-
export(loadConfig)
10-
export(printNestedList)
11-
export(strformat)
11+
export(samples)
1212
exportClasses(Config)
1313
exportClasses(Project)
14-
exportMethods(config)
15-
exportMethods(getSubsample)
16-
exportMethods(samples)
1714
import(pryr)
1815
import(stringr)
1916
import(yaml)

NEWS.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# pepr 0.0.4
2+
3+
## TBA
4+
5+
## New Functionalites
6+
7+
## Changes
8+
9+
* change the `Project` object construction, the subproject can be activated at construction time
10+
* change `implied/derived_columns` to `implied/derived_attributes`. Backwards compatible
11+
* change `constants` to `constantAttributes`. Backwards compatible
12+
13+
## Bug Fixes
14+
15+
* fix `expandPath()` function, add error when environment variable not found
16+
17+
18+
# pepr 0.0.3
19+
20+
## 2018-09-12
21+
22+
## New Functionalities
23+
24+
* add `derived_columns` functionality
25+
* add `implied_columns` functionality
26+
* add `subannotation` functionality
27+
28+
## Changes
29+
30+
## Bug Fixes
31+
32+
33+
# pepr 0.0.2
34+
35+
## 2018-09-06
36+
37+
## New Functionalites
38+
39+
* first release, includes basic [PEP](https://pepkit.github.io/) reading functions
40+
41+
## Changes
42+
43+
## Bug Fixes
44+

0 commit comments

Comments
 (0)