-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
28 changed files
with
280 additions
and
106 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,10 +1,12 @@ | ||
# Getting help | ||
|
||
Thank you for using `{mgi.report.reader}`! | ||
|
||
- If you have a GitHub account, please | ||
[file an issue](https://github.com/patterninstitute/mgi.report.reader/issues/new) | ||
with your question or bug report. | ||
|
||
- If you do not have a GitHub account, you can contact the maintainer of this | ||
- If you do not have a GitHub account, you can contact Ramiro Magno, the maintainer of this | ||
package at <[email protected]>. | ||
|
||
- If your question pertains more directly to data obtained from the Mouse Genomics Informatics (MGI), | ||
|
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: mgi.report.reader | ||
Title: Read Mouse Genome Informatics Reports | ||
Version: 0.0.9.9000 | ||
Version: 0.0.9.9100 | ||
Authors@R: c( | ||
person("Ramiro", "Magno", , "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0001-5226-3441")), | ||
|
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
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,20 +1,36 @@ | ||
#' Genome Feature Types | ||
#' Genome Feature Type Definitions | ||
#' | ||
#' A dataset containing different types of gene and genome features along with | ||
#' their Sequence Ontology (SO) identifiers and definitions. | ||
#' | ||
#' @format A [tibble][tibble::tibble-package] with `r nrow(feature_types)` rows | ||
#' and `r ncol(feature_types)` variables: | ||
#' @format A [tibble][tibble::tibble-package] with `r nrow(feature_type_definitions)` rows | ||
#' and `r ncol(feature_type_definitions)` variables: | ||
#' \describe{ | ||
#' \item{feature_type}{Character. The type of gene or genome feature.} | ||
#' \item{so_id}{Character. The Sequence Ontology identifier associated with the feature type.} | ||
#' \item{definition}{Character. The definition of the feature type.} | ||
#' } | ||
#' | ||
#' @examples | ||
#' print(feature_types, n = Inf) | ||
#' print(feature_type_definitions, n = Inf) | ||
#' | ||
#' @source | ||
#' The table in \url{https://www.informatics.jax.org/userhelp/GENE_feature_types_help.shtml} | ||
#' and a few other terms found in MGI reports. | ||
"feature_types" | ||
"feature_type_definitions" | ||
|
||
|
||
#' Genome Feature types | ||
#' | ||
#' [feature_types()] returns different types of gene and genome features. For | ||
#' feature type definitions, see `?feature_type_definitions`. | ||
#' | ||
#' @returns A character vector of feature types' names. | ||
#' | ||
#' @examples | ||
#' feature_types() | ||
#' | ||
#' @export | ||
feature_types <- function() { | ||
feature_type_definitions$feature_type | ||
} |
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
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
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
Binary file not shown.
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
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
File renamed without changes.
Binary file not shown.
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.