TobiTekath / DTUrtle

Perform differential transcript usage (DTU) analysis of bulk or single-cell RNA-seq data. See documentation at:
https://tobitekath.github.io/DTUrtle
GNU General Public License v3.0
17 stars 3 forks source link

plot transcript view table #8

Closed mavino closed 2 years ago

mavino commented 2 years ago

Hi there, is there a way to get, after having run plot_transcripts_view() on my dturtle object, a table with all the values of the mean fitted proportional changes per transcript per gene? Thanks a lot.

TobiTekath commented 2 years ago

HI @mavino,

if I understand your request correctly, you might want to call the internal get_diff() function. You can use it like this: DTUrtle:::get_diff("gene_of_interest", dturtle_object)

The fitted proportions are computed in the run_drimseq() step, thus independently of the plot_transcripts_view() calls.

Hope that helps. Best, Tobi

mavino commented 2 years ago

great!! thanks a lot