Git Product home page Git Product logo

Comments (4)

thackl avatar thackl commented on July 20, 2024

Not 100% sure what you mean, but could this be it https://thackl.github.io/gggenomes/reference/shift.html

from gggenomes.

Rikkiff avatar Rikkiff commented on July 20, 2024

Thanks Thomas!
Actually, I want to change the start site of the sequences. So, for example that all sequences are starting with the MCP gene you are centring on in your example.

from gggenomes.

thackl avatar thackl commented on July 20, 2024

Ah, ok, so you sort of want to rotate the annotations. How about something like this:

library(tidyverse)
library(gggenomes)

s1 <- tibble(
  seq_id = c("A", "B"),
  length = 2000
)

g1 <- tibble(
  seq_id = rep(c("A", "B"), each=4),
  feat_id = c("a-start", "a2", "a3", "a4", "b3", "b4", "b-start", "b2"),
  start = rep(c(100, 600, 1100, 1600), 2),
  end = start +300)

Original sequence with B having start in the middle

#| fig.height: 2
#| fig.width: 5
gggenomes(g1, s1) +
  geom_seq() +
  geom_gene() +
  geom_gene_tag(aes(label=feat_id))

image

B broken up at start gene and first half of genome plotted as individual contig before second half of genome

#| fig.height: 2
#| fig.width: 5
# "zoom" in on parts of sequences and reorganize
# use all of A:0-2000, use B:1000-2000, then B:0:1000
p1 <- gggenomes(g1, s1, spacing = 10) |> # spacing controls the distance between contigs of same genome
  focus(.loci = tibble(  
    seq_id = c("A", "B", "B"),
    start = c(0, 1000, 0),
    end = c(2000, 2000, 1000)))
p1 + 
  geom_seq() +
  geom_gene() +
  geom_gene_tag(aes(label=feat_id))

image

I chose the breakpoint here (.loci tibble) manually, but I think it could also be computed easily from your start gene locations...

from gggenomes.

Rikkiff avatar Rikkiff commented on July 20, 2024

This works. Thanks again Thomas!

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.