Lecture 15&16: Graph Theory and Systems Biology Flashcards

1
Q

How are Gene regulation networks expressed?

A

Nodes: Represent transcription factors (TFs) and controller genes. Transcription factors are proteins that regulate the expression of other genes

Edges: Represent gene regulatory interactions. These interactions can be either activation or repression.

Gene regulation is hierarchical - where a few master regulator genes control multiple lower level genes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How are metabolic networks regulated?

A
  1. Signaling network with proteins (de-) phosphorylate other proteins to transmit a signal.
  2. Gene regulation network with transcription factors bind to particular sequences in the genomic DNA to turn on/off other genes.
  3. This then increases/decreases the expression of particular enzymes which changes the processing of small molecules in metabolic pathways
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the KEGG database?

A

A comprehensive database that integrates information about biological pathways, genes, diseases, and drugs.

It is widely used in bioinformatics and systems biology for studying interactions within cellular systems.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do proteins interact with each other?

A

(De-)phosphorylation or other
modifications of amino acid
residues (in signaling pathways)

Allosteric activation (transcription
factors, enzymes)

Inhibitory binding (covering the
active site)

Physical closeness of enzymes
along metabolic pathway.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the properties of graphs when it comes to graph theory?

A

Node: A vertex which represents an entity that we wish to model that can have a defined relationship with other nodes

Edge: A connection between two vertices (nodes) that specifies some relationship between the vertices.

Adjacency: Two nodes are adjacent if connected by an edge

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are some of the graph topologies?

A

Directed: Edges have directionality

Undirected: Edges have no directionality

Cyclic: Possible to follow edges back to nodes

Acyclic: Not possible to return to nodes

Connected: All nodes connected together

Tree: There is only 1 path between any pair of nodes

Rooted tree: One root, where all edges are spouted ut from.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are some common algorithms in graph theory?

A

Graph Traversal: Systematic exploration of a graph by visiting nodes and edges.

Measure distance: Calculates the shortest path between two nodes.

Centrality: Determines the most “important” nodes in a network.

Bi-connected sub-graphs: Finds sub-networks where removing any single node does not disconnect the network.

Clique/sub-graph matching: Identifies complete sub-networks (cliques) where every node is connected.

Bridge detection: Identifies edges whose removal would disconnect the graph.

Cycle detection: Identifies circular paths where a node can be revisited.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are some common algorithms and their biological implication?

A

Graph Traversal: Enumerate all synthesis paths for a metabolite in a network

Measure distance: How closely related are two organisms

Centrality: Detect critical signaling proteins

Bi-connected sub-graphs: Find fault resilient sub graphs in signaling networks.

Clique/sub-graph matching: Fast detection of protein structures

Bridge detection: Find fault prone regions in signaling networks

Cycle detection: Find feedback loops in expression networks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are the steps in a context likelihood of relatedness algorithm?

A
  1. Gather all transcription data
  2. Calculate mutual information between expression levels of all pairs of genes
  3. Build an MI matrix
  4. Calculate a z-score for each putative TF and putative target.
  5. Calculate a joint z-score
  6. Any joint z-score over a particular threshold should be accepted as regulation.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly