hs2mm <- function(gene=gene){
infile.s <- paste0("homologene.data_f.hs_mm")
infile <- system.file("extdata", infile.s, package="OmicPath");
dat <- read.table(infile);
gene.i <- which(dat[,2] %in% gene);
out <- dat[gene.i,];
return(out);
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.