Returns correlation between ChIP-seq signal of two samples. Useful to check replicates or compare different samples.
signal_track_correlation(signal_data_A, signal_data_B, genome, method = "pearson")
signal_data_A | Input signal track data as a |
---|---|
signal_data_B | Second samples' signal track data in the same format as
|
genome | Character object specifying the genome version; accepts one of the following options:
No default. |
method | Character object specifying which correlation coefficient is to
be computed. Will be the input to the
Defaults to |
A floating point value corresponding to the signal correlation.
# NOT RUN { signal_track_correlation(WT, dot1, genome = "SK1Yue") signal_track_correlation(WT_A, WT_B, genome = "sacCer3", method="spearman") # }