forked from JosephLongworth/AntigenMicroarray
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.R
More file actions
24 lines (18 loc) · 826 Bytes
/
global.R
File metadata and controls
24 lines (18 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
####################################################################################################
##### Created by Joseph Longworth
##### Contact josephlongworth@gmail.com
##### This is the Global file for a shiny application providing several tools for Antigen Microarrays
####################################################################################################
# install.packages("shiny")
# install.packages("shinydashboard")
# install.packages("tidyverse")
# install.packages("readxl")
# install.packages("janitor")
# install.packages("SuperCurve", repos="http://R-Forge.R-project.org")
require("shiny")
require("shinydashboard")
require("tidyverse")
require("readxl")
require("janitor")
require("SuperCurve")
JPL_num_to_well <- function(x){if(is.na(x)){NA}else{num_to_well(x,plate = 96)}}