Skip to content

Commit

Permalink
update sleuth
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjaynagi committed Oct 1, 2024
1 parent 949a610 commit d0ff005
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
3 changes: 1 addition & 2 deletions workflow/envs/sleuth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@ dependencies:
- r-ggrepel
- r-openxlsx
- r-glue
- r-rcolorbrewer
- bioconductor-enhancedvolcano
- r-rcolorbrewer
8 changes: 0 additions & 8 deletions workflow/scripts/SleuthIsoformsDE.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ library(ggrepel)
library(openxlsx)
library(glue)
library(RColorBrewer)
library(EnhancedVolcano)

print("------------- Kallisto - Sleuth - RNASeq isoform Differential expression ---------")
#### read data ####
Expand Down Expand Up @@ -87,13 +86,6 @@ for (cont in contrasts){
labels = results %>% dplyr::mutate("Gene_name" = case_when(GeneName == "" ~ TranscriptID,
is.na(GeneName) ~ TranscriptID,
TRUE ~ GeneName)) %>% select(Gene_name) %>% deframe()
pdf(glue("results/isoformdiff/Volcano_plot_{cont}.pdf"))
print(EnhancedVolcano(results_list[[cont]],
lab=labels,
x='b',
y='pval',
title = cont))
garbage = dev.off()
print(glue("{cont} complete!"))
}

Expand Down

0 comments on commit d0ff005

Please sign in to comment.