-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstruct_database.R
More file actions
25 lines (18 loc) · 883 Bytes
/
construct_database.R
File metadata and controls
25 lines (18 loc) · 883 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
##################################################################################
###### Script to create a Gene - DNA methylation - Disease - Compound Network ####
##################################################################################
# Author: T.J.M. Kuijpers
# Databases used:
# Disease - Gene associations: DisGeneNet
# Compound - Gene associations: CTD
# Gene - Gene interactions:
# CpG - Gene interactions: File provided by Illumnia
# Design of data base:
# DataFrame: Interactor A ; Interactor B ; Interaction Type ; miscellaneous
# Read the gene-gene interactions
# Read CpG - Gene interactions
CpGGeneDatabase=read.delim()
# Read Compound - Gene interactions
CompoundGeneDatabase=read.delim()
# Read disease- gene interactions
CpGGeneInteractions=data.frame('Interactor A'=,'Interactor B'=,'Interaction type'=,'Miscellaneous'=)