Tool:karyoploteR: uncircle your genomes
1
66
Entering edit mode
6.9 years ago
bernatgel ★ 3.4k

Hi all,

I'd like to present karyoploteR, an R/Bioconductor package we have developed to plot any data on any genome in non-circular layouts. The goal of this project was to develop a tool as flexible as Circos, but easier to use and representing genomes as straight lines instead of circles, and I think we are pretty close to that.

Links

Examples

Just a few examples of plots created with karyoploteR. More available in the Tutorials and Examples page.

enter image description here

Philosophy

The idea behind the package is to try to mimic as much as possible the R base graphics philosophy: create a basic (possibly empty) plot and add data iteratively using simple graphical primitives. The simple graphical primitives part is important. kpPoints, the karyoploteR function equivalent to points, knows nothing about your data, about any special consideration, about anything. It only plots a point where the user says. This has the benefit of making karyoploteR very flexible with regard to the original data. Oh, and the standard graphics parameters (col, border, pch, lwd, lty...) are all available and work as expected.

The inners

At the heart of karyoploteR, there's a coordinates change function mapping the genomic coordinates to the plotting coordinates. All plotting functions are implemented around it and end up calling the base R graphics functions (lines, points, rect...) with the transformed coordinates. This function is available to the end-user, so it's possible (and not difficult) for the end-user to implement additional plotting functions. However, most users will never need to see or care about this.

Show me some code

The main function a user needs to know is plotKaryotype, that will create a plot of the genome and return the karyoplot object needed by the other functions. Giving a set of chromosomes, it will restrict the plot to the selected chromosomes.

kp <- plotKaryotype()

Empty karyoplot

Then, using plotting functions such as kpPoints, kpLines, kpRect, kpSegments, kpText, kpAbline, kpPolygon, etc..., we can keep adding data to the plot.

library(karyoploteR)

x <- 1:23*10e6
y <- rnorm(23, 0.5, 0.1)

kp <- plotKaryotype(chromosomes="chr1")

kpPoints(kp, chr = "chr1", x=x, y=y)
kpText(kp, chr="chr1", x=x, y=y, labels=c(1:23), pos=3)
kpLines(kp, chr="chr1", x=x, y=y, col="#FFAADD")
kpArrows(kp, chr="chr1", x0=x, x1=x, y0=0, y1=y, col="#DDDDDD")

karyoplot with some data

There are additional plotting functions performing more involved computations prior to drawing: kpPlotDensity, that will compute the density of features on the genome and plot it and its sister kpPlotBAMDensity, to plot the density of reads in a BAM file; kpPlotMarkers, to position text labels on the genome (genes or any other feature) avoiding label overlapping; kpPlotLinks, to plot links between genomic regions to represent translocations or any other data type involving two genomic regions; or kpPlotRainfall, to create rainfall plots representing the distance between consecutive genomic features (usually somatic mutations) to show their regional clustering.

Not only human

It is possible to give a different genome name to plotKaryotype to create a karyoplot for the genome of another species. For some of them, karyoploteR will be able to even get the cytoband information and draw a karyoplot with banded ideograms. For others, it will only plot the chromosomes as gray rectangles, but for all of them the data plotting functionality will be available. In fact, it's even possible to provide it with a completely new genome (either real or made up) and work with it without any problem.

Zooming in

Providing a single zoom parameter to plotKaryotype you can zoom in up to base level. This, combined with karyoploteR's capabilities for plotting genes and transcripts structures and very precise positioning of genomic features and genomic and epigenomic data, will help you explore the ins and outs of your data.

Epigenomic data from ENCODE project plotted using karyoploteR

Combining multiple plots in multi-panel figures

Using the ggplotify package you can combine multiple karyoplots into a single figure or even combine them with other R plots.

library(karyoploteR)
library(ggplotify)
library(cowplot)

p1 <- as.ggplot(expression(plotKaryotype(main="Human (hg19)")))
p2 <- as.ggplot(expression(plotKaryotype(genome = "mm10", main="Mouse (mm10)")))
plot_grid(p1, p2, ncol=2, labels=LETTERS)

enter image description here

