Title: | GEISHA Expression Data |
---|---|
Description: | GEISHA expression data. These data are obtained from GEISHA <http://geisha.arizona.edu/geisha/downloads.jsp/>. |
Authors: | Ramiro Magno [aut, cre] |
Maintainer: | Ramiro Magno <[email protected]> |
License: | MIT + file LICENSE |
Version: | 0.1.0 |
Built: | 2024-11-21 02:48:41 UTC |
Source: | https://github.com/ramiromagno/geisha |
This dataset contains NCBI Gene ID, NCBI Gene Name, GEISHA ID, Ensembl ID, GO terms, embryo stages and tissue locations.
expression_txt
expression_txt
A tibble
of 7 variables (columns):
ncbi_gene_id
NCBI gene identifier.
ensembl_gene_id
Ensembl gene identifier.
gene_name
NCBI gene name.
stages
Hamilton-Hamburger stages.
locations
Anatomical location.
geisha_id
GEISHA identifier.
gene_ontology_id
Gene ontology identifier.
Data set generation workflow can be found at the source of this package in
data-raw/data.R
.
Original dataset from: http://geisha.arizona.edu/geisha/expression.txt.
This dataset contains NCBI Gene ID, NCBI Gene Name, GEISHA ID, embryo stages and tissue locations.
expression_xml
expression_xml
A tibble
of 5 variables (columns):
ncbi_gene_id
NCBI gene identifier.
gene_name
NCBI gene name.
geisha_id
GEISHA identifier.
stage
Hamilton-Hamburger stages.
location
Anatomical location.
Data set generation workflow can be found at the source of this package in
data-raw/data.R
.
Original dataset from: http://geisha.arizona.edu/geisha/expression.xml.
This function will scrape on-the-fly GEISHA's downloads page and retrieve the date of last update of the to-be-downloaded files.
get_dates_of_last_update(files = download_files())
get_dates_of_last_update(files = download_files())
files |
file names to whose update date is to be checked in the downloads page. |
Returns a tibble with one file per row.
This function retrieves those files available for download from the
downloads' page of the GEISHA website. These files are saved to
data-raw/
are meant to be used only by the package developer.
get_files(files = download_files())
get_files(files = download_files())
files |
The name of the files to be downloaded. This parameter is set by default to download all available files. |
This function returns a character vector of Hamilton-Hamburguer (HH) stages.
hh_stages(hh_prefix = FALSE)
hh_stages(hh_prefix = FALSE)
hh_prefix |
A logical indicating whether to include the prefix
|
A character vector of Hamilton-Hamburguer (HH) stages.
Date of last update of download files
last_updates
last_updates
A tibble
of 2 variables:
file
File name.
date
Date of last update by GEISHA.
This function reads data-raw/expression.txt
as a tibble. This function
is meant to be used only by the developer of this package.
read_expression_txt()
read_expression_txt()
Returns a tibble with the data present in expression.txt
.
This function reads data-raw/expression.xml
as a tibble. This function
is meant to be used only by the developer of this package.
read_expression_xml()
read_expression_xml()
Returns a tibble with (part of) the data present in expression.xml
.