Easy Copy Number !
EaCoN aims to be an all-packed in, user-friendly solution to perform relative or absolute copy-number analysis for multiple sources of data. It consists in a series of R packages that perform such type of analysis, from raw CEL files of Affymetrix microarrays (GenomeWide snp6, OncoScan, CytoScan 750K, CytoScan HD) or from aligned reads as BAMs for WES (whole exome sequencing).
- Now EaCoN supports SEQUENZA segmenter and copy number estimator ! This makes 3 different segmenters available for quick. Sequenza uses the same segmentation algorithm than ASCAT, (PCF : piecewise constant curve fitting), but the two have different implementations of it (sequenza relies on the copynumber package, ASCAT has its own implementation built-in), so expect similar but not identical results !
- Few bugs solved.
- Now EaCoN supports FACETS segmenter and copy number estimator ! This segmenter extends the famous CBS (Circular Binary Segmentation) algorithm by making it compatible with bi-variate segmentation using both the L2R and BAF signals.
- Few bugs solved.
- Full R (no OS-, language-, nor shell-specific dependencies)
- Platform-independent (ie, the three most common ones : Linux, Windows and OSX)
- Support of multiple sources of data :
- Affymetrix (homo sapiens)
- Genomide SNP6
- CytoScan 750k
- CytoScan HD
- OncoScan / OncoScan_CNV
- WES (any species)
- Any design for which a capture BED and known genome are available
- Affymetrix (homo sapiens)
- Full workflow analysis, from the raw data to an annotated HTML report :
- L2R and BAF normalization from raw data using
- Affymetrix Power Tools (binaries, embedded) for Affymetrix arrays and the rawcopy BAF normalization methods for CytoScan and SNP6 arrays
- internal methods for WES data
- L2R and BAF bivariate segmentation using ASCAT (recommended), FACETS or SEQUENZA
- L2R profile centralization
- L2R profile CNA calling
- Generation of results as tables and plots
- Generation of a portable and interactive HTML report
- Total (TCN) and allele-specific copy number (ASCN), ploidy and cellularity estimations using ASCAT (recommended), FACETS or SEQUENZA
- L2R and BAF normalization from raw data using
- Required annotations for Affymetrix data provided (via additional packages)
- Pre-computed normalization (GC%, wave) tracks provided (either)
- Few functions to call
- Few parameters
- Recommended guidelines provided for supported microarray designs, as well as for WES
While the current EaCoN package is the core of the process, multiple others are needed, depending on the type of the source (WES, Affymetrix microarray design) and corresponding annotations (genome build, Affymetrix annotation databases). Others are required for the normalization, especially pre-computed GC% tracks.
- R > 3.0
- Public R dependencies :
- @ CRAN :
- bedr to handle capture bed
- data.table for tab-files / tables / blocks processing
- devtools to install ASCAT
- dplyr for tables / blocks processing
- doParallel for multithreading
- DT to generate nice tables in the HTML report
- foreach for loops & multithreading
- iotools for fast TSV writings
- matrixStats for column-wise statistics computing
- mclust for BAF regions clustering
- rmarkdown to generate the HTML report
- sequenza to perform the L2R & BAF bivariate segmentation, and absolute and allele-specific copy number estimation
- @ BioConductor :
- affxparser to read CEL files
- aroma.light to perform optional BAF TumorBoost normalization
- BSgenome to handle the reference genome and its sequences
- BSgenome.Hsapiens.UCSC.hg19 as default genome
- changepoint to perform small events rescue segmentation using PELT
- copynumber to perform PCF segmentation
- GenomeInfoDb to use genome annotations
- GenomicRanges to handle genomic intervals
- limma to perform lowess normalization
- rhdf5 to read HDF5 file format
- Rsamtools to compute counts and variants from BAM files
- @ GitHub
- @ CRAN :
- Elements of the EaCoN workflow :
- @ GitHub :
- apt.cytoscan.2.4.0 to perform the normalization of CytoScan (750k, HD) arrays using Affymetrix Power Tools
- apt.oncoscan.2.4.0 to perform the normalization of OncoScan / OncoScan_CNV arrays using Affymetrix Power Tools
- apt.snp6.1.20.0 to perform the normalization of GenomeWide SNP6 arrays using Affymetrix Power Tools
- @ Google Drive : Containing numerous data, these packages could not fit on GitHub
- Affymetrix design annotations :
- CytoScanHD.Array.na33.r4 Affymetrix design annotations for the CytoScan HD array (build na33.r4 / hg19)
- CytoScanHD.Array.na36.r1 Affymetrix design annotations for the CytoScan HD array (build na36.r1 / hg38)
- CytoScan750K.Array.na33.r4 Affymetrix design annotations for the CytoScan 750K array (build na33.r4 / hg19)
- CytoScan750K.Array.na36.r1 Affymetrix design annotations for the CytoScan 750K array (build na36.r1 / hg38)
- OncoScan.na33.r4 Affymetrix design annotations for the OncoScan array (build na33.r4 / hg19)
- OncoScan.na36.r1 Affymetrix design annotations for the OncoScan array (build na36.r1 / hg38)
- OncoScanCNV.na33.r2 Affymetrix design annotations for the OncoScan_CNV array (build na33.r2 / hg19)
- OncoScanCNV.na36.r1 Affymetrix design annotations for the OncoScan_CNV array (build na36.r1 / hg38)
- GenomeWideSNP.6.na35.r1 Affymetrix design annotations for the GenomeWide_SNP.6 array (build na35.r1 / hg19)
- Re-normalization :
- GC% & wave-effect normalization :
- affy.CN.norm.data Pre-computed tracks for all supported Affmetrix designs (both hg19 and hg38)
- rcnorm Code and tracks to re-normalize BAF for the CytoScan family of designs and SNP6, using rawcopy
- chromosomes to provide the structure of chromsomes for homo sapiens (hg17 to hg38), mus musculus (mm7 to mm10) and rattus norvegicus (rn5 to rn6)
- GC% & wave-effect normalization :
- Affymetrix design annotations :
- @ GitHub :
- Raw data :
- For Affymetrix microarrays : the CEL files, fresh out of the Affymetrix Scanner
- For WES data :
- The aligned reads of the test and reference samples, in two different BAM files
- The capture BED file (the file containing the genomic regions targeted by the exome capture kit used in the wet experiment)
The full workflow is decomposed in a few different functions, which roughly correspond to these steps :
normalization -> segmentation |-> reporting |-> copy-number estimation
EaCoN allows different ways to perform the full workflow : considering the analysis of a single sample, you can either perform each step independently and write, then load the intermediate results, or you can pipe all steps in a single line of code. You can also perform the step-by-step approach on multiple samples in a row, even possibly at the same time using multithreading, using a batch mode.
- First, under R, load EaCoN and choose a directory in which results will be written, by exemple : /home/project/EaCoN_results
require(EaCoN)
setwd("/home/project/EaCoN_results")
- Let's say we have a pair of OncoScan_CNV CEL files to analyse in a /home/project/CEL/ directory (Affymetrix OncoScan experiments have 2 arrays for a single experiment, thus a pair) :
OS.Process(ATChannelCel = "/home/project/CEL/S1_OncoScan_CNV_A.CEL", GCChannelCel = "/home/project/CEL/S1_OncoScan_CNV_C.CEL", samplename = "S1_OS")
- This will perform the normalization step, create a /home/project/EaCoN_results/S1_OS/ subdirectory and write 5 files in it :
- S1_OS_OncoScan_CNV_hg19_processed.RDS : contains the normalized data which will be provided to the next step
- S1_OS_OncoScan_CNV_hg19_rawplot.png : shows a graphical representation of the normalized L2R and BAF data
- S1_OS_2.4.0_na33.r2.paircheck.txt : gives some statistics to evaluate the probability that the two "A" "C" CEL files effectively belong to the same individual (generated by APT)
- S1_OS_2.4.0_na33.r2.qc.txt : some quality metrics of the arrays and profiles (generated by APT)
- S1_OS_2.4.0_na33.r2.log : a simple log file (generated by APT)
- This is identical to OncoScan, except that we have a single CEL file, and we just have to change the function name :
CS.Process(CEL = "/home/project/CEL/S2_CytoScanHD.CEL", samplename = "S2_CSHD")
- The same output files will be generated (except for the "paircheck" file, obviously)
- Here again, this is identical to OncoScan, except that we have a single CEL file, and we just have to change the function name :
SNP6.Process(CEL = "/home/project/CEL/S3_GenomeWide_snp.6.CEL", samplename = "S3_SNP6")
- Again, the same output files will be generated (except for the "paircheck" file, obviously)
- This time it is quite different : the processing will be performed in three steps :
- First, we will use the capture BED (A text file containing the positions of the captured regions, usualy provided by the capture kit manufacturer), choose a genome version corresponding to our aligned BAM files, and choose a window size for the future binning of the data. Thses will be used to generate what we call a "BINpack", a set of pre-computed tracks containing the bins position and corresponding GC% values. Several tracks will be computed corresponding to different levels of elongation of the bin positions. In the example below, we used the BED corresponding to Agilent SureSelect v5 capture kit, a bin size of 50 nt, and chose the human hg19 genome build.
BINpack.Maker(bed.file = "/home/project/WES/SureSelect_v5.bed", bin.size = 50, genome.pkg =
"BSgenome.Hsapiens.UCSC.hg19")
-
This will generate a "BINpack" (with a ".rda" extension) that will be used in the next normalization steps : /home/project/EaCoN_results/SureSelect_v5_merged_sorted_hg19_b50.GC.rda
-
PLEASE NOTE THAT THIS STEP IS SAMPLE-INDEPENDENT, THUS NEEDS TO BE PERFORMED AGAIN ONLY IF YOU CHANGE EITHER THE CAPTURE BED, THE BIN SIZE OR THE GENOME BUILD. Thus, the generated BINpack can be used for any other sample in the same conditions.
-
Second, the WES data will be binned using the generated BINpack. We need three files as input :
- The aligned reads for the test sample (usualy in cancer, the patient tumor), in BAM format
- The aligned reads for the reference sample (patient normal), in BAM format too
- The BINpack itself
WES.Bin(testBAM = "/home/project/WES/S4_WES_hg19_Tumor.BAM", refBAM = "/home/project/WES/S4_WES_hg19_Tumor.BAM", BINpack = "/home/project/EaCoN_results/SureSelect_v5_merged_sorted_hg19_b50.GC.rda", samplename = "S4_WES")
-
This will generate a /home/project/EaCoN_results/S4_WES/ subdirectory which contains :
- S4_WES_hg19_b50_binned.RDS : contains the binned data which will be provided to the next step
- S4_WES_hg19_b50_coverage.png : shows a graphical representation of the proportion of the capture bed regions covered at different coverage levels
- S4_WES_hg19_b50_coverage.txt : contins the numerical values corresponding to the coverage plot
-
Third, now that the data have been binned, the normalization step can be performed :
WES.Normalize.ff(BIN.RDS.file = "/home/project/EaCoN_results/S4_WES/S4_WES_hg19_b50_binned.RDS", BINpack = "/home/project/EaCoN_results/SureSelect_v5_merged_sorted_hg19_b50.GC.rda")
- Analogously to what was described for Affymetrix microarrays, a /home/project/EaCoN_results/S4_WES/ASCAT/L2R/ subdirectory will be created, containing the same type of files described earlierly.
- Now that we described the normalization process specific to each type of source data, we can segment it. The good news is that it's the very same step for each source type, one just have to pass the _processed.RDS normalized file. Here is an example with the one obtained for OncoScan data, using the ASCAT segmenter :
Segment.ff(RDS.file = "/home/me/my_project/EaCoN_results/SAMPLE1/SAMPLE1_OncoScan_CNV_hg19_processed.RDS", segmenter = "ASCAT")
-
This will perform the segmentation, centralization and calling steps, create a /home/project/EaCoN_results/S1/ASCAT/L2R/ subdirectory and write multiple files in it :
- S1.EaCoN.ASPCF.RDS : contains the segmented data which will be provided to the optional next step(s)
- S1.ASPCF.png : shows a graphical representation of the segmented, centered and called L2R and BAF data
- S1.Rorschach.png : shows a graphical representation of BAF vs L2R of probes, by chromosome
- S1.Cut.cbs : contains the L2R segmentation results in the standard CBS format. "Cut" means that L2R value for the segments called as normal were set to a value of 0.0
- S1.NoCut.cbs : Same as above, but the segments considered as normal have their L2R value intact
- S1.SegmentedBAF.txt : contains the BAF segmentation results
-
To perform the same using the FACETS segmenter, just change the value of the segmenter parameter !
-
I suppose you guessed how to do the same with SEQUENZA, right ? ;)
- Then an estimation of the total and allele-specific copy-number profiles, as well as global ploidy and sample cellularity can be estimated. Here is an example using the ASCAT ASCN estimation, from a RDS generated by the Segment.ASCAT() function :
ASCN.ff(RDS.file = "/home/me/my_project/EaCoN_results/SAMPLE1/ASCAT/L2R/SAMPLE1.ASCAT.RDS")
-
This will perform these estimations for a range of values (default os 0.35 to 0.95, with a step of 0.05) of the "gamma" parameters (see more details in the ASCAT R package help pages), create a /home/project/EaCoN_results/S1/ASCAT/ASCN/ subdirectory, in which other subdirectories will be created, one for each gamma value /home/project/EaCoN_results/S1/ASCAT/ASCN/gamma_0.xx/. In each of those will be written :
- S1_ascat.ASCN.RDS : contains the TCN and ASCN segmentations, and cellularity and ploidy data
- S1_ASCATprofile.png : shows a graphical representation of the final segmented TCN and ASCN profiles
- S1_rawprofile.png : shows a graphical representation of the raw (uncorrected) segmented TCN and ASCN profiles
- S1_Rorschach.clown.png : shows a graphical representation of BAF vs L2R of probes, by chromosome, with a coloration corresponding to CN levels.
- S1_TCNvsL2R.png : shows a graphical representation of the comparison of the TCN and L2R values of each segment, clustered by TCN level. This is usefull to identify some mistakes in the TCN modelization.
- S1_gamma0.xx.cn : contains the TCN and ASCN segmentation results in a non-standard format derived the CBS format
- S1_gamma0.xx_model.txt : Contains the ploidy, cellularity and model statistics
-
To perform the same using the FACETS or SEQUENZA estimator, just use a RDS generated with Segment.FACETS() or Segment.SEQUENZA(), respectively (or their ".ff" equivalent).
- Endly, an annotated HTML report can be rendered with :
Annotate.ff(RDS.file = "/home/project/EaCoN_results/S1/ASCAT/L2R/S1.EaCoN.ASPCF.RDS", author.name = "Me!")
- This will write the HTML report in /home/project/EaCoN_results/S1/ASCAT/L2R/.
All the steps described above in single sample mode can be run in batch mode, that is for multiple samples, even possibly with multithreading to process multiple at the same time. It simply consists into using different function with the same name but an added ".Batch" suffix. Those are just wrappers to the single-sample version of these.
The OS.Process.Batch function replaces the ATChannelCel, GCChannelCel and samplename parameters by the pairs.file parameters, which consists in a tab-separated file with made of three columns with a header, and one sample per line :
- ATChannelCel : the path to the "A" OncoScan CEL file
- GCChannelCel : the path to the "C" OncoScan CEL file
- SampleName : the sample name to use
By default, the function will run all samples one by one, but multithreading can be set using the nthread parameter with a value greater than 1. Beware not setting a value higher than the current number of available threads on your machine ! Please also remember that each new thread will use its own amount of RAM...
Here is a synthetic example with 4 samples :
- The pairs.file (stored as /home/project/CEL/OS_pairs.txt) :
ATChannelCel | GCChannelCEL | SampleName |
---|---|---|
/home/project/CEL/S1_OncoScan_CNV_A.CEL | /home/project/CEL/S1_OncoScan_CNV_C.CEL | S1_OS |
/home/project/CEL/S5_OncoScan_CNV_A.CEL | /home/project/CEL/S5_OncoScan_CNV_C.CEL | S5_OS |
/home/project/CEL/S6_OncoScan_CNV_A.CEL | /home/project/CEL/S6_OncoScan_CNV_C.CEL | S6_OS |
/home/project/CEL/S7_OncoScan_CNV_A.CEL | /home/project/CEL/S7_OncoScan_CNV_C.CEL | S7_OS |
- The command line (using 2 threads)
OS.Process.Batch(pairs.file = "/home/project/CEL/OS_pairs.txt", nthread = 2)
Same principle, but this time we have one column less and header changes a bit :
- CEL : The path to the CEL file
- SampleName : the sample name to use
Here is a synthetic example with 4 samples :
- The CEL.list.file (stored as /home/project/CEL/CSHD_list.txt) :
CEL | SampleName |
---|---|
/home/project/CEL/S8_CytoScanHD.CEL | S8_CSHD |
/home/project/CEL/S9_CytoScanHD.CEL | S9_CSHD |
/home/project/CEL/S10_CytoScanHD.CEL | S10_CSHD |
/home/project/CEL/S11_CytoScanHD.CEL | S11_CSHD |
- The command line (using 2 threads)
CS.Process.Batch(pairs.file = "/home/project/CEL/CSHD_list.txt", nthread = 2)
Identical to CytoScan 750k / HD, but the function is named SNP6.Process.Batch.
Still the same principle with an external list file, with column names :
- testBAM : the path to the test BAM file
- refBAM : the path to the reference BAM file
- SampleName : the sample name to use
Here is a synthetic example with 4 samples :
- The BAM.list.file (stored as /home/project/WES/BAM_list.txt) :
testBAM | refBAM | SampleName |
---|---|---|
/home/project/WES/S4_WES_hg19_Tumor.BAM | /home/project/WES/S4_WES_hg19_Normal.BAM | S4_WES |
/home/project/WES/S12_WES_hg19_Tumor.BAM | /home/project/WES/S12_WES_hg19_Normal.BAM | S12_WES |
/home/project/WES/S13_WES_hg19_Tumor.BAM | /home/project/WES/S13_WES_hg19_Normal.BAM | S13_WES |
/home/project/WES/S14_WES_hg19_Tumor.BAM | /home/project/WES/S14_WES_hg19_Normal.BAM | S14_WES |
- The binning, then normalization command lines (using 2 threads)
WES.Bin.Batch(BAM.list.file = "/home/project/WES/BAM_list.txt", BINpack = "/home/project/EaCoN_results/SureSelect_v5_merged_sorted_hg19_b50.GC.rda", nthread = 2)
WES.Normalize.ff.Batch(BINpack = "/home/project/EaCoN_results/SureSelect_v5_merged_sorted_hg19_b50.GC.rda", nthread = 2)
You can notice that here we did not specify any RDS or list file to WES.Normalize.ff.Batch. This is because this fonction needs as its first argument BIN.RDS.files, a list of "_binned.RDS" files (generated at the former command line), and by default it will recursively search downwards the current working directory for any of these RDS files. You can of course design your own list of RDS files to process, if you know a bit of R.
As for the WES.Normalize.ff.Batch function, the Segment.ff.Batch function needs as its first argument RDS.files, a list of "_processed.RDS" files (generated at the raw data processing step). Likewise, it will by default recursively search downwards for any compatible RDS file.
Here is a synthetic example that will segment our CytoScan HD samples (as defined by the pattern below) using ASCAT :
Segment.ff.Batch(RDS.files = list.files(path = getwd(), pattern = ".*_processed.RDS$", full.names = TRUE, recursive = TRUE), segmenter = "ASCAT", smooth.k = 5, SER.pen = 20, nrf = 1.0, nthread = 2)
-
To perform the same using the FACETS segmenter, just change the value of the segmenter parameter, but please remember that FACETS will only work with WES data !
-
I suppose you guessed how to do the same with SEQUENZA, right ? ;)
Still the same, with the ASCN.ff.Batch :
ASCN.ff.Batch(RDS.files = list.files(path = getwd(), pattern = "SEG\\.ASCAT\\.RDS$", full.names = TRUE, recursive = TRUE), nthread = 2)
- To perform the same using results obtained using the FACETS or SEQUENZA segmenter, just edit the pattern argument with the name of corresponding segmenter.
And here again with the Annotate.ff.Batch :
Annotate.ff.Batch(RDS.files = list.files(path = getwd(), pattern = "SEG\\.ASCAT\\.RDS$", full.names = TRUE, recursive = TRUE), author.name = "Me!")
- To perform the same using results obtained using the FACETS or SEQUENZA segmenter, just edit the pattern argument with the name of corresponding segmenter.
EaCoN has been implemented in a way that one can also choose to launch the full workflow in a single command line for a single sample, using pipes from the magrittr package. However, this is not recommended as default use : even though EaCoN is provided with recommandations that should fit most case, the user may have to deal with particular profiles that would require parameter tweaking, which is not possible in piped mode... Here is an example using ASCAT :
samplename <- "SAMPLE1_OS"
workdir <- "/home/me/my_project/EaCoN_results"
setwd(workdir)
require(EaCoN)
require(magrittr)
OS.Process(ATChannelCel = "/home/me/my_project/CEL/SAMPLE1_OncoScan_CNV_A.CEL", GCChannelCel = "/home/me/my_project/CEL/SAMPLE1_OncoScan_CNV_C.CEL", samplename = samplename, return.data = TRUE) %>% Segment(out.dir = paste0(workdir, "/", samplename), segmenter = "ASCAT", return.data = TRUE) %T>% Annotate(out.dir = paste0(workdir, "/", samplename, "/ASCAT/L2R")) %>% ASCN.ASCAT(out.dir = paste0(workdir, "/", samplename))
- So, as you may have already noticed, most functions exist in EaCoN in three flavors :
- The "directly" named : that accept a R data object as first parameter, designed to be used in pipe mode.
- The ".ff" named : that require a file as first parameter, designed to be used in step-by-step mode.
- The ".ff.Batch" named : that require a list as first parameter, designed to be used in step-by-step mode, but running multiple samples for each step, possibly with multithreading.
- For each step, default values for each data source already correspond to recommendations. However, for the common segmentation step using the ASCAT segmenter, adaptation to the data source is recommended, by changing few parameters :
SOURCE | SER.pen | smooth.k | nrf | BAF.filter |
---|---|---|---|---|
OncoScan | 40 (default) |
NULL (default) |
0.5 (default) |
0.9 |
CytoScan HD | 20 |
5 |
1.0 |
0.75 (default) |
SNP6 | 60 |
5 |
0.25 |
0.75 (default) |
WES | 2 |
5 |
0.5 (default) |
0.75 (default) |
- The FACETS segmenter is dedicated to WES data.
- All the functions depicted above have other non-described parameters. As the above recommandations should do the trick in most case, they certainly won't fit all. To adjust parameters more finely, I suggest to refer to the R help pages for corresponding functions.
- Bastien Job ([email protected], [email protected]) : developer and maintainer
- Thibault Dayris ([email protected]) : tester, user