Skip to content

Commit

Permalink
Small updates to code to print out tables associated with Fig. 1A
Browse files Browse the repository at this point in the history
  • Loading branch information
Kris Alavattam committed Oct 25, 2023
1 parent 2d8ee66 commit b6aca4d
Showing 1 changed file with 24 additions and 13 deletions.
37 changes: 24 additions & 13 deletions results/2023-0215/rough-draft_evaluate-categories_expression.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ samples <- "ovation" #ARGUMENT
# samples <- "r6n_timecourse" #ARGUMENT
# samples <- "Rrp6∆.timecourse-G1-Q.SS"

# tx <- "coding-non-pa-ncRNA" #ARGUMENT #IMPORTANT #NOTE i.e., "R64"
tx <- "coding-non-pa-ncRNA" #ARGUMENT #IMPORTANT #NOTE i.e., "R64"
# tx <- "noncoding-collapsed" #ARGUMENT #IMPORTANT
tx <- "noncoding-non-collapsed" #ARGUMENT
# tx <- "noncoding-non-collapsed" #ARGUMENT
# tx <- "Trinity-G1" #ARGUMENT
# tx <- "Trinity-Q" #ARGUMENT

Expand Down Expand Up @@ -1833,14 +1833,25 @@ print(`prop-plot_w-error_zoom` + theme_AG_boxed)
dev.off()


#TODO
# # Write out t_rel_summarize, prop_summarize as tsvs
# readr::write_tsv(
# t_rel_summarize,
# file = "t_rel_summarize.tsv"
# )
#
# readr::write_tsv(
# prop_summarize,
# file = "prop_summarize.tsv"
# )
#DONE Write out t_rel_summarize, prop_summarize as tsvs
#TODO Specify where to write things out, and use better names
readr::write_tsv( # Absolute values underlying bar plot
t_rel_summarize,
file = "t_rel_summarize.tsv"
)

readr::write_tsv( # Relative values underlying bar plot
prop_summarize,
file = "prop_summarize.tsv"
)

readr::write_tsv( # Table used to collated absolute values underlying bar plot
t_rel,
file = "t_rel.tsv"
)

readr::write_tsv( # Everything
t_full,
file = "t_full.tsv"
)

0 comments on commit b6aca4d

Please sign in to comment.