create_PoN | R Documentation |
Create Panel-of-Normal (PoN) object
create_PoN(list_rdsfiles)
list_rdsfiles |
Character; a file contains paths to Profile.Rdata per line |
Null
healthy.1 <- system.file("extdata","ex.healthy1.rds",package = "cfdnakit")
healthy.2 <- system.file("extdata","ex.healthy2.rds",package = "cfdnakit")
path_to_PoN_txt <- paste0(system.file("extdata",package = "cfdnakit"),"/temp.reference_healthy.listfile")
fileConn<-file(path_to_PoN_txt)
writeLines(c(healthy.1,healthy.2), fileConn)
close(fileConn)
PoN.profiles <- create_PoN(path_to_PoN_txt)
file.remove(path_to_PoN_txt)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.