I could import my data successfully. Thank you kristoffer.vittingseerup
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.
1 answer
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,
...
)
Then remember to accept the answer :-)
Log in to answer this question.
7/21/2016
I bet they were talking about this script
See also