View source: R/get_zscore_profile.R
get_zscore_profile | R Documentation |
Transform SLRatio with PoN Fragment profile
get_zscore_profile(fragment_profile, pon_profile)
fragment_profile |
Sample Profile |
pon_profile |
PoN Profiles |
Dataframe of robust transformed SLratio
### Loading example SampleBam file
example_file <- system.file("extdata","example_patientcfDNA_SampleBam.RDS",package = "cfdnakit")
sample_bambin <- readRDS(example_file)
### Example PoN
PoN_rdsfile <- system.file("extdata","ex.PoN.rds",package = "cfdnakit")
pon_profiles <- readRDS(PoN_rdsfile)
sample_profile <- get_fragment_profile(sample_bambin,sample_id = "Patient1")
sample_zscore <- get_zscore_profile(sample_profile,pon_profiles)
sample_zscore_segment <- segmentByPSCB(sample_zscore)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.