Skip to content

Commit

Permalink
version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Thorhildur Juliusdottir authored and cran-robot committed Aug 19, 2022
1 parent bc78911 commit 783baa9
Show file tree
Hide file tree
Showing 10 changed files with 106 additions and 16 deletions.
10 changes: 5 additions & 5 deletions DESCRIPTION
@@ -1,26 +1,26 @@
Package: toprdata
Title: Gene and Exon Data from Ensembl
Version: 1.0.0
Version: 1.0.1
Authors@R: c(
person("Genuity", "Science", role = "cph", email = "thorhildur@genuitysci.com"),
person("Thorhildur", "Juliusdottir", role = c("aut", "cre"),email = "thorhildur@genuitysci.com"),
person("Andri", "Stefansson", role = "aut", email = "andri@genuitysci.com")
)
Description: Gene and exon information from Ensembl (build GRCh38.p13) to use with the topr package.
Description: Gene and exon information from Ensembl genome builds GRCh38.p13 (104) and GRCh37 (v40) to use with the 'topr' package.
License: LGPL (>= 3)
Encoding: UTF-8
LazyData: true
LazyDataCompression: xz
RoxygenNote: 7.1.2
RoxygenNote: 7.2.0
Suggests: testthat (>= 3.0.0), knitr, rmarkdown, markdown
Config/testthat/edition: 3
Imports:
Depends: R (>= 3.5.0)
NeedsCompilation: no
Packaged: 2022-01-07 18:28:24 UTC; thorhildur
Packaged: 2022-08-19 13:12:35 UTC; thorhildur
Author: Genuity Science [cph],
Thorhildur Juliusdottir [aut, cre],
Andri Stefansson [aut]
Maintainer: Thorhildur Juliusdottir <thorhildur@genuitysci.com>
Repository: CRAN
Date/Publication: 2022-01-10 10:40:02 UTC
Date/Publication: 2022-08-19 13:40:02 UTC
14 changes: 9 additions & 5 deletions MD5
@@ -1,10 +1,14 @@
af3e1c9ea4c23587586d1239265feaa3 *DESCRIPTION
72915b5e421a5bf82922616719449d24 *DESCRIPTION
dc21c19f0d6968ee25d441b2cf46017d *NAMESPACE
a2b03d6abe02b0f6d4e3df468d09f11c *NEWS.md
51bf89d39eec3fcd28ba28e8e7fc178d *R/data.R
439627db59c0f7fe26eb175812b3c9e8 *R/toprdata.R
27de19970ae05b22b5b4f6ba3208de29 *NEWS.md
c55ac7e916a0ba72ebccd8ca87032146 *R/data.R
24dcefaeee7cb781eded041183cf5208 *R/toprdata.R
5b48700a4727930888ec284764a056a4 *data/ENSEXONS.rda
ed7949f10b6619857a733efe40f9b024 *data/ENSEXONS_37.rda
f82238a6b7c2f8436b97b216f1b749ed *data/ENSGENES.rda
5252a48dff176084a97634c7621ac2ec *data/ENSGENES_37.rda
2120cd03c04db48a7e2c33ab2b389362 *man/ENSEXONS.Rd
093d0ef8c33dd37f33b25e57fc41750a *man/ENSEXONS_37.Rd
6dd44b6aa32491b585052b301cb6df53 *man/ENSGENES.Rd
7da6b0c0c3f2291516b32590d14b9502 *man/toprdata.Rd
5a68aab852111f8ae1b108b12d1c19a4 *man/ENSGENES_37.Rd
f733725a4ab305f6b7328c21f95e08bf *man/toprdata.Rd
3 changes: 3 additions & 0 deletions NEWS.md
@@ -1,3 +1,6 @@
# 1.0.1
* Genome build GRCh37 (v40) from gencode included

# 1.0.0

* First version submitted to CRAN
Expand Down
32 changes: 32 additions & 0 deletions R/data.R
Expand Up @@ -31,3 +31,35 @@
#' \item{exon_chromend}{genetic position of exon end}
#' }
"ENSEXONS"

#' Ensembl genes build HG37 (GRCh37) v40 from gencode
#'
#' genes on chrY and chrM were excluded
#'
#' @format A data frame with 62,743 rows and 5 variables:
#' \describe{
#' \item{chrom}{Chromosome on build version 38 (GRCh38/hg38)}
#' \item{gene_start}{genetic position of gene start on build version 38}
#' \item{gene_end}{genetic position of gene end on build version 38 }
#' \item{gene_symbol}{The name of the gene}
#' \item{biotype}{the biotype of the gene}
#' }
"ENSGENES_37"


#' Ensembl exons build HG37 (GRCh37) v40 from gencode
#'
#' exons on chrY and chrM were excluded from the exon dataset
#'
#' @format A data frame with 62,739 rows and 7 variables:
#' \describe{
#' \item{chrom}{Chromosome on build version 38 (GRCh38/hg38)}
#' \item{gene_start}{genetic position of gene start on build version 38}
#' \item{gene_end}{genetic position of gene end on build version 38 }
#' \item{gene_symbol}{The name of the gene}
#' \item{exon_chromstart}{genetic positions of exon start}
#' \item{exon_chromend}{genetic position of exon end}
#' }
"ENSEXONS_37"


8 changes: 5 additions & 3 deletions R/toprdata.R
@@ -1,12 +1,14 @@
#' toprdata
#'
#' @description Gene and exon datasets to use with the topr package
#' @description Gene and exon datasets to use with the 'topr' package
#' @docType package
#' @name toprdata
#' @section datasets:
#' The two datasets are:
#' * \code{\link{ENSGENES}} Gene information
#' * \code{\link{ENSEXONS}} Exon informatino
#' * \code{\link{ENSGENES}} Gene information from genome build GRCh38
#' * \code{\link{ENSEXONS}} Exon information from genome build GRCh38
#' * \code{\link{ENSGENES_37}} Gene information from genome build GRCh37
#' * \code{\link{ENSEXONS_37}} Exon information from genome build GRCh37
#' @examples
#' library(toprdata)
#' head(ENSGENES)
Expand Down
Binary file added data/ENSEXONS_37.rda
Binary file not shown.
Binary file added data/ENSGENES_37.rda
Binary file not shown.
24 changes: 24 additions & 0 deletions man/ENSEXONS_37.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions man/ENSGENES_37.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions man/toprdata.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 783baa9

Please sign in to comment.