-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.R
More file actions
53 lines (46 loc) · 1016 Bytes
/
test.R
File metadata and controls
53 lines (46 loc) · 1016 Bytes
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Test script
# Record date and time this was run
Sys.time()
# List all installed packages
installed.packages()[, c("Package", "Version")]
# Loads TwoSampleMR and all its dependency packages
library(TwoSampleMR)
packageVersion("TwoSampleMR")
# Imports packages (from TwoSampleMR DESCRIPTION file)
library(cowplot)
library(data.table)
library(dplyr)
library(ggplot2)
library(glmnet)
library(gridExtra)
library(gtable)
library(ieugwasr)
library(jsonlite)
library(knitr)
library(lattice)
library(magrittr)
library(MASS)
library(meta)
library(MRMix)
library(MRPRESSO)
library(pbapply)
library(plyr)
library(psych)
library(RadialMR)
library(reshape2)
library(rmarkdown)
# Suggests packages (from TwoSampleMR DESCRIPTION file)
library(Cairo)
library(car)
library(markdown)
library(MendelianRandomization)
library(mr.raps)
library(MRInstruments)
library(randomForest)
library(testthat)
library(tidyr)
# mr.raps Imports
library(rsnps)
# mr.raps Suggests
library(bumphunter)
library(TxDb.Hsapiens.UCSC.hg38.knownGene)