Unable to create file for tximport
1
0
Entering edit mode
5.4 years ago
ankur • 0

Hello there, I am new to RNA seq analysis, so please excuse me for this basic question. Since one week I am trying to import my StringTie reestimation results via tximport tool so that I can use it for DESeq2 tool. But I am unable to understand how exactly I can create my 'files' and import it.

My StringTie results contain for every sample e2t.ctab e_data.ctab i2t.ctab i_data.ctab SRR12345.gtf t_data.ctab

The manual which I am following is tximport here they have not given how one can use the data from StringTie results. Can anyone please guide me how I can create files and which files i can use from StringTie reestimation

Thank You in advance.

tximport StringTie RNA-Seq DESeq2 • 2.9k views
ADD COMMENT
1
Entering edit mode

7/21/2016

  • using DESeq2 and edgeR with StringTie's output Thanks to a productive summer internship of high school student David Miller there is now a script available for converting the output of StringTie into read count tables (at gene and transcript levels) which can be then imported into packages like DESeq2 or edgeR in order to estimate differential expression for genes and transcripts. Please check the new manual section for this DESeq2 and edgeR integration.

I bet they were talking about this script

See also

ADD REPLY
5
Entering edit mode
5.4 years ago

I highly recommend using tximport to import the data due to all the reasons outlined in the Bioconductor workflow Analyzing RNA-seq data with DESeq2.

To use tximport with StringTie data you simply need to make a vector with the paths to each of the "t_data.ctab" files:

quantData <- c(
    'path/to/sample_1/t_data.ctab',
    'path/to/sample_2/t_data.ctab'
    ...
)


 tximport(
     files = quantData,
     ...
 )
ADD COMMENT
0
Entering edit mode

I could import my data successfully. Thank you kristoffer.vittingseerup

ADD REPLY
0
Entering edit mode

Then remember to accept the answer :-)

ADD REPLY

Login before adding your answer.

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