-
Notifications
You must be signed in to change notification settings - Fork 3
/
LinuxWADE.R
33 lines (29 loc) · 1.17 KB
/
LinuxWADE.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
##################################################################
#### WGS Analysis and Detection of Molecular Markers (WADE) ####
#### Authors: Walter Demczuk & Shelley Peterson ####
#### Date: 2024-04-24 ####
##################################################################
library(plyr)
library(tidyverse)
library(tidyselect)
library(tidysq)
library(Biostrings)
library(shiny)
library(shinyWidgets)
library(DT)
library(readxl)
library(beepr)
library(WADE)
####### <<<< Change this path to where the WADE directory is stored >>>> #######
curr_work_dir <- "~/Documents/WADE/"
#-------------------------------------------------------------------------------
#remove previous WADE output fasta files
removefiles(curr_work_dir)
MASTER_pipeline("GAS", "AMR", "list", "list", curr_work_dir)
labware_gas_amr("GAS", curr_work_dir)
MLST_pipeline("GAS", "MLST", "list", "list", curr_work_dir)
EMM_pipeline("GAS", "list", curr_work_dir)
MASTER_pipeline("GAS", "rRNA16S", "list", "list", curr_work_dir)
rRNA16S_pipeline("GAS", curr_work_dir)
MASTER_pipeline("GAS", "TOXINS", "list", "list", curr_work_dir)
labware_gas_toxins("GAS", curr_work_dir)