Description Usage Arguments Value Examples
Generate circos plots from overlap data output
1 2 3 4 |
datatable |
The GRanges datatable generated by overlap function |
plot.subset |
Allows for plotting interactions with Hi-C scores only. Set to TRUE if no RNAseq or gene expression file was used to generate the overlap output. |
display.legend |
Adds legend to circos plot |
hic.legend |
Title for Hi-C legend |
hic.range |
A vector representing the low and high values for the legend of Hi-C values |
rna.legend |
Title for RNA legend |
rna.range |
A vector representing the low and high values for the legend of RNA values |
circos.color |
Passes colors to chord diagram for each group |
... |
Addtional arguments passed to chordDiagram function |
Generates a chord diagram containing circluar tracks with an inner track displaying average Hi-C interaction score and an inner track with displaying average RNA-seq log(FPKM) values for each segment in the plot
1 2 3 4 5 6 7 8 9 | hic_chr20 <- system.file("extdata", "hic_chr20.txt", package = "HiCAGE")
segment_chr20 <- system.file("extdata", "segment_chr20.bed",
package = "HiCAGE")
rna_chr20 <- system.file("extdata", "rna_chr20.tsv", package = "HiCAGE")
example <- overlap(hicfile = hic_chr20,
segmentfile = segment_chr20,
rnafile = rna_chr20,
rna.columns = c(1, 7))
circleplot(example)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.