I hope you find it as useful as we do, and that karyoploteR may help you in your future genome drawing endeavors.

Oh, and if you have any idea or a bug report, pull requests are always welcome!

Bernat

karyoploteR Rdataviz NGS • 12k views
ADD COMMENT
2
Entering edit mode

Hi

Very nice project.

I am wondering if i could draw a barplot on a custom genome depicting the reads mapped on particular features; say "genes". So, that will be a pretty simple data set as given below

GeneID   RawReadCount
14490.2     5
011470.2    24
14480.1     0
025190.2    12
007250.1    0
068190.1    11
078810.2    3

The plot looking similar to this; bars representing number of reads enter image description here

I think kpBars is the function I am looking for. Any help is much appreciated.

ADD REPLY
1
Entering edit mode

Note that the intervals in test file are not big due to which are bars are thinner. I used default chromosome size provided by package.

library(karyoploteR)
kp <- plotKaryotype(chromosomes="chr22")
test=read.csv("test", sep="\t", stringsAsFactors = F, strip.white = T)
> test
    Geneid   chr    Start      End Gene.counts
1     ACO2 chr22 41469124 41528989    3141.000
2      BCR chr22 23180364 23318037    2515.667
3   CELSR1 chr22 46360833 46537170    1123.667
4    EWSR1 chr22 29268008 29300525    2638.833
5  MICALL1 chr22 37906147 37942458    1747.833
6      MIF chr22 23894377 23895222    4219.333
7     MYH9 chr22 36281276 36388067   17474.167
8   PLXNB2 chr22 50274978 50307572    4547.500
9   RBFOX2 chr22 35738735 36028537    2507.833
10    SUN2 chr22 38734713 38755462    2184.000
11    TSPO chr22 43151934 43163242    1565.167
12    XBP1 chr22 28794559 28800572    4342.167

y1=(test$Gene.counts-min(test$Gene.counts))/(max(test$Gene.counts)-min(test$Gene.counts))
kpBars(kp, chr="chr22", x0=test$Start, x1=test$End, y1=y1, col=rainbow(dim(test)[1]))

Rplot
how to delete

ADD REPLY
0
Entering edit mode

Not really a barplot but I think that the plot Coverage can be apply on custom genome.

https://bernatgel.github.io/karyoploter_tutorial//Tutorial/PlotCoverage/PlotCoverage.html

ADD REPLY
0
Entering edit mode

Can you just briefly tell me the steps; I will figure out the exact commands myself. What I have is

  • a genome file in fasta format (chr wise)
  • a corresponding GTF file
  • a read count file gene wise as shown above
ADD REPLY
1
Entering edit mode

This packages is all about positions encapsulated in GRanges. There is no reference sequence.

I would do something like this

Create a new custom genome, if you just have a single chromosome you just need its length, if you have many chromosome, take all the lengths

https://bernatgel.github.io/karyoploter_tutorial//Tutorial/CustomGenomes/CustomGenomes.html

Something like this

custom.genome <- toGRanges(data.frame(chr=c("A"), start=c(1), end=c(length)))
kp <- plotKaryotype(genome = custom.genome)

Create a GRanges with your counts to plot the coverage

https://bernatgel.github.io/karyoploter_tutorial//Tutorial/PlotCoverage/PlotCoverage.html

Example with 2 genes.

geneA -> 1 count

geneB -> 3 counts

Look at the position of geneA and geneB in your GTF file let say :

geneA -> chr1:100:200

geneB-> chr10:500:600

Fill your GRanges (named regions) with :

geneA -> chr1:100:200

geneB-> chr10:500:600

geneB-> chr10:500:600

geneB-> chr10:500:600

kpPlotCoverage(kp, data=regions)

Create markers

https://bernatgel.github.io/karyoploter_tutorial//Tutorial/PlotMarkers/PlotMarkers.html

Use your GTF to create all the markers you want

Same stuff, create a GRanges of the genes you want to display on your custom genome

ADD REPLY
0
Entering edit mode

Hi Vijay,

As Bastien said, karyoploteR does not need the reference sequence or anything like that. It just needs the chromosome lengths, which facilitates working with custom and unfinished genomes.

