View source: R/get_assemblies.R
| get_assemblies | R Documentation |
This functions retrieves details about the assembly of a queried species.
get_assemblies(
species_name = "homo_sapiens",
verbose = FALSE,
warnings = TRUE,
progress_bar = TRUE
)
species_name |
The species name, i.e., the scientific name, all letters
lowercase and space replaced by underscore. Examples: |
verbose |
Whether to be chatty. |
warnings |
Whether to print warnings. |
progress_bar |
Whether to show a progress bar. |
A tibble, each row being a toplevel sequence,
of 4 variables:
species_nameEnsembl species name: this is the name used internally
by Ensembl to uniquely identify a species by name. It is the scientific
name but formatted without capitalisation and spacing converted with an
underscore, e.g., 'homo_sapiens'.
assembly_nameAssembly name.
assembly_dateAssembly date.
genebuild_methodAnnotation method.
golden_path_lengthGolden path length.
genebuild_initial_release_dateGenebuild release date.
default_coord_system_versionDefault coordinate system version.
assembly_accessionAssembly accession.
genebuild_start_dateGenebuild start date.
genebuild_last_geneset_updateGenebuild last geneset update.
# Get details about the human assembly
get_assemblies()
# Get details about the Mouse and the Fruit Fly genomes
get_assemblies(c('mus_musculus', 'drosophila_melanogaster'))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.