chimeraviz - import own fusion file for visualization
2
0
Entering edit mode
@verenatischler-13394
Last seen 6.8 years ago

Hello,

I would like to use the package "chimeraviz" to visualize fusions.

"chimeraviz allows you to import data from nine different fusion-finders: deFuse, EricScript, InFusion, JAFFA, FusionCatcher, FusionMap, PRADA, SOAPFuse, and STAR-FUSION."

This is information from the "chimeraviz vignette" about how the fusion list is imported

# Load chimeraviz
library(chimeraviz)
# Load SOAPfuse data
if(!exists("soapfuse833ke"))
  soapfuse833ke <- system.file(
    "extdata",
    "soapfuse_833ke_final.Fusion.specific.for.genes",
    package = "chimeraviz")
fusions <- importSoapfuse(soapfuse833ke, "hg38", 10)

I would like to import my own fusion file for visualization but cannot find a way how to import my text file. I would be very grateful for suggestions. Thank you very much!

 

visualization chimeraviz • 1.6k views
ADD COMMENT
1
Entering edit mode
stianlagstad ▴ 90
@stianlagstad-9723
Last seen 4.1 years ago

Thank you for your interest in using chimeraviz!:) You can use your own file with the import functions like this:

# Load chimeraviz
library(chimeraviz)
# A reference to your fusion file
myfile <- "/home/stian/dev/soapfuse_833ke_final.Fusion.specific.for.genes"
fusions <- importSoapfuse(myfile, "hg38", 10)

See that I've put the path to a fusion file that I have on my disk in the variable "myfile". I use that variable in the import function.

Note that the fusion file has to be from one of the supported fusion finders and you need to use the corresponding import function:
- deFuse -> importDefuse()
- EricScript -> importEricscript()
- InFusion -> importInfusion()
- JAFFA -> importJaffa()
- FusionCatcher -> importFusioncatcher()
- FusionMap -> importFusionmap()
- PRADA -> importPrada()
- SOAPFuse -> importSoapfuse()
- STAR-FUSION -> importStarfusion()

If you have a custom format for your fusion file, then you have to write your own script to import the data into Fusion objects. This isn't very difficult. Take a look at the importDefuse script here and do something similar: https://github.com/stianlagstad/chimeraviz/blob/master/R/importDefuse.R

ADD COMMENT
1
Entering edit mode
@verenatischler-13394
Last seen 6.8 years ago

Thanks a lot Stian for your explanations. I will write my own script for our custom files.

ADD COMMENT
0
Entering edit mode

No problem! Just ask more here or create an issue in the github repository if there's anything else.

ADD REPLY
0
Entering edit mode

Hi to chimeraviz TEAM, thanks to your outstanding work, i have a question and i am wondering , is there any ways to import the Fusion genes which detected by SQANTI package, to chimeroviz and plot them?????

Thanks in advance

ADD REPLY

Login before adding your answer.

Traffic: 781 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