Git Product home page Git Product logo

Comments (4)

thackl avatar thackl commented on June 23, 2024

This works for me. If you mean something else, please provide an example.

g0 <- tibble(seq_id="a", start=10, end=500, gene="foo")
gggenomes(g0) +
  geom_gene(aes(fill=gene)) +
  geom_gene_label(aes(label=gene, color=gene), fontface="italic", show.legend=FALSE)

image

from gggenomes.

minal033 avatar minal033 commented on June 23, 2024

Yes, that worked! Thank you so much! Now encountering a different problem though. Some of the genes are pseudogenes so I use greek psi symbol to label them. Before color and fontface, plot was showing psi symbol but now it shows some strange character instead of psi. I tried a couple of online solutions to convert encoding into UTF-8 but no success yet. Please let me know if you have a solution that can work. Here is a screenshot of the table that I read in R:
image

from gggenomes.

thackl avatar thackl commented on June 23, 2024

Hm, strange. I cannot reproduce this on my system, see below.

# thought this would work with `parse=T` but got no character for psi at all
g0 <- tibble(
  seq_id="a", start=c(10, 600), end=c(500, 1000),
  # this seems to work just fine
  gene=c("foo", "ψ"),
  # thought this would work with `parse=T` 
  # but got no character for psi at all
  gene_parse=c("foo", "psi"),
  # unicode seems to work as well
  gene_unicode=gsub("ψ", "\u03C8", gene)
)

gggenomes(g0) +
  geom_gene(aes(fill=gene)) +
  # psi and italic
  geom_gene_label(aes(label=gene, color=gene), 
                  fontface="italic", show.legend=F, nudge_x=-100) +
  # no psi, and not italic
  geom_gene_label(aes(label=gene_parse, color=gene), 
                  fontface="italic", show.legend=F, parse=T) +
  # psi and italic
  geom_gene_label(aes(label=gene_unicode, color=gene),
                  fontface="italic", show.legend=F, nudge_x=100)

image

from gggenomes.

minalj365 avatar minalj365 commented on June 23, 2024

Thank you for trying this! Your solution works for me but only when I write a tibble. In my case, I have to read a table. I found out that if I save the file with .txt, and read with read.delim(), then psi is labeled as a greek letter on the plot. Other extensions like .tsv, .csv, .xlsx don't work!

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.