Learn R Programming

gap (version 1.5-1)

circos.mhtplot2: Another circos Manhattan plot

Description

This is adapted from work for a recent publication. It enables a y-axis to the -log10(P) for association statistics

Usage

circos.mhtplot2(dat, labs, species = "hg18", ticks = 0:3 * 10, y = 20)

Value

There is no return value but a plot.

Arguments

dat

Data to be plotted with variables chr, pos, log10p.

labs

Data on labels.

species

Genome build.

ticks

Tick positions.

y

Starting position of y-axis label.

Examples

Run this code
if (FALSE) {
require(gap.datasets)
library(dplyr)
glist <- c("IRS1","SPRY2","FTO","GRIK3","SNED1","HTR1A","MARCH3","WISP3",
           "PPP1R3B","RP1L1","FDFT1","SLC39A14","GFRA1","MC4R")
testdat <- mhtdata[c("chr","pos","p","gene","start","end")] %>%
           rename(log10p=p) %>%
           mutate(chr=paste0("chr",chr),log10p=-log10(log10p))
dat <- mutate(testdat,start=pos,end=pos) %>%
       select(chr,start,end,log10p)
labs <- subset(testdat,gene %in% glist) %>%
        group_by(gene,chr,start,end) %>%
        summarize() %>%
        mutate(cols="blue") %>%
        select(chr,start,end,gene,cols)
circos.mhtplot2(dat,labs,ticks=0:2*10)
# https://www.rapidtables.com/web/color/RGB_Color.html
}

Run the code above in your browser using DataLab