Tag: ggalt

ggplot2 – r time range plot before and after

This is a good use case for a dumbbell plot using the ggalt package: library(ggplot2) #install.packages(“ggalt”) library(ggalt) # For geom_dumbbell library(dplyr) library(tidyr) data %>% separate(Year, into = c(“StartYear”, “EndYear”), convert = TRUE) %>% mutate(Color = ifelse(StartYear < 2016 & EndYear > 2016, “overlap”, ifelse(EndYear <= 2016, “before”, “after”))) %>% ggplot(aes(x…

Continue Reading ggplot2 – r time range plot before and after

Handling NA’s in Deseq2

Hi everyone First of all thank you for making rna-seq data much more accessible to an average clinical doctor through the DEseq2 packages and vignettes. I am though running into some trouble: I have a dataset of Nanostring mRNA-data from clinical study, which later was followed up. I therefore have…

Continue Reading Handling NA’s in Deseq2

Log2FC values slightly higher in some genes after DESeq2 shrinkage

Hi, I have a question about DESeq2 LFCshrinkage: Is it possible that some genes have a slightly higher LFC after shrinkage? It happened during my RNAseq DE analysis, I have very deeply sequenced samples with large base means. I tried visualizing using MAplot check, and it looks fine. I’m mainly…

Continue Reading Log2FC values slightly higher in some genes after DESeq2 shrinkage

Resolved: Adding a legend to ggplot

Question: I have the below dataset; Player Goals Shots Regan Charles-Cook 10 32 Tony Watt 9 36 Bruce Anderson 8 26 Liam Boyce 8 44 Kyogo Furuhashi 8 31 Alfredo Morelos 8 80 Christian Ramirez 8 41 Liel Abada 7 57 Martin Boyle 7 43 Kevin van Veen 7 45…

Continue Reading Resolved: Adding a legend to ggplot

GDCquery_Maf error

GDCquery_Maf error 0 @76e1237b Last seen 1 day ago Singapore Hi all, I really need some help. I am trying to run GDCquery_Maf which worked fine until yesterday. Now I get the following error: Error in GDCquery(paste0(“TCGA-“, tumor), data.category = “Simple Nucleotide Variation”, : Please set a valid workflow.type argument…

Continue Reading GDCquery_Maf error