Hi! After reading the documentation, I still do not fully understand what is the difference between transform_counts() and compute_read_counts() of the recount3 package. If anyone can help me clarify this I would really appreciate it :)
I was planning to run this code to get the counts so that afterwards I will be able to run a machine learning analysis. Do these steps make sense?
# Step 1:Coverage counts--> read counts
assay(rse_gene_object, "counts") <- transform_counts(rse_gene_object)
# Step 2 :read counts---> counts matrix
counts<-compute_read_counts(rse_gene_object)
Thanks!