Fundamentals of Network Biology
eBook - ePub

Fundamentals of Network Biology

  1. 568 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub

Fundamentals of Network Biology

About this book

-->

As the first comprehensive title on network biology, this book covers a wide range of subjects including scientific fundamentals (graphs, networks, etc) of network biology, construction and analysis of biological networks, methods for identifying crucial nodes in biological networks, link prediction, flow analysis, network dynamics, evolution, simulation and control, ecological networks, social networks, molecular and cellular networks, network pharmacology and network toxicology, big data analytics, and more.

Across 12 parts and 26 chapters, with Matlab codes provided for most models and algorithms, this self-contained title provides an in-depth and complete insight on network biology. It is a valuable read for high-level undergraduates and postgraduates in the areas of biology, ecology, environmental sciences, medical science, computational science, applied mathematics, and social science.

--> Contents:

  • Mathematical Fundamentals:
    • Fundamentals of Graph Theory
    • Graph Algorithms
    • Fundamentals of Network Theory
    • Other Fundamentals
  • Crucial Nodes/Subnetworks/Modules, Network Types, and Structural Comparison:
    • Identification of Crucial Nodes and Subnetworks/Modules
    • Detection of Network Types
    • Comparison of Network Structure
  • Network Dynamics, Evolution, Simulation and Control:
    • Network Dynamics
    • Network Robustness and Sensitivity Analysis
    • Network Control
    • Network Evolution
    • Cellular Automata
    • Self-Organization
    • Agent-based Modeling
  • Flow Analysis:
    • Flow/Flux Analysis
  • Link and Node Prediction:
    • Link Prediction: Sampling-based Methods
    • Link Prediction: Structure- and Perturbation-based Methods
    • Link Prediction: Node-Similarity-based Methods
    • Node Prediction
  • Network Construction:
    • Construction of Biological Networks
  • Pharmacological and Toxicological Networks:
    • Network Pharmacology and Toxicology
  • Ecological Networks:
    • Food Webs
  • Microscopic Networks:
    • Molecular and Cellular Networks
  • Social Networks:
    • Social Network Analysis
  • Software:
    • Software for Network Analysis
  • Big Data Analytics:
    • Big Data Analytics for Network Biology

-->
--> Readership: Advanced undergraduates and graduate students and researchers in biology, ecology, pharmacology, applied mathematics, computational science, etc. -->
Keywords:Network Biology;Network Analysis;Food Webs;Molecular Networks;Social Networks;Network Pharmacology;Link Prediction;Network Dynamics;Big Data Analytics;Software;Models;Algorithms;Nodes;LinksReview:0

Frequently asked questions

Yes, you can cancel anytime from the Subscription tab in your account settings on the Perlego website. Your subscription will stay active until the end of your current billing period. Learn how to cancel your subscription.
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
Perlego offers two plans: Essential and Complete
  • Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
  • Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Both plans are available with monthly, semester, or annual billing cycles.
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Yes! You can use the Perlego app on both iOS or Android devices to read anytime, anywhere — even offline. Perfect for commutes or when you’re on the go.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
Yes, you can access Fundamentals of Network Biology by WenJun Zhang in PDF and/or ePUB format, as well as other popular books in Medicine & Bioinformatics. We have over one million books available in our catalogue for you to explore.

Information

