View source: R/report_orthologs.R
report_orthologs | R Documentation |
Identify the number of orthologous genes between two species.
report_orthologs(
target_species = "mouse",
reference_species = "human",
standardise_genes = FALSE,
method_all_genes = c("homologene", "gprofiler", "babelgene"),
method_convert_orthologs = method_all_genes,
drop_nonorths = TRUE,
non121_strategy = "drop_both_species",
round_digits = 2,
return_report = TRUE,
ref_genes = NULL,
mc.cores = 1,
verbose = TRUE,
...
)
target_species |
Target species. |
reference_species |
Reference species. |
standardise_genes |
If |
method_all_genes |
R package to to use in all_genes step:
|
method_convert_orthologs |
R package to to use in convert_orthologs step:
|
drop_nonorths |
Drop genes that don't have an ortholog
in the |
non121_strategy |
How to handle genes that don't have
1:1 mappings between
|
round_digits |
Number of digits to round to when printing percentages. |
return_report |
Return just the ortholog mapping
between two species ( |
ref_genes |
A table of all genes for the |
mc.cores |
Number of cores to parallelise each
|
verbose |
Print messages. |
... |
Arguments passed on to
|
A list containing:
map : A table of inter-species gene mappings.
report : A list of aggregate orthology report statistics.
If >1 target_species
are provided, then a table of
aggregated report
statistics concatenated across species
will be returned instead.
orth_fly <- report_orthologs(
target_species = "fly",
reference_species = "human")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.