View source: R/get_karyotypes.R
| get_karyotypes | R Documentation | 
This function retrieves the set of chromosomes of a species.
get_karyotypes(
  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 chromosome,
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'.
coord_systemCoordinate system type.
chromosomeChromosome name.
lengthGenomic length of the chromsome in base pairs.
# Get the karyotype of Caenorhabditis elegans
get_karyotypes('caenorhabditis_elegans')
# Get the karyotype of the Giant panda
get_karyotypes('ailuropoda_melanoleuca')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.