-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
64 additions
and
17 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$ | ||
^data-raw$ | ||
^cran-comments\.md$ | ||
^LICENSE\.md$ | ||
^\.travis\.yml$ |
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 |
---|---|---|
|
@@ -2,14 +2,16 @@ Package: msigdbr | |
Type: Package | ||
Title: MSigDB for Multiple Organisms in a Tidy Data Format | ||
Version: 6.1.1 | ||
Author: Who wrote it | ||
Maintainer: The package maintainer <[email protected]> | ||
Description: The msigdbr package provides The Molecular Signatures Database | ||
(MSigDB) gene sets used with the Gene Set Enrichment Analysis (GSEA) | ||
software for various frequently studied model organisms in an R-friendly | ||
format. | ||
Authors@R: person("Igor", "Dolgalev", email = "[email protected]", role = c("aut", "cre")) | ||
Description: Provides the 'Molecular Signatures Database' (MSigDB) gene sets | ||
used with the 'Gene Set Enrichment Analysis' (GSEA) software (Subramanian et | ||
al. 2005 <doi:10.1073/pnas.0506580102>, Liberzon et al. 2015 | ||
<doi:10.1016/j.cels.2015.12.004>) for various frequently studied model | ||
organisms in a standard R data frame with key-value pairs. | ||
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
URL: https://github.com/igordot/msigdbr | ||
BugReports: https://github.com/igordot/msigdbr/issues | ||
LazyData: true | ||
Depends: | ||
R (>= 3.2.0), | ||
|
@@ -18,7 +20,8 @@ Depends: | |
Imports: | ||
magrittr, | ||
rlang | ||
Suggests: testthat, | ||
Suggests: | ||
testthat, | ||
knitr, | ||
rmarkdown | ||
Roxygen: list(markdown = TRUE) | ||
|
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,2 +1,2 @@ | ||
YEAR: 2018 | ||
COPYRIGHT HOLDER: Your name goes here | ||
COPYRIGHT HOLDER: Igor Dolgalev |
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,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2018 | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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,4 @@ | ||
# msigdbr 6.1.1 | ||
|
||
* Based on MSigDB v6.1 release. | ||
* Initial CRAN submission. |
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 was deleted.
Oops, something went wrong.
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,12 @@ | ||
#' Pipe operator | ||
#' | ||
#' See \code{magrittr::\link[magrittr]{\%>\%}} for details. | ||
#' | ||
#' @name %>% | ||
#' @rdname pipe | ||
#' @keywords internal | ||
#' @export | ||
#' @importFrom magrittr %>% | ||
#' @importFrom rlang .data | ||
#' @usage lhs \%>\% rhs | ||
NULL |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.