Skip to content

Commit

Permalink
remove tidyverse
Browse files Browse the repository at this point in the history
  • Loading branch information
katiesevans committed Mar 7, 2022
1 parent a72d6eb commit 205be40
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 7 deletions.
5 changes: 4 additions & 1 deletion bin/fq_concordance.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
library(tidyverse)
# library(tidyverse)
library(dplyr)
library(readr)
library(tidyr)

gt_dict = list("0/0" = 0, "1/1" = 1)

Expand Down
5 changes: 4 additions & 1 deletion bin/merge_groups_info.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#!/usr/bin/env Rscript
library(tidyverse)
# library(tidyverse)
library(readr)
library(dplyr)
library(tidyr)
# Read data from Rscript input
args <- commandArgs(trailingOnly=TRUE)

Expand Down
5 changes: 4 additions & 1 deletion bin/plot_pairwise.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
library(tidyverse)
# library(tidyverse)
library(dplyr)
library(readr)
library(stringr)
library(ggplot2)

args <- commandArgs(trailingOnly=TRUE)
Expand Down
5 changes: 4 additions & 1 deletion bin/process_concordance.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#!/usr/bin/env Rscript
library(ggplot2)
library(tidyverse)
library(dplyr)
library(readr)
library(tidyr)
# library(tidyverse)

# Used in calculating isotypes
stack_list <- function(x) {
Expand Down
6 changes: 5 additions & 1 deletion bin/process_concordance_report.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ output: html_document
```{r global_options, include=FALSE}
knitr::opts_chunk$set(warning=FALSE, message=FALSE, echo=FALSE)
library(tidyverse)
# library(tidyverse)
library(ggplot2)
library(dplyr)
library(readr)
library(tidyr)
library(magrittr)
library(DT)
library(plotly)
Expand Down
5 changes: 4 additions & 1 deletion bin/process_strain_pairwise.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#!/usr/bin/env Rscript
library(ggplot2)
library(tidyverse)
library(readr)
library(dplyr)
library(tidyr)
# library(tidyverse)
# Read data from Rscript input
args <- commandArgs(trailingOnly=TRUE)

Expand Down
4 changes: 3 additions & 1 deletion bin/process_trees.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
library(ape)
library(ggmap)
library(phyloseq)
library(tidyverse)
library(dplyr)
library(ggplot2)
# library(tidyverse)

contig = commandArgs(trailingOnly=TRUE)[[1]]
tree <- ape::read.tree(paste0(contig,".tree"))
Expand Down

0 comments on commit 205be40

Please sign in to comment.