print_gene_info | R Documentation |
Prints human readable summary texts of genes in the console.
print_gene_info(
genes,
use_synonyms = TRUE,
ignore_case = TRUE,
check = TRUE,
warn = TRUE,
...
)
genes |
Character vector of gene names. |
use_synonyms |
Logical value. If |
ignore_case |
Logical value. If |
check |
Logical value. If |
warn |
Logical. If |
... |
Additional arguments given to |
See documentation for ?gene_info_df
to read about how the source
data.frame has been generated.
Invisible TRUE
. Texts are immediately printed using base::writeLines()
.
# genes are checked for validity by default
print_gene_info(genes = c("GFAP", "MAG", "OLIG1", "XYZ"))
# set check = FALSE to drop unknown genes silently
print_gene_info(genes = c("GFAP", "MAG", "OLIG1", "XYZ"), check = FALSE)
# use arguments of filter_genes()
print_gene_info(c("KCNH2", "NRROS"))
print_gene_info(c("KCNH2", "NRROS"), catchphrase = "development")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.