-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path14_Pick_starting_plasmids.R
163 lines (130 loc) · 6.22 KB
/
14_Pick_starting_plasmids.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
####################################################################################################################
# Plasmid rumen network analysis
#
# Script 14: Pick starting plasmids for dynamical Gillespie model
#
#
# Script tested for R version 4.1.1
####################################################################################################################
####################################################################################################################
# SCRIPT SET-UP
####################################################################################################################
# Set working directory to wherever your files are located
# Load the necessary packages:
library(tidyverse)
# Starting files:
# Cow per plasmid created in script 04_Basic_network_statistics.R
load("plas.per.cow.Rda")
# Infomap data created in script 08_Infomap_analysis_full_network.R
load("plas_mods.df.Rda")
# Statistics on infomap modules created in script 08_Infomap_analysis_full_network.R
load("plas_mods.stats.Rda")
# Degree of physical nodes, created in script 04_Basic_network_statistics.R
load("deg.str.2k.all.phys.Rda")
# Ordered list of state nodes, created in script 13_Gillespie_function.R
load("st.node.list.ord.Rda")
####################################################################################################################
####################################################################################################################
# Section 1: RANDOMLY PICK CENTRAL PLASMIDS (BELONGING TO MODULE 1)
####################################################################################################################
# Identify state nodes in module 1 (the biggest module)
mod1 <- plas_mods.df %>%
distinct() %>%
filter(module==1) %>%
left_join(., deg.str.2k.all.phys, by="node_id") %>%
select(-strength, -edge_type) %>%
mutate(layer_id=as.factor(layer_id)) %>%
left_join(., plas_mods.stats) %>%
left_join(., st.node.list.ord)
# Randomly sample state nodes in module 1
mod1.sampled <- mod1 %>%
select(st.node.id, node_id) %>%
#distinct(node_id) %>%
group_by(node_id) %>%
sample_n(., 1) %>%
ungroup() %>%
sample_n(., 10, replace=FALSE) %>%
left_join(., st.node.list.ord) %>%
mutate(post = 1514 - mat.order) %>%
arrange(mat.order) %>%
mutate(pre = mat.order - 1,
true = 1,
post = 1514 - mat.order)
# Save the data
save(mod1.sampled, file="mod1.sampled.Rda")
####################################################################################################################
####################################################################################################################
# Section 2: CREATE STARTING BOOLEAN LIST FOR CENTRAL PLASMIDS
####################################################################################################################
# Create an empty list
bool.centr.obs <- list()
# Create a boolean list for each starting plasmid, with the position of the starting plasmid TRUE and all other
# positions FALSE
for(i in 1:nrow(mod1.sampled)) {
bt <- c(rep(FALSE, each=mod1.sampled$pre[i]), rep(TRUE,1), rep(FALSE,each=mod1.sampled$post[i]))
bool.centr.obs[[length(bool.centr.obs)+1]]<-bt
}
# Assign name of each list as the starting plasmid
names(bool.centr.obs) <- c(paste("centr",mod1.sampled$st.node.id, sep = "_"))
# Save the data
save(bool.centr.obs, file="bool.centr.obs.Rda")
####################################################################################################################
####################################################################################################################
# Section 3: RANDOMLY PICK PERIPHERAL PLASMIDS (BELONGING TO SMALLEST MODULES)
####################################################################################################################
# Identify state nodes in the smallest modules (those with 2 state nodes)
not.mod1 <- plas_mods.df %>%
distinct() %>%
left_join(., deg.str.2k.all.phys, by="node_id") %>%
select(-strength, -edge_type) %>%
mutate(layer_id=as.factor(layer_id)) %>%
left_join(., plas_mods.stats) %>%
left_join(., st.node.list.ord) %>%
filter(n.state.nodes==2)
# Join module and plasmid metadata to state nodes that are not in the biggest module (module 1)
not.mod1.cows <- plas_mods.df %>%
distinct() %>%
filter(module!=1) %>%
left_join(., deg.str.2k.all.phys, by="node_id") %>%
select(-strength, -edge_type) %>%
mutate(layer_id=as.factor(layer_id)) %>%
left_join(., plas_mods.stats) %>%
left_join(., st.node.list.ord) %>%
group_by(layer_id) %>%
mutate(mod.size=max(n.state.nodes)) %>%
select(layer_id, mod.size) %>%
distinct() %>%
filter(., !(layer_id %in% mod1$layer_id))
#filter(layer_id !(%in% mod1$layer_id))
# Randomly sample the state nodes in the smallest modules
not.mod1.sampled <- not.mod1 %>%
select(st.node.id, node_id) %>%
#distinct(node_id) %>%
group_by(node_id) %>%
sample_n(., 1) %>%
ungroup() %>%
sample_n(., 10, replace=FALSE) %>%
left_join(., st.node.list.ord) %>%
mutate(pre = mat.order - 1,
true = 1,
post = 1514 - mat.order) %>%
arrange(mat.order)
# Save the data
save(not.mod1.sampled, file="not.mod1.sampled.Rda")
####################################################################################################################
####################################################################################################################
# Section 4: CREATE STARTING BOOLEAN LIST FOR PERIPHERAL PLASMIDS
####################################################################################################################
# Repeat the process from Section 2 on the peripheral plasmids
# Create an empty list
bool.periph.obs <- list()
# Create a boolean list for each starting plasmid, with the position of the starting plasmid TRUE and all other
# positions FALSE
for(i in 1:nrow(not.mod1.sampled)) {
bt <- c(rep(FALSE, each=not.mod1.sampled$pre[i]), rep(TRUE,1), rep(FALSE,each=not.mod1.sampled$post[i]))
bool.periph.obs[[length(bool.periph.obs)+1]]<-bt
}
# Assign name of each list as the starting plasmid
names(bool.periph.obs) <- c(paste("periph",not.mod1.sampled$st.node.id, sep = "_"))
# Save the data
save(bool.periph.obs, file="bool.periph.obs.Rda")