Git Product home page Git Product logo

Comments (4)

thackl avatar thackl commented on June 24, 2024

Hi Håkon,

good question. It is definitely possible but as of now probably not as easy as it should be. geom_bin_label uses data derived from the sequence table. In theory you can make any data from seqs available to geom_bin_label.

s0 <- tibble(
  seq_id = c("a1", "a2", "b1"),
  bin_id = c("A", "A", "B"),
  length = c(1000, 2000, 3000),
  country = c("Norway", "Norway", "Sweden")
)

p1 <- gggenomes(seqs=s0) + geom_seq()
p1 + geom_bin_label()

image

Add additional variables from seqs to bins - granted hard to guess unless you know.

p1 + geom_bin_label(aes(label=country)) # doesn't work b/c 
p1 %>% pull_bins() # country is not present in internal bin table
p1 %>% pull_bins(.group=vars(country)) # but it can be included
p1 + geom_bin_label(aes(label=country), data=bins(.group=vars(country)))

image

It probably would be good to implement the following in future versions. This should be closest to what you suggested. Feel free to comment!

For now, you can just copy and paste the code to make it work for you as well.

# something like
bins_with_meta <- function (..., .group = vars(), .meta = NULL){
    dots <- quos(...)
    function(.x, ...) {
        b <- pull_bins(.x, !!!dots, .group = .group)
        if(!is.null(.meta)){
          b <- left_join(b, .meta)
        }
        b
    }
}

meta <- tibble(
  bin_id = c("A", "B"),
  country = c("Norway", "Sweden"),
  year=2022)

gggenomes(seqs=s0) + geom_seq() +
  geom_bin_label(
    aes(label=paste(bin_id, "\n", country, year)),
    data=bins_with_meta(.meta = meta), expand_left = 0.4)

image

from gggenomes.

hkaspersen avatar hkaspersen commented on June 24, 2024

Thanks, this works well!
I would also like to know how to change the font of the text in the geom_bin_label, as it does not seem to be affected by theme( text = element_text(family = "Open Sans"))?

from gggenomes.

thackl avatar thackl commented on June 24, 2024

Interesting. I would have thought this would work. Internally geom_bin_label just calls geom_text. I'll need to look into it...

from gggenomes.

thackl avatar thackl commented on June 24, 2024

Ok, so changing the font is actually even easier: geom_bin_label(family = "Open Sans"). I don't know why/how theme->text does not work, but it also does not work with a regular ggplot+geom_text. theme->text only seems to affect axis labels etc, i.e. items related to the plot theme, not the geoms...

from gggenomes.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.