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
| pdf(file = 'nVheatmap.pdf', height = 6, width = 12) par(mfrow = c(3,1), xpd=TRUE) f_CC_cmp_nVheatmap(SS) f_CC_cmp_nVheatmap(ER) f_CC_cmp_nVheatmap(CC) dev.off()
pdf(file = 'major_sources_and_targets.pdf', height = 6, width = 12) par(mfrow = c(3,1), xpd=TRUE) f_CC_cmp_major_sources_and_targets(SS_l) f_CC_cmp_major_sources_and_targets(ER_l) f_CC_cmp_major_sources_and_targets(CC_l) dev.off()
pdf(file = 'SG_F.pdf', height = 6, width = 12) par(mfrow = c(3,1), xpd=TRUE) f_CC_cmp_SG_F(SS) f_CC_cmp_SG_F(ER) f_CC_cmp_SG_F(CC) dev.off()
pdf(file = 'SG_S.pdf', height = 6, width = 12) par(mfrow = c(3,1), xpd=TRUE) f_CC_cmp_SG_S(SS) f_CC_cmp_SG_S(ER) f_CC_cmp_SG_S(CC) dev.off()
pdf(file = 'overall_information_flow.pdf', height = 6, width = 12) par(mfrow = c(3,1), xpd=TRUE) f_CC_cmp_overall_information_flow(SS) f_CC_cmp_overall_information_flow(ER) f_CC_cmp_overall_information_flow(CC) dev.off()
pdf(file = 'IO_signaling_all.pdf', height = 12, width = 12) par(mfrow = c(3,1), xpd=TRUE) f_CC_cmp_IO_signaling(SS_l, width = 10, height = 24) f_CC_cmp_IO_signaling(ER_l, width = 10, height = 24) f_CC_cmp_IO_signaling(CC_l, width = 10, height = 24) dev.off()
pdf(file = 'IO_signaling_outgoing.pdf', height = 12, width = 12) par(mfrow = c(3,1), xpd=TRUE) f_CC_cmp_IO_signaling(SS_l, pattern = 'outgoing', color.heatmap = 'BuGn', width = 10, height = 24) f_CC_cmp_IO_signaling(ER_l, pattern = 'outgoing', color.heatmap = 'BuGn', width = 10, height = 24) f_CC_cmp_IO_signaling(CC_l, pattern = 'outgoing', color.heatmap = 'BuGn', width = 10, height = 24) dev.off()
pdf(file = 'IO_signaling_incoming.pdf', height = 12, width = 12) par(mfrow = c(3,1), xpd=TRUE) f_CC_cmp_IO_signaling(SS_l, pattern = 'incoming', color.heatmap = 'GnBu', width = 10, height = 24) f_CC_cmp_IO_signaling(ER_l, pattern = 'incoming', color.heatmap = 'GnBu', width = 10, height = 24) f_CC_cmp_IO_signaling(CC_l, pattern = 'incoming', color.heatmap = 'GnBu', width = 10, height = 24) dev.off()
pdf(file = 'dysfunctional_signaling.pdf', height = 24, width = 24) par(mfrow = c(3,1), xpd=TRUE) f_CC_cmp_dysfunctional_signaling_draw(SS, sources.use = c('Fibroblasts')) f_CC_cmp_dysfunctional_signaling_draw(ER, sources.use = c('Fibroblasts')) f_CC_cmp_dysfunctional_signaling_draw(CC, sources.use = c('Fibroblasts')) dev.off()
pdf(file = 'dysfunctional_signaling_TAM.pdf', height = 24, width = 24) par(mfrow = c(3,1), xpd=TRUE) f_CC_cmp_dysfunctional_signaling_draw(SS, sources.use = c('TAM')) f_CC_cmp_dysfunctional_signaling_draw(ER, sources.use = c('TAM')) f_CC_cmp_dysfunctional_signaling_draw(CC, sources.use = c('TAM')) dev.off()
tss <- f_CC_cmp_dysfunctional_signaling(SS) ter <- f_CC_cmp_dysfunctional_signaling(ER) tcc <- f_CC_cmp_dysfunctional_signaling(CC)
pdf(file = 'dysfunctional_signaling_TAM_t.pdf', height = 24, width = 24) par(mfrow = c(3,1), xpd=TRUE) f_CC_cmp_dysfunctional_signaling_draw(SS, f_res = tss, targets.use = c('TAM')) f_CC_cmp_dysfunctional_signaling_draw(ER, f_res = ter, targets.use = c('TAM')) f_CC_cmp_dysfunctional_signaling_draw(CC, f_res = tcc, targets.use = c('TAM')) dev.off()
pdf(file = 'dysfunctional_signaling_t.pdf', height = 24, width = 24) par(mfrow = c(3,1), xpd=TRUE) f_CC_cmp_dysfunctional_signaling_draw(SS, f_res = tss, targets.use = c('Fibroblasts')) f_CC_cmp_dysfunctional_signaling_draw(ER, f_res = ter, targets.use = c('Fibroblasts')) f_CC_cmp_dysfunctional_signaling_draw(CC, f_res = tcc, targets.use = c('Fibroblasts')) dev.off()
|