Publisher
WSPC (EUROPE)
Year
2018
eBook ISBN
9781786345103
Part 1
Mathematical Fundamentals
Chapter 1
Fundamentals of Graph Theory
Graph theory is one of the most important fundamental sciences of network biology. Graph theory is a mathematical science with a long history (Chan et al., 1982; Gross and Yellen, 2005; Zhang, 2012e). As early in 1736, Euler solved the well-known Königsberg Bridges Problem and published the first paper on graph theory. However, graph theory was widely known and began to develop rapidly until the late and mid-20th century.
1.1Definitions and Concepts
A graph is a space made of some vertices and edges that connect vertices. Figure 1 shows a graph with 9 vertices and 14 edges. In other words, a graph X is an ordered triplet (V(X), E(X), φ), or ordered pair (V(X), E(X), in which V(X) is the nonempty vertex set, with vertices as elements, E(X) is the set of edges, with edges as elements, and φ is the incidence function that associates each edge (e) of X and un-ordered vertices (u, v), where φ(e) = (u, v).
Two vertices associated with the same edge are called adjacent vertices. Two edges associated with the same vertex are called adjacent. Two edges associated with the same vertex are called adjacency edges. For example, the vertices v1 and v2 in Fig. 1 are adjacent; the edges e6 and e10 are adjacent, and they are adjacency edges.
The edge with the same terminal vertex is called loop, i.e., the edge is a loop, given φ(e) = (u, u). The edge with different initial and terminal vertices is called link. There is no loop in Fig. 1, and all edges in Fig. 1 are links.
image
Fig. 1 A graph with nine vertices and 14 edges (Zhang, 2012e).
The vertex without linking any edge is called isolated vertex.
The graph in Fig. 1 can be mathematically represented as follows:
image
or
image
The graph without any vertex and edge is a null graph, denoted by Ï•.
1.1.1Finite graph and infinite graph
A graph is a finite graph if it has a finite number of vertices (i.e., the vertex set V is a finite set) and a finite number of edges (i.e., the edge set E is a finite set). Figure 1 is a finite graph.
1.1.2Simple graph and planar graph
The edges e1 and e2 are called parallel edges, given φ(e1) = φ(e2). If a graph has neither loops nor parallel edges, it is called simple graph. Figure 1 is a simple graph. Figure 2(a) is not a simple graph. There is a loop (e2) and two parallel edges (e5, e6) in Fig. 2(a).
In a graph X, delete all loops, so that every pair of adjacent edges have one link only, the resulting simple graph is the basic simple graph of graph X.
In a graph in which any two edges do not intersect each other but they intersect at the endpoints is called planar graph, or else it is a nonplanar graph. A planar graph can be drawn on a plane in a simple way. Figure 1 is a planar graph, and Fig. 2(b) is a nonplanar graph.
image
Fig. 2 Nonsimple graph (a) and nonplanar graph and (b) (Zhang, 2012e).
1.1.3Subgraph, proper subgraph, spanning subgraph, complementary graph
Given
image
and
image
and φY is the restriction of φX on E(Y), Y is called the subgraph of X, denoted by
image
In this case, the vertex set and edge set of Y are subsets of the vertex set and edge set of X, respectively.
For example, in Fig. 1, the graph
image
is a subgraph of Fig. 1.
Given
image
and Y ≠ X, i.e., if the graph Y does not contain all edges of X, Y is called the proper subgraph of X. The Y above is the proper subgraph of Fig. 1.
Given V(Y) = V(X), i.e., if the subgraph Y contains all vertices of X, Y is the spanning subgraph of X. For example, remove the edges e7 and e8, the rest of the graph is a spanning subgraph of Fig. 1.
Suppose
image
and V′ is the vertex set, and the group of edges with two endpoints in V′, the ...

Table of contents

  1. Cover
  2. Halftitle
  3. Series Editors
  4. Title
  5. Copyright
  6. Preface
  7. About the Author
  8. Acknowledgments
  9. Contents
  10. Part 1 Mathematical Fundamentals
  11. Part 2 Crucial Nodes/Subnetworks/Modules, Network Types, and Structural Comparison
  12. Part 3 Network Dynamics, Evolution, Simulation, and Control
  13. Part 4 Flow Analysis
  14. Part 5 Link and Node Prediction
  15. Part 6 Network Construction
  16. Part 7 Pharmacological and Toxicological Networks
  17. Part 8 Ecological Networks
  18. Part 9 Microscopic Networks
  19. Part 10 Social Networks
  20. Part 11 Software
  21. Part 12 Big Data Analytics
  22. References
  23. Index