-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathupdateScore.R
32 lines (28 loc) · 1.29 KB
/
updateScore.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
source("R/syrfDBReader.R")
source('R/ioeAPI.R')
source('R/syrfIoeHelper.R')
source('R/calculateMLPerformance.R')
source('R/dictionaryValidationHelpers.R')
source("R/functions.R")
source('R/configure.R')
source('R/relisyrScoring.R')
library(googlesheets4)
library(AutoAnnotation)
library(DBI)
library(RMySQL)
library(tidyr)
library(dplyr)
print(paste0(' --------- ', date(), ' --------- '))
setwd("/home/jliao/workspace/DIST")
updateScore()
CreateProgressSummary(syrfConnection, clinicalProjectId, invivoProjectId,
mySQLCon, clinicalSQLTableName,invivoSQLTableName,
googleSheetId,
diseaseOfInterestSheetName = diseaseOfInterestSheetName,
drugOfInterestSheetName = drugOfInterestSheetName,
diseaseSheetName = diseaseSheetName,
drugSheetName = drugSheetName,
scoreRuleSheetName = scoreRuleSheetName,
progressSummarySheetName = progressSummarySheetName,
clinicalProjectProgresRangeLine = clinicalProjectProgresRangeLine,
invivoProjectProgresRangeLine = invivoProjectProgresRangeLine)