I would do something along the lines of what Bastien suggested.

  1. Create a GRanges object with the lengths of your chromosomes as in the custom genomes tutorial page
  2. Read the GTF into R using rtracklayer import function and build a GenomicRanges object with the positions of your genes
  3. Get the read counts per gene either as an mcols of the genes GRanges or as an independent vector in the same order as the genes GRanges
  4. Plot your data. You can use kpBars to create the bars as you asked, use kpSegments + kpPoints to create kind of a needle plot or however you might want to plot them.

If you are interested in plotting, not the total number of counts per gene but the actual per base coverage you can take a look at the newly added kpArea function.

Hope that helps

ADD REPLY
0
Entering edit mode

Hello Bernat!

I still have problem to create the "data=regions" object for

kpPlotCoverage(kp, data=regions)

I have exactly same dataframe in bed file format like Vijay's example above:

  test=read.csv("test", sep="\t", stringsAsFactors = F, strip.white = T)

If I understand correctly "data=regions" is a GRanges object, which sometimes needs other R packages, etc, to be created, and I got lost usually, more specially on how is the connection between the genome and GRange object, i.e. the chromosome coordinates and the gene names/coordinates of the coverage part to be plotted coordingly.

In your Tutorial example:

library(karyoploteR)
regions <- createRandomRegions(nregions=10000, length.mean = 1e6, mask=NA)
kp <- plotKaryotype()
kpPlotCoverage(kp, data=regions)

The createRandomRegions() function seems not having any symbol or coordinates to match the genome, especially when custom.genome with multiple chromosomes is created.

My question is: what's the best practice to create the "data=regions" object from this "test" dataframe to match the genome (custome.genome)?

Really appeciate some command line(s) example to resolve my struggle, if possible.

Thanks a lot!

ADD REPLY
1
Entering edit mode

Hi.

Wonderful package!

I have plotted some genes on respective chromosomes using karyoploteR. I was just wondering if I could retrieve the information on genes from certain regions within the chromosomes in the plot. Do I need to use any other function similar to cut tree for clusters ? If it is so, what would that function/package be.

Note: due to large number of genes, I haven't used labels.

ADD REPLY
1
Entering edit mode

Hi @khhgng

karyoploteR is only a plotting package and can not help you with the selection and manipulation of your data. If you your genes a in a GRanges object, I would recommend you using the subsetByOverlaps function to select the genes in specific genomic regions.

Note: In the future, if you have a question to ask, you should create a new top level question instead of asking in the space where answers are supposed to be. That helps maintaining biostars tidy and organized :)

ADD REPLY
0
Entering edit mode

Thank you @bernatgel

I'll take care of the question space next time. :)

ADD REPLY
0
Entering edit mode
ADD REPLY
0
Entering edit mode

I have been using plotkaryotypeR to plot gene positions on chromosomes for a custom genome using the genes in place of cytobands file and it works well. I would like to add gene density and coverage above and below the chromosome. Can you please explain what the format of the input files for gene density and coverage should be like? In the examples a lot of the data are preloaded for human and I cant find how to format mine for custom work. For example my genome input is formatted like:

chr start   end
A   1   10000
B   1   20000

and cytoband (though actually genes) is:

chrom   Start   End name    gieStain
A   4000    6000    gene    gneg

Many thanks

ADD REPLY
4
Entering edit mode
2.6 years ago

How to plot your custom genome from fasta file:

library(karyoploteR)
library(GenomicRanges)
library(seqinr)


# read the genome file
seqs <- readDNAStringSet("mygenome.fasta")

# show the names of the chromosomes :
names(seqs)
# show the length of every chromosome
width(seqs)
# so we will use theses data to build a custom genome for our sequence using toGranges

custom.genome <- toGRanges(data.frame(chr=c(names(seqs)), start=c(1), end=c(width(seqs)))

# then we will plot the chromosome
 kp <- plotKaryotype(genome=custom.genome)
ADD COMMENT
0
Entering edit mode

Thanks a lot! @slimane.khayi

ADD REPLY

Login before adding your answer.

Traffic: 1985 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6