stianlagstad / chimeraviz

chimeraviz is an R package that automates the creation of chimeric RNA visualizations.
37 stars 14 forks source link

Question: what are the red bands on the chromosome? #67

Closed ahdee closed 5 years ago

ahdee commented 5 years ago

Sorry silly question but what are the red bands on the chromosome shown here, cF443qJ 1

stianlagstad commented 5 years ago

That's a very good question! And I really don't know. chimeraviz use these files with cytoband information:

  1. https://github.com/stianlagstad/chimeraviz/blob/master/inst/extdata/UCSC.HG19.Human.CytoBandIdeogram.txt, downloaded from http://hgdownload.cse.ucsc.edu/goldenpath/hg19/database/
  2. https://github.com/stianlagstad/chimeraviz/blob/master/inst/extdata/UCSC.HG38.Human.CytoBandIdeogram.txt, downloaded from http://hgdownload.cse.ucsc.edu/goldenpath/hg38database/
  3. https://github.com/stianlagstad/chimeraviz/blob/master/inst/extdata/UCSC.MM10.Mus.musculus.CytoBandIdeogram.txt, downloaded from http://hgdownload.cse.ucsc.edu/goldenPath/mm10/database/

This data is sent to the Gviz package, which chimeraviz uses for most visualizations. If you look at the manual for gviz and search for "IdeogramTrack class and method", you can see that the description of "bands" parameter (which chimeraviz use to input the files from above) is this:

A data.frame with the cytoband information for all available chromosomes on the genome similar to the data that would be fetched from UCSC. The table needs to contain the mandatory columns chrom, chromStart, chromEnd, name and gieStain with the chromosome name, cytoband start and end coordinates, cytoband name and coloring information, respectively.

I googled various terms related to "gieStain" and found these links interesting:

But I still don't know why the colors are what they are, nor what the different colors mean. Do post back if you figure anything out :)

ahdee commented 5 years ago

Thanks! that file you sent was super helpful. I think its the "stalk" because searching through each one there are only a few chromosome that has it ( Acrocentric chromosomes) and they are according to this cite on the short arm. I've tested on random example with the chr that has the stalk and as you can see it seems to match. 3izEFFn 1

cite: https://diagnosticcytogenetics.com/about/glossary/

stianlagstad commented 5 years ago

I'm glad the file was helpful. I'll assume the question is answered then and close this issue.

ahdee commented 5 years ago

@stianlagstad thanks again!