<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://teaching.healthtech.dtu.dk/22140/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Lronn</id>
	<title>22140 - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://teaching.healthtech.dtu.dk/22140/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Lronn"/>
	<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php/Special:Contributions/Lronn"/>
	<updated>2026-05-04T21:20:04Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=DiscoNet2_answers&amp;diff=159</id>
		<title>DiscoNet2 answers</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=DiscoNet2_answers&amp;diff=159"/>
		<updated>2024-11-28T10:57:04Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Community detection / protein complex inference */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Multiomics data integration exercise - Answers =&lt;br /&gt;
&#039;&#039;&#039;Answers written by:&#039;&#039;&#039; Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
First, load the data for today&#039;s exercise:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load(&amp;quot;/home/projects/22140/exercise10.Rdata&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then, randomly pick a patient number. Let&#039;s use R to make sure it is random:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mypt &amp;lt;- sample(1:10, 1)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For that patient calculate the log2 fold change of gene expression in cancer vs normal log2(cancer expression / normal expression). Consider genes with a log2 fold change either smaller than -1 (down regulated) or larger than 1 (up regulated) dysregulated. We also consider mutated genes (with a 1 in the mutation column) as aberrated (aka nonsynonymous), so you should keep these as well. Save a list of dysregulated and/or aberrated genes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
pt &amp;lt;- as.data.frame(data[[mypt]])&lt;br /&gt;
pt$log2fc &amp;lt;- log2(pt$tumor/pt$normal)&lt;br /&gt;
pt$gene &amp;lt;- rownames(pt)&lt;br /&gt;
seed &amp;lt;- rownames(pt[abs(pt$log2fc) &amp;gt; 1 | pt$mutation == 1,])&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #1:&#039;&#039;&#039;&lt;br /&gt;
* What patient did you pick?&lt;br /&gt;
* How many genes are up or down regulated?&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
table(abs(pt$log2fc) &amp;gt; 1)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Depends on your sample. Somewhere between 4 and 100.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Is the number of dysregulated genes what you would expect from a disease like cancer?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Given that cancer arises from normal cells, you would expect the cancer cells to be somewhat similar to their cognate, normal cells. However, as we learned from reading the Hallmarks paper, cancer dysregulates a number of cellular functions, and for this I would probably guess between 100 and 1000 genes to be dysregulated.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* How many genes harbor nonsynonymous mutations (Note: we only report nonsynonymous mutations in this data. Synonymous mutations have already been removed)?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Depends on your sample. Somewhere between 1 and 32.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Theoretical question: Discuss the biological connection, or lack thereof, between nonsynonymous mutations and de-regulated of a) mutation and expression of the same gene and b) mutations in one gene and the expression of other genes. Use a maximum of 75 words. &lt;br /&gt;
For the patient sample you picked, make a node attribute table containing the following columns: “Gene”, “log2FC”, “somatic_mutations” (either 0 or 1) for &#039;&#039;all&#039;&#039; genes.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Somatic mutations are stochastic events + selective pressure. Generally speaking, expression of a gene and its mutation status may not necessary correlate. However, in theory a loss of function mutation may activate a feedback loop increasing expression of the gene, and likewise a gain of function mutation may decrease expression resulting from feedback. Lastly, mutations of some genes may affect the expression of others. This is known as &amp;quot;expression quantitative trait loci&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Virtual pulldown ==&lt;br /&gt;
Load the DiscoNet package and prepare the inweb database:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
library(DiscoNet)&lt;br /&gt;
&lt;br /&gt;
### Load translated database&lt;br /&gt;
load(file=&#039;/home/projects/22140/inweb_reduced.Rdata&#039;) # db&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then, use the virtual_pulldown() function that you used last week, to perform a virtual pulldown with all dysregulated &#039;&#039;and/or&#039;&#039; mutated genes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
network &amp;lt;- virtual_pulldown(seed_nodes = seed, database = db_reduced, id_type = &amp;quot;hgnc&amp;quot;, zs_confidence_score = 0.156)&lt;br /&gt;
interactions &amp;lt;- data.frame(network$network)&lt;br /&gt;
node_attributes &amp;lt;- data.frame(network$node_attributes)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #2:&#039;&#039;&#039;&lt;br /&gt;
* How does a virtual pulldown work?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;It identifies proteins interacting with your input proteins, and…&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What experiment does it simulate?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;…Simulates a complex pulldown experiment&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What database does it query?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;The InWeb database of protein-protein interactions&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What does the confidence score mean?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;The experimental confidence we have in the interaction&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Is the default cutoff of 0.156 reasonable? Why/why not?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;In this context, it would appear so as we don’t get massive hairballs, nor do we get empty networks. In a real life research project, one would try multiple different thresholds and assess whether cluster member nodes share functional features to a degree where they can be considered a protein complex, or whether there a glaring outliers in terms of function, which should be filtered out&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
We changed the package based on your excellent feedback last week. Now, the virtual_pulldown() function produces an interaction table (in the $network object), with confidence scores as edge attributes and a node attribute table (in the $node_attributes object) with a seed indicator and a topological score for each node.&lt;br /&gt;
&lt;br /&gt;
Use the merge() function to add log2FC and mutation status to the node attribute table. Here&#039;s a hint so you don&#039;t spend too much time on this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
node_attributes &amp;lt;- merge(x = node_attributes, y = pt, by.x = &amp;quot;nodes&amp;quot;, by.y = &amp;quot;gene&amp;quot;, all.x = TRUE)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Make sure you understand what goes on in the function above.&lt;br /&gt;
&lt;br /&gt;
Use the function graph_from_data_frame() to make an igraph object. Remember to make it undirected and add node attributes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
g &amp;lt;- graph_from_data_frame(interactions, directed = FALSE, vertices = node_attributes)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Use the relevance_filtering() function to make 3 different versions of the pulldown, with cutoffs &amp;quot;0&amp;quot;, &amp;quot;0.5&amp;quot;, &amp;quot;0.8&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
g1 &amp;lt;- relevance_filtering(g, 0.0)&lt;br /&gt;
g2 &amp;lt;- relevance_filtering(g, 0.5)&lt;br /&gt;
g3 &amp;lt;- relevance_filtering(g, 0.8)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #3:&#039;&#039;&#039;&lt;br /&gt;
* How many nodes/edges are in your three pulldown networks? (answer depends on which patient you chose, but you can find out by examining the graph objects)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&lt;br /&gt;
g1&lt;br /&gt;
g2&lt;br /&gt;
g3&lt;br /&gt;
&#039;&#039;&lt;br /&gt;
* Plot the 0.8 filtered pulldown network, colored by log2FC and mutated genes highlighted with a shape, and seed nodes highlighted in some other way. Make sure the plots added to the report are easy to read.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ggraph(g3) +&lt;br /&gt;
  geom_edge_link() +&lt;br /&gt;
  geom_node_point(aes(color = log2fc, shape = as.factor(mutation)), size = 5) +&lt;br /&gt;
  scale_color_gradient2(low = &amp;quot;red&amp;quot;, mid = &amp;quot;white&amp;quot;, high = &amp;quot;blue&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Does the networks look as you would expect in terms of which genes are up or down regulated or mutated? I.e. is the mutation status generally related to expression status? What would you expect?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;For the following exercises use the network with a cutoff of 0.8&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Community detection / protein complex inference ==&lt;br /&gt;
Run the community_detection() function with the MCODE algorithm with parameters D = 0.05, haircut = TRUE, fluff = FALSE. The resulting communities may represent protein complexes that could be causative or indicative of the disease.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
communities &amp;lt;- community_detection(g3, algorithm = &amp;quot;mcode&amp;quot;, D = 0.05, haircut = TRUE, fluff = FALSE, fdt = 0.8, loops = FALSE)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #4:&#039;&#039;&#039;&lt;br /&gt;
* How many nodes/edges are in your top 25 scoring communities (note: you many not have this many, in which case just report nodes/edges for all of them)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
lapply(communities[[1]], function(x) paste(vcount(x), ecount(x)))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* How is the community score from MCODE calculate and what does it mean?&lt;br /&gt;
&lt;br /&gt;
* Have a quick look [here|https://en.wikipedia.org/wiki/Protein_complex]. What do you expect a protein complex to look like? How many proteins? What clustering coefficient (how densely clustered)? Why?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;A protein complex is a group of proteins forming a quaternary structure to perform a given function. As such, one would not expect, e.g. five proteins linked together by single edges to form a long string to constitute a protein complex. Similarly, 200 proteins in a hairball probably wouldn’t be a protein complex either.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Based on node/edge counts alone, which of your communities could be complexes?&lt;br /&gt;
&#039;&#039;Answer of course depends on your choice of patient sample, but generally you are looking networks with between 3 and 20ish nodes - pick a community that satisfies this and plot it&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
chosen_community &amp;lt;- 3&lt;br /&gt;
ggraph(communities$communities[[chosen_community]]) +&lt;br /&gt;
  geom_edge_link() +&lt;br /&gt;
  geom_node_point(aes(color = log2fc, shape = as.factor(mutation)), size = 5) +&lt;br /&gt;
  geom_node_text(aes(label = name), size = 10, repel = TRUE) +&lt;br /&gt;
  scale_color_gradient2(low = &amp;quot;red&amp;quot;, mid = &amp;quot;white&amp;quot;, high = &amp;quot;blue&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Gene ontology over-representation analysis ==&lt;br /&gt;
Now use the the fora() function from fgsea to perform an over-representation analysis on all the detected communities. Use the full list of genes from the exercise data as your background, and the biological process ontology.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
library(fgsea)&lt;br /&gt;
library(msigdbr)&lt;br /&gt;
# First, fetch gene sets&lt;br /&gt;
BP_df = msigdbr(species = &amp;quot;human&amp;quot;, category = &amp;quot;C5&amp;quot;, subcategory = &amp;quot;BP&amp;quot;)&lt;br /&gt;
BP_list = split(x = BP_df$gene_symbol, f = BP_df$gs_name)&lt;br /&gt;
# repeat the analysis below with the communities you deem to be potential protein complexes&lt;br /&gt;
fora(pathways = BP_list, genes = V(communities$communities[[1]])$name, universe = rownames(pt))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note&#039;&#039;&#039;: If you get a timeout error just run the function again.&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #5:&#039;&#039;&#039;&lt;br /&gt;
* Why are we asking you to use the &amp;quot;full list of genes&amp;quot; from the microarray as the background, and not &#039;&#039;all&#039;&#039; human genes? (Note that microarrays, while comprehensive, do not have probes for every single human gene).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Because we don&#039;t know what the result would be for genes we did not measure&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What does an over-representation test do?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Whether certain GO terms are found at a higher frequency in a target list of genes than their frequency in background of all genes.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What is “over-represented” and where?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GO terms in the target genes&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Interpreting the results of the over-representation analysis ==&lt;br /&gt;
Relate functions of the significantly over-represented GO terms in each of the top 25 protein complexes to the hallmarks of cancer. Keep in mind that neither all complexes, nor all GO terms are necessarily related to cancer.&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #6:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 6.1) Do any of your complexes relate to one or more of the hallmarks of cancer? How? (You will probably need to search Google here – try [GO term]+cancer or even [GO term]+”follicular thyroid cancer”).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This depends on your sample, your clusters, and how thorough you are at checking what your GO terms mean. &#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* 6.2) If you cannot reasonably relate some of the GO terms to a cancer hallmark (and it is not unlikely that you cannot!), why do you think these non-cancer related ontologies are over-represented?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Given that we are looking at thyroid tissue either way (healthy or sick), we expect some thyroid functions to turn up in the list.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* 6.3) Plot the three communities you find most interesting in the context of follicular thyroid cancer. Highlight log2FC, mutation status, and seed nodes&lt;br /&gt;
* 6.4) How do you think these dysregulated protein complexes may drive cancer pathogenesis?&lt;br /&gt;
* 6.5) For the targets of your three chosen protein complexes, pick the protein best suited as a drug target and explain why based on what you have learned about network topology.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Again, the answers to the three questions above, depends on what sample you have been working on. I chose patient 1 and a relevance score cutoff of 0.8. My community number 2 looks like this:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Community2.png|500px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Running an over-representation analysis of the complex, reveals multiple GO terms related to cell cycle and devision. Looking closer at the dysregulated genes in the complex, tells me that CDC27 might be the culprit here. I then decided to Google the gene and discovered that &amp;quot;CDC27 Facilitates Gastric Cancer Cell Proliferation, Invasion and Metastasis via Twist-Induced Epithelial-Mesenchymal Transition&amp;quot; (https://pubmed.ncbi.nlm.nih.gov/30308498/)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;In terms of targeting, CDC27 seems like an obvious choice, since this is a small complex and all nodes have the same degree. Had the complex been larger, it could have made sense to look at the degree and betweenness centrality of the nodes as targeting hubs is a generally a good way disrupt a network&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=DiscoNet2_answers&amp;diff=158</id>
		<title>DiscoNet2 answers</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=DiscoNet2_answers&amp;diff=158"/>
		<updated>2024-11-28T10:56:40Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Multiomics data integration exercise - Answers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Multiomics data integration exercise - Answers =&lt;br /&gt;
&#039;&#039;&#039;Answers written by:&#039;&#039;&#039; Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
First, load the data for today&#039;s exercise:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load(&amp;quot;/home/projects/22140/exercise10.Rdata&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then, randomly pick a patient number. Let&#039;s use R to make sure it is random:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mypt &amp;lt;- sample(1:10, 1)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For that patient calculate the log2 fold change of gene expression in cancer vs normal log2(cancer expression / normal expression). Consider genes with a log2 fold change either smaller than -1 (down regulated) or larger than 1 (up regulated) dysregulated. We also consider mutated genes (with a 1 in the mutation column) as aberrated (aka nonsynonymous), so you should keep these as well. Save a list of dysregulated and/or aberrated genes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
pt &amp;lt;- as.data.frame(data[[mypt]])&lt;br /&gt;
pt$log2fc &amp;lt;- log2(pt$tumor/pt$normal)&lt;br /&gt;
pt$gene &amp;lt;- rownames(pt)&lt;br /&gt;
seed &amp;lt;- rownames(pt[abs(pt$log2fc) &amp;gt; 1 | pt$mutation == 1,])&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #1:&#039;&#039;&#039;&lt;br /&gt;
* What patient did you pick?&lt;br /&gt;
* How many genes are up or down regulated?&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
table(abs(pt$log2fc) &amp;gt; 1)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Depends on your sample. Somewhere between 4 and 100.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Is the number of dysregulated genes what you would expect from a disease like cancer?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Given that cancer arises from normal cells, you would expect the cancer cells to be somewhat similar to their cognate, normal cells. However, as we learned from reading the Hallmarks paper, cancer dysregulates a number of cellular functions, and for this I would probably guess between 100 and 1000 genes to be dysregulated.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* How many genes harbor nonsynonymous mutations (Note: we only report nonsynonymous mutations in this data. Synonymous mutations have already been removed)?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Depends on your sample. Somewhere between 1 and 32.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Theoretical question: Discuss the biological connection, or lack thereof, between nonsynonymous mutations and de-regulated of a) mutation and expression of the same gene and b) mutations in one gene and the expression of other genes. Use a maximum of 75 words. &lt;br /&gt;
For the patient sample you picked, make a node attribute table containing the following columns: “Gene”, “log2FC”, “somatic_mutations” (either 0 or 1) for &#039;&#039;all&#039;&#039; genes.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Somatic mutations are stochastic events + selective pressure. Generally speaking, expression of a gene and its mutation status may not necessary correlate. However, in theory a loss of function mutation may activate a feedback loop increasing expression of the gene, and likewise a gain of function mutation may decrease expression resulting from feedback. Lastly, mutations of some genes may affect the expression of others. This is known as &amp;quot;expression quantitative trait loci&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Virtual pulldown ==&lt;br /&gt;
Load the DiscoNet package and prepare the inweb database:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
library(DiscoNet)&lt;br /&gt;
&lt;br /&gt;
### Load translated database&lt;br /&gt;
load(file=&#039;/home/projects/22140/inweb_reduced.Rdata&#039;) # db&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then, use the virtual_pulldown() function that you used last week, to perform a virtual pulldown with all dysregulated &#039;&#039;and/or&#039;&#039; mutated genes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
network &amp;lt;- virtual_pulldown(seed_nodes = seed, database = db_reduced, id_type = &amp;quot;hgnc&amp;quot;, zs_confidence_score = 0.156)&lt;br /&gt;
interactions &amp;lt;- data.frame(network$network)&lt;br /&gt;
node_attributes &amp;lt;- data.frame(network$node_attributes)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #2:&#039;&#039;&#039;&lt;br /&gt;
* How does a virtual pulldown work?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;It identifies proteins interacting with your input proteins, and…&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What experiment does it simulate?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;…Simulates a complex pulldown experiment&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What database does it query?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;The InWeb database of protein-protein interactions&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What does the confidence score mean?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;The experimental confidence we have in the interaction&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Is the default cutoff of 0.156 reasonable? Why/why not?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;In this context, it would appear so as we don’t get massive hairballs, nor do we get empty networks. In a real life research project, one would try multiple different thresholds and assess whether cluster member nodes share functional features to a degree where they can be considered a protein complex, or whether there a glaring outliers in terms of function, which should be filtered out&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
We changed the package based on your excellent feedback last week. Now, the virtual_pulldown() function produces an interaction table (in the $network object), with confidence scores as edge attributes and a node attribute table (in the $node_attributes object) with a seed indicator and a topological score for each node.&lt;br /&gt;
&lt;br /&gt;
Use the merge() function to add log2FC and mutation status to the node attribute table. Here&#039;s a hint so you don&#039;t spend too much time on this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
node_attributes &amp;lt;- merge(x = node_attributes, y = pt, by.x = &amp;quot;nodes&amp;quot;, by.y = &amp;quot;gene&amp;quot;, all.x = TRUE)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Make sure you understand what goes on in the function above.&lt;br /&gt;
&lt;br /&gt;
Use the function graph_from_data_frame() to make an igraph object. Remember to make it undirected and add node attributes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
g &amp;lt;- graph_from_data_frame(interactions, directed = FALSE, vertices = node_attributes)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Use the relevance_filtering() function to make 3 different versions of the pulldown, with cutoffs &amp;quot;0&amp;quot;, &amp;quot;0.5&amp;quot;, &amp;quot;0.8&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
g1 &amp;lt;- relevance_filtering(g, 0.0)&lt;br /&gt;
g2 &amp;lt;- relevance_filtering(g, 0.5)&lt;br /&gt;
g3 &amp;lt;- relevance_filtering(g, 0.8)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #3:&#039;&#039;&#039;&lt;br /&gt;
* How many nodes/edges are in your three pulldown networks? (answer depends on which patient you chose, but you can find out by examining the graph objects)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&lt;br /&gt;
g1&lt;br /&gt;
g2&lt;br /&gt;
g3&lt;br /&gt;
&#039;&#039;&lt;br /&gt;
* Plot the 0.8 filtered pulldown network, colored by log2FC and mutated genes highlighted with a shape, and seed nodes highlighted in some other way. Make sure the plots added to the report are easy to read.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ggraph(g3) +&lt;br /&gt;
  geom_edge_link() +&lt;br /&gt;
  geom_node_point(aes(color = log2fc, shape = as.factor(mutation)), size = 5) +&lt;br /&gt;
  scale_color_gradient2(low = &amp;quot;red&amp;quot;, mid = &amp;quot;white&amp;quot;, high = &amp;quot;blue&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Does the networks look as you would expect in terms of which genes are up or down regulated or mutated? I.e. is the mutation status generally related to expression status? What would you expect?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;For the following exercises use the network with a cutoff of 0.8&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Community detection / protein complex inference ==&lt;br /&gt;
Run the community_detection() function with the MCODE algorithm with parameters D = 0.05, haircut = TRUE, fluff = FALSE. The resulting communities may represent protein complexes that could be causative or indicative of the disease.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
communities &amp;lt;- community_detection(g3, algorithm = &amp;quot;mcode&amp;quot;, D = 0.05, haircut = TRUE, fluff = FALSE, fdt = 0.8, loops = FALSE)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #4:&#039;&#039;&#039;&lt;br /&gt;
* How many nodes/edges are in your top 25 scoring communities (note: you many not have this many, in which case just report nodes/edges for all of them)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
lapply(communities[[1]], function(x) paste(vcount(x), ecount(x)))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* How is the community score from MCODE calculate and what does it mean?&lt;br /&gt;
&lt;br /&gt;
* Have a quick look [here|https://en.wikipedia.org/wiki/Protein_complex]. What do you expect a protein complex to look like? How many proteins? What clustering coefficient (how densely clustered)? Why?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;A protein complex is a group of proteins forming a quaternary structure to perform a given function. As such, one would not expect, e.g. five proteins linked together by single edges to form a long string to constitute a protein complex. Similarly, 200 proteins in a hairball probably wouldn’t be a protein complex either.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Based on node/edge counts alone, which of your communities could be complexes?&lt;br /&gt;
&#039;&#039;Answer of course depends on your choice of patient sample, but generally you are looking networks with between 3 and 20ish nodes - pick a community that satisfies this and plot it&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
chosen_community &amp;lt;- 3&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ggraph(communities$communities[[chosen_community]]) +&lt;br /&gt;
  geom_edge_link() +&lt;br /&gt;
  geom_node_point(aes(color = log2fc, shape = as.factor(mutation)), size = 5) +&lt;br /&gt;
  geom_node_text(aes(label = name), size = 10, repel = TRUE) +&lt;br /&gt;
  scale_color_gradient2(low = &amp;quot;red&amp;quot;, mid = &amp;quot;white&amp;quot;, high = &amp;quot;blue&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Gene ontology over-representation analysis ==&lt;br /&gt;
Now use the the fora() function from fgsea to perform an over-representation analysis on all the detected communities. Use the full list of genes from the exercise data as your background, and the biological process ontology.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
library(fgsea)&lt;br /&gt;
library(msigdbr)&lt;br /&gt;
# First, fetch gene sets&lt;br /&gt;
BP_df = msigdbr(species = &amp;quot;human&amp;quot;, category = &amp;quot;C5&amp;quot;, subcategory = &amp;quot;BP&amp;quot;)&lt;br /&gt;
BP_list = split(x = BP_df$gene_symbol, f = BP_df$gs_name)&lt;br /&gt;
# repeat the analysis below with the communities you deem to be potential protein complexes&lt;br /&gt;
fora(pathways = BP_list, genes = V(communities$communities[[1]])$name, universe = rownames(pt))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note&#039;&#039;&#039;: If you get a timeout error just run the function again.&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #5:&#039;&#039;&#039;&lt;br /&gt;
* Why are we asking you to use the &amp;quot;full list of genes&amp;quot; from the microarray as the background, and not &#039;&#039;all&#039;&#039; human genes? (Note that microarrays, while comprehensive, do not have probes for every single human gene).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Because we don&#039;t know what the result would be for genes we did not measure&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What does an over-representation test do?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Whether certain GO terms are found at a higher frequency in a target list of genes than their frequency in background of all genes.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What is “over-represented” and where?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GO terms in the target genes&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Interpreting the results of the over-representation analysis ==&lt;br /&gt;
Relate functions of the significantly over-represented GO terms in each of the top 25 protein complexes to the hallmarks of cancer. Keep in mind that neither all complexes, nor all GO terms are necessarily related to cancer.&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #6:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 6.1) Do any of your complexes relate to one or more of the hallmarks of cancer? How? (You will probably need to search Google here – try [GO term]+cancer or even [GO term]+”follicular thyroid cancer”).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This depends on your sample, your clusters, and how thorough you are at checking what your GO terms mean. &#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* 6.2) If you cannot reasonably relate some of the GO terms to a cancer hallmark (and it is not unlikely that you cannot!), why do you think these non-cancer related ontologies are over-represented?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Given that we are looking at thyroid tissue either way (healthy or sick), we expect some thyroid functions to turn up in the list.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* 6.3) Plot the three communities you find most interesting in the context of follicular thyroid cancer. Highlight log2FC, mutation status, and seed nodes&lt;br /&gt;
* 6.4) How do you think these dysregulated protein complexes may drive cancer pathogenesis?&lt;br /&gt;
* 6.5) For the targets of your three chosen protein complexes, pick the protein best suited as a drug target and explain why based on what you have learned about network topology.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Again, the answers to the three questions above, depends on what sample you have been working on. I chose patient 1 and a relevance score cutoff of 0.8. My community number 2 looks like this:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Community2.png|500px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Running an over-representation analysis of the complex, reveals multiple GO terms related to cell cycle and devision. Looking closer at the dysregulated genes in the complex, tells me that CDC27 might be the culprit here. I then decided to Google the gene and discovered that &amp;quot;CDC27 Facilitates Gastric Cancer Cell Proliferation, Invasion and Metastasis via Twist-Induced Epithelial-Mesenchymal Transition&amp;quot; (https://pubmed.ncbi.nlm.nih.gov/30308498/)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;In terms of targeting, CDC27 seems like an obvious choice, since this is a small complex and all nodes have the same degree. Had the complex been larger, it could have made sense to look at the degree and betweenness centrality of the nodes as targeting hubs is a generally a good way disrupt a network&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=DiscoNet2_answers&amp;diff=157</id>
		<title>DiscoNet2 answers</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=DiscoNet2_answers&amp;diff=157"/>
		<updated>2024-11-28T10:39:01Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Multiomics data integration exercise - Answers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Multiomics data integration exercise - Answers =&lt;br /&gt;
&#039;&#039;&#039;Answers written by:&#039;&#039;&#039; Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
First, load the data for today&#039;s exercise:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load(&amp;quot;/home/projects/22140/exercise10.Rdata&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then, randomly pick a patient number. Let&#039;s use R to make sure it is random:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mypt &amp;lt;- sample(1:10, 1)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For that patient calculate the log2 fold change of gene expression in cancer vs normal log2(cancer expression / normal expression). Consider genes with a log2 fold change either smaller than -1 (down regulated) or larger than 1 (up regulated) dysregulated. We also consider mutated genes (with a 1 in the mutation column) as aberrated (aka nonsynonymous), so you should keep these as well. Save a list of dysregulated and/or aberrated genes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
pt &amp;lt;- as.data.frame(data[[mypt]])&lt;br /&gt;
pt$log2fc &amp;lt;- log2(pt$tumor/pt$normal)&lt;br /&gt;
pt$gene &amp;lt;- rownames(pt)&lt;br /&gt;
seed &amp;lt;- rownames(pt[abs(pt$log2fc) &amp;gt; 1 | pt$mutation == 1,])&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #1:&#039;&#039;&#039;&lt;br /&gt;
* What patient did you pick?&lt;br /&gt;
* How many genes are up or down regulated?&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
table(pt[abs(pt$log2fc) &amp;gt; 1,])&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Depends on your sample. Somewhere between 4 and 100.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Is the number of dysregulated genes what you would expect from a disease like cancer?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Given that cancer arises from normal cells, you would expect the cancer cells to be somewhat similar to their cognate, normal cells. However, as we learned from reading the Hallmarks paper, cancer dysregulates a number of cellular functions, and for this I would probably guess between 100 and 1000 genes to be dysregulated.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* How many genes harbor nonsynonymous mutations (Note: we only report nonsynonymous mutations in this data. Synonymous mutations have already been removed)?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Depends on your sample. Somewhere between 1 and 32.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Theoretical question: Discuss the biological connection, or lack thereof, between nonsynonymous mutations and de-regulated of a) mutation and expression of the same gene and b) mutations in one gene and the expression of other genes. Use a maximum of 75 words. &lt;br /&gt;
For the patient sample you picked, make a node attribute table containing the following columns: “Gene”, “log2FC”, “somatic_mutations” (either 0 or 1) for &#039;&#039;all&#039;&#039; genes.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Somatic mutations are stochastic events + selective pressure. Generally speaking, expression of a gene and its mutation status may not necessary correlate. However, in theory a loss of function mutation may activate a feedback loop increasing expression of the gene, and likewise a gain of function mutation may decrease expression resulting from feedback. Lastly, mutations of some genes may affect the expression of others. This is known as &amp;quot;expression quantitative trait loci&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Virtual pulldown ==&lt;br /&gt;
Load the DiscoNet package and prepare the inweb database:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
library(DiscoNet)&lt;br /&gt;
&lt;br /&gt;
### Load translated database&lt;br /&gt;
load(file=&#039;/home/projects/22140/inweb.Rdata&#039;) # db&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then, use the virtual_pulldown() function that you used last week, to perform a virtual pulldown with all dysregulated &#039;&#039;and/or&#039;&#039; mutated genes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
network &amp;lt;- virtual_pulldown(seed_nodes = seed, database = db, id_type = &amp;quot;hgnc&amp;quot;, zs_confidence_score = 0.156)&lt;br /&gt;
interactions &amp;lt;- data.frame(network$network)&lt;br /&gt;
node_attributes &amp;lt;- data.frame(network$node_attributes)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #2:&#039;&#039;&#039;&lt;br /&gt;
* How does a virtual pulldown work?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;It identifies proteins interacting with your input proteins, and…&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What experiment does it simulate?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;…Simulates a complex pulldown experiment&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What database does it query?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;The InWeb database of protein-protein interactions&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What does the confidence score mean?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;The experimental confidence we have in the interaction&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Is the default cutoff of 0.156 reasonable? Why/why not?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;In this context, it would appear so as we don’t get massive hairballs, nor do we get empty networks. In a real life research project, one would try multiple different thresholds and assess whether cluster member nodes share functional features to a degree where they can be considered a protein complex, or whether there a glaring outliers in terms of function, which should be filtered out&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
We changed the package based on your excellent feedback last week. Now, the virtual_pulldown() function produces an interaction table (in the $network object), with confidence scores as edge attributes and a node attribute table (in the $node_attributes object) with a seed indicator and a topological score for each node.&lt;br /&gt;
&lt;br /&gt;
Use the merge() function to add log2FC and mutation status to the node attribute table. Here&#039;s a hint so you don&#039;t spend too much time on this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
node_attributes &amp;lt;- merge(x = node_attributes, y = pt, by.x = &amp;quot;nodes&amp;quot;, by.y = &amp;quot;gene&amp;quot;, all.x = TRUE)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Make sure you understand what goes on in the function above.&lt;br /&gt;
&lt;br /&gt;
Use the function graph_from_data_frame() to make an igraph object. Remember to make it undirected and add node attributes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
g &amp;lt;- graph_from_data_frame(interactions, directed = FALSE, vertices = node_attributes)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Use the relevance_filtering() function to make 3 different versions of the pulldown, with cutoffs &amp;quot;0&amp;quot;, &amp;quot;0.5&amp;quot;, &amp;quot;0.8&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
g1 &amp;lt;- relevance_filtering(g, 0.0)&lt;br /&gt;
g1 &amp;lt;- relevance_filtering(g, 0.5)&lt;br /&gt;
g1 &amp;lt;- relevance_filtering(g, 0.8)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #3:&#039;&#039;&#039;&lt;br /&gt;
* How many nodes/edges are in your three pulldown networks?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;1974/63033&lt;br /&gt;
592/18079&lt;br /&gt;
307/6764&lt;br /&gt;
&#039;&#039;&lt;br /&gt;
* Plot the 0.8 filtered pulldown network, colored by log2FC and mutated genes highlighted with a shape, and seed nodes highlighted in some other way. Make sure the plots added to the report are easy to read.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ggraph(g1) +&lt;br /&gt;
  geom_edge_link() +&lt;br /&gt;
  geom_node_point(aes(color = log2fc, shape = as.factor(mutation)), size = 5) +&lt;br /&gt;
  scale_color_gradient2(low = &amp;quot;red&amp;quot;, mid = &amp;quot;white&amp;quot;, high = &amp;quot;blue&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Does the networks look as you would expect in terms of which genes are up or down regulated or mutated? I.e. is the mutation status generally related to expression status? What would you expect?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;For the following exercises use the network with a cutoff of 0.8&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Community detection / protein complex inference ==&lt;br /&gt;
Run the community_detection() function with the MCODE algorithm with parameters D = 0.05, haircut = TRUE, fluff = FALSE. The resulting communities may represent protein complexes that could be causative or indicative of the disease.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
communities &amp;lt;- community_detection(g1, algorithm = &amp;quot;mcode&amp;quot;, D = 0.05, haircut = TRUE, fluff = FALSE, fdt = 0.8, loops = FALSE)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #4:&#039;&#039;&#039;&lt;br /&gt;
* How many nodes/edges are in your top 25 scoring communities (note: you many not have this many, in which case just report nodes/edges for all of them)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
lapply(communities[[1]], function(x) paste(vcount(x), ecount(x)))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* How is the community score from MCODE calculate and what does it mean?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Have a quick look [here|https://en.wikipedia.org/wiki/Protein_complex]. What do you expect a protein complex to look like? How many proteins? What clustering coefficient (how densely clustered)? Why?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;A protein complex is a group of proteins forming a quaternary structure to perform a given function. As such, one would not expect, e.g. five proteins linked together by single edges to form a long string to constitute a protein complex. Similarly, 200 proteins in a hairball probably wouldn’t be a protein complex either.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Based on node/edge counts alone, which of your communities could be complexes?&lt;br /&gt;
&#039;&#039;Probably all but the top one with 81 nodes and 3242 edges. Let&#039;s proceed with community 3&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ggraph(communities$communities[[3]]) +&lt;br /&gt;
  geom_edge_link() +&lt;br /&gt;
  geom_node_point(aes(color = log2fc, shape = as.factor(mutation)), size = 5) +&lt;br /&gt;
  geom_node_text(aes(label = name), size = 10, repel = TRUE) +&lt;br /&gt;
  scale_color_gradient2(low = &amp;quot;red&amp;quot;, mid = &amp;quot;white&amp;quot;, high = &amp;quot;blue&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Gene ontology over-representation analysis ==&lt;br /&gt;
Now use the the fora() function from fgsea to perform an over-representation analysis on all the detected communities. Use the full list of genes from the exercise data as your background, and the biological process ontology.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
library(fgsea)&lt;br /&gt;
library(msigdbr)&lt;br /&gt;
# First, fetch gene sets&lt;br /&gt;
BP_df = msigdbr(species = &amp;quot;human&amp;quot;, category = &amp;quot;C5&amp;quot;, subcategory = &amp;quot;BP&amp;quot;)&lt;br /&gt;
BP_list = split(x = BP_df$gene_symbol, f = BP_df$gs_name)&lt;br /&gt;
# repeat the analysis below with the communities you deem to be potential protein complexes&lt;br /&gt;
fora(pathways = BP_list, genes = V(communities$communities[[1]])$name, universe = rownames(pt))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note&#039;&#039;&#039;: If you get a timeout error just run the function again.&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #5:&#039;&#039;&#039;&lt;br /&gt;
* Why are we asking you to use the &amp;quot;full list of genes&amp;quot; from the microarray as the background, and not &#039;&#039;all&#039;&#039; human genes? (Note that microarrays, while comprehensive, do not have probes for every single human gene).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Because we don&#039;t know what the result would be for genes we did not measure&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What does an over-representation test do?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Whether certain GO terms are found at a higher frequency in a target list of genes than their frequency in background of all genes.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What is “over-represented” and where?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GO terms in the target genes&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Interpreting the results of the over-representation analysis ==&lt;br /&gt;
Relate functions of the significantly over-represented GO terms in each of the top 25 protein complexes to the hallmarks of cancer. Keep in mind that neither all complexes, nor all GO terms are necessarily related to cancer.&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #6:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 6.1) Do any of your complexes relate to one or more of the hallmarks of cancer? How? (You will probably need to search Google here – try [GO term]+cancer or even [GO term]+”follicular thyroid cancer”).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This depends on your sample, your clusters, and how thorough you are at checking what your GO terms mean. &#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* 6.2) If you cannot reasonably relate some of the GO terms to a cancer hallmark (and it is not unlikely that you cannot!), why do you think these non-cancer related ontologies are over-represented?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Given that we are looking at thyroid tissue either way (healthy or sick), we expect some thyroid functions to turn up in the list.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* 6.3) Plot the three communities you find most interesting in the context of follicular thyroid cancer. Highlight log2FC, mutation status, and seed nodes&lt;br /&gt;
* 6.4) How do you think these dysregulated protein complexes may drive cancer pathogenesis?&lt;br /&gt;
* 6.5) For the targets of your three chosen protein complexes, pick the protein best suited as a drug target and explain why based on what you have learned about network topology.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Again, the answers to the three questions above, depends on what sample you have been working on. I chose patient 1 and a relevance score cutoff of 0.8. My community number 2 looks like this:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Community2.png|500px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Running an over-representation analysis of the complex, reveals multiple GO terms related to cell cycle and devision. Looking closer at the dysregulated genes in the complex, tells me that CDC27 might be the culprit here. I then decided to Google the gene and discovered that &amp;quot;CDC27 Facilitates Gastric Cancer Cell Proliferation, Invasion and Metastasis via Twist-Induced Epithelial-Mesenchymal Transition&amp;quot; (https://pubmed.ncbi.nlm.nih.gov/30308498/)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;In terms of targeting, CDC27 seems like an obvious choice, since this is a small complex and all nodes have the same degree. Had the complex been larger, it could have made sense to look at the degree and betweenness centrality of the nodes as targeting hubs is a generally a good way disrupt a network&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=DiscoNet2&amp;diff=156</id>
		<title>DiscoNet2</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=DiscoNet2&amp;diff=156"/>
		<updated>2024-11-28T08:14:28Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Virtual pulldown */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Multiomics data integration exercise =&lt;br /&gt;
&#039;&#039;&#039;Exercise written by:&#039;&#039;&#039; Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Learning objectives:&#039;&#039;&#039;&lt;br /&gt;
* Overall objective: learn how to extract meaningful networks from human PPI data&lt;br /&gt;
*# Virtual pulldowns: sampling 1st order networks and filtering &amp;quot;sticky proteins&amp;quot;&lt;br /&gt;
*# Finding tightly connected clusters in larger networks&lt;br /&gt;
*# Using the DiscoNet package in R&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Today’s exercise requires the use of many of the methods you learned throughout this course. The objective is to identify aberrant, cancer-related protein complexes in follicular thyroid cancer, by analyzing gene expression and somatic mutation data from 10 patients. You will do this using the following workflow of skills you have learned in this course:&lt;br /&gt;
* Calculating of log2FC from healthy to cancer tissue&lt;br /&gt;
* Performing a virtual pulldown with the DiscoNet package&lt;br /&gt;
* Performing protein complex detection using MCODE&lt;br /&gt;
* Performing over representation analysis of GO terms using the fgsea package&lt;br /&gt;
&lt;br /&gt;
== Processing data and extracting dysregulated or mutated genes ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;First, you need to restart your R session! &amp;quot;Session&amp;quot; -&amp;gt; &amp;quot;Restart R&amp;quot;!&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
First, load the data for today&#039;s exercise:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load(&amp;quot;/home/projects/22140/exercise10.Rdata&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then, randomly pick a patient number. Let&#039;s use R to make sure it is random:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sample(1:10, 1)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For that patient calculate the log2 fold change of gene expression in cancer vs normal log2(cancer expression / normal expression). Consider genes with a log2 fold change either smaller than -1 (down regulated) or larger than 1 (up regulated) dysregulated. We also consider mutated genes (with a 1 in the mutation column) as aberrated (aka nonsynonymous), so you should keep these as well. Save a list of dysregulated and/or aberrated genes.&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #1:&#039;&#039;&#039;&lt;br /&gt;
* What patient did you pick?&lt;br /&gt;
* How many genes are up or down regulated?&lt;br /&gt;
* Is the number of dysregulated genes what you would expect from a disease like cancer?&lt;br /&gt;
* How many genes harbor nonsynonymous mutations (Note: we only report nonsynonymous mutations in this data. Synonymous mutations have already been removed)?&lt;br /&gt;
* Theoretical question: Discuss the biological connection, or lack thereof, between nonsynonymous mutations and de-regulated of a) &#039;&#039;mutation and expression of the same gene&#039;&#039; and b) &#039;&#039;mutations in one gene and the expression of other genes&#039;&#039;. Use a maximum of 75 words.&lt;br /&gt;
&lt;br /&gt;
For the patient sample you picked, make a node attribute table containing the following columns: “Gene”, “log2FC”, “somatic_mutations” (either 0 or 1) for &#039;&#039;all&#039;&#039; genes.&lt;br /&gt;
&lt;br /&gt;
== Virtual pulldown ==&lt;br /&gt;
Load the DiscoNet package and prepare the inweb database:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
library(DiscoNet)&lt;br /&gt;
&lt;br /&gt;
### Load translated database&lt;br /&gt;
load(file=&#039;/home/projects/22140/inweb_reduced.Rdata&#039;) # db&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then, use the virtual_pulldown() function that you used last week, to perform a virtual pulldown with all dysregulated &#039;&#039;and/or&#039;&#039; mutated genes.&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #2:&#039;&#039;&#039;&lt;br /&gt;
* How does a virtual pulldown work?&lt;br /&gt;
* What experiment does it simulate?&lt;br /&gt;
* What database does it query?&lt;br /&gt;
* What does the confidence score mean?&lt;br /&gt;
* Is the default cutoff of 0.156 reasonable? Why/why not?&lt;br /&gt;
&lt;br /&gt;
We changed the package based on your excellent feedback last week. Now, the virtual_pulldown() function produces an interaction table (in the $network object), with confidence scores as edge attributes and a node attribute table (in the $node_attributes object) with a seed indicator and a topological score for each node.&lt;br /&gt;
&lt;br /&gt;
Use the merge() function to add log2FC and mutation status to the node attribute table. Here&#039;s a hint so you don&#039;t spend too much time on this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
node_attributes &amp;lt;- merge(x = node_attributes, y = pt, by.x = &amp;quot;nodes&amp;quot;, by.y = &amp;quot;gene&amp;quot;, all.x = TRUE)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Make sure you understand what goes on in the function above.&lt;br /&gt;
&lt;br /&gt;
Use the function graph_from_data_frame() to make an igraph object. Remember to make it undirected and add node attributes.&lt;br /&gt;
&lt;br /&gt;
Use the relevance_filtering() function to make 3 different versions of the pulldown, with cutoffs &amp;quot;0&amp;quot;, &amp;quot;0.5&amp;quot;, &amp;quot;0.8&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #3:&#039;&#039;&#039;&lt;br /&gt;
* How many nodes/edges are in your three pulldown networks?&lt;br /&gt;
* Plot the 0.8 filtered pulldown network, colored by log2FC and mutated genes highlighted with a shape, and seed nodes highlighted in some other way. Make sure the plots added to the report are easy to read.&lt;br /&gt;
* Does the networks look as you would expect in terms of which genes are up or down regulated or mutated? I.e. is the mutation status generally related to expression status? What would you expect?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;For the following exercises use the network with a cutoff of 0.8&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Community detection / protein complex inference ==&lt;br /&gt;
Run the community_detection() function with the MCODE algorithm with parameters D = 0.05, haircut = TRUE, fluff = FALSE. The resulting communities may represent protein complexes that could be causative or indicative of the disease.&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #4:&#039;&#039;&#039;&lt;br /&gt;
* How many nodes/edges are in your top 25 scoring communities (note: you many not have this many, in which case just report nodes/edges for all of them)&lt;br /&gt;
* How is the community score from MCODE calculate and what does it mean?&lt;br /&gt;
* Have a quick look [here|https://en.wikipedia.org/wiki/Protein_complex]. What do you expect a protein complex to look like? How many proteins? What clustering coefficient (how densely clustered)? Why?&lt;br /&gt;
* Based on node/edge counts alone, which of your communities could be complexes?&lt;br /&gt;
&lt;br /&gt;
== Gene ontology over-representation analysis ==&lt;br /&gt;
Now use the the fora() function from fgsea to perform an over-representation analysis on all the detected communities. Use the full list of genes from the exercise data as your background, and the biological process ontology.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
library(fgsea)&lt;br /&gt;
library(msigdbr)&lt;br /&gt;
# First, fetch gene sets&lt;br /&gt;
BP_df = msigdbr(species = &amp;quot;human&amp;quot;, category = &amp;quot;C5&amp;quot;, subcategory = &amp;quot;BP&amp;quot;)&lt;br /&gt;
BP_list = split(x = BP_df$gene_symbol, f = BP_df$gs_name)&lt;br /&gt;
# repeat the analysis below with the communities you deem to be potential protein complexes&lt;br /&gt;
fora(pathways = BP_list, genes = V(communities$communities[[1]])$name, universe = rownames(pt))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note&#039;&#039;&#039;: If you get a timeout error just run the function again.&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #5:&#039;&#039;&#039;&lt;br /&gt;
* Why are we asking you to use the &amp;quot;full list of genes&amp;quot; from the microarray as the background, and not &#039;&#039;all&#039;&#039; human genes? (Note that microarrays, while comprehensive, do not have probes for every single human gene).&lt;br /&gt;
* What does an over-representation test do?&lt;br /&gt;
* What is “over-represented” and where?&lt;br /&gt;
&lt;br /&gt;
== Interpreting the results of the over-representation analysis ==&lt;br /&gt;
Relate functions of the significantly over-represented GO terms in each of the top 25 protein complexes to the hallmarks of cancer. Keep in mind that neither all complexes, nor all GO terms are necessarily related to cancer.&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #6:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 6.1) Do any of your complexes relate to one or more of the hallmarks of cancer? How? (You will probably need to search Google here – try [GO term]+cancer or even [GO term]+”follicular thyroid cancer”).&lt;br /&gt;
* 6.2) If you cannot reasonably relate some of the GO terms to a cancer hallmark (and it is not unlikely that you cannot!), why do you think these non-cancer related ontologies are over-represented?&lt;br /&gt;
* 6.3) Plot the three communities you find most interesting in the context of follicular thyroid cancer. Highlight log2FC, mutation status, and seed nodes&lt;br /&gt;
* 6.4) How do you think these dysregulated protein complexes may drive cancer pathogenesis?&lt;br /&gt;
* 6.5) For the largets of your three chosen protein complexes, pick the protein best suited as a drug target and explain why based on what you have learned about network topology.&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Heart_Disease_and_Virtual_Pulldown&amp;diff=152</id>
		<title>Heart Disease and Virtual Pulldown</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Heart_Disease_and_Virtual_Pulldown&amp;diff=152"/>
		<updated>2024-11-06T13:27:57Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Heart disease proteins */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Human diseases / virtual pulldown exercise =&lt;br /&gt;
&#039;&#039;&#039;Exercise written by:&#039;&#039;&#039; Lars Rønn Olsen, Giorgia Moranzoni, and Rasmus Wernersson&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Learning objectives:&#039;&#039;&#039;&lt;br /&gt;
* Overall objective: learn how to extract meaningful networks from human PPI data&lt;br /&gt;
*# Virtual pulldowns: sampling 1st order networks and filtering &amp;quot;sticky proteins&amp;quot;&lt;br /&gt;
*# Finding tightly connected clusters in larger networks&lt;br /&gt;
*# Using the DiscoNet package in R&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
[[Image:Heart+networks.png|600px|right|thumb|&#039;&#039;&#039;Click to zoom&#039;&#039;&#039; - example of the type of network characterization we aim at doing in this exercise. Seed proteins are colored yellow. (From Lage &#039;&#039;et al&#039;&#039;, 2010)]]&lt;br /&gt;
&lt;br /&gt;
=== The network neighborhood as an indication of function ===&lt;br /&gt;
As we have seen before, the function of a protein can often be inferred from the function of the proteins interacting with it. Previously we have been using this to look at the function of proteins of which little is known. Today we&#039;ll take this a step further by investigating what we can learn from the interaction partner for a &#039;&#039;&#039;group&#039;&#039;&#039; of potentially associated proteins. &lt;br /&gt;
=== Disease gene/protein networks ===&lt;br /&gt;
The basic idea is to start out with a list of genes/proteins that are known (or expected) to be involved in the same disease, even if the exact molecular basis of the disease is not understood. The hypothesis is that many of the disease-associated genes are likely to be involved in networks leading to the same phenotype (here: disease).&lt;br /&gt;
&lt;br /&gt;
In the most simple case, all known disease related genes, might be part of a single network with a crystal-clear link to the disease. However, this is rarely the case.&lt;br /&gt;
&lt;br /&gt;
What is more commonly the case is the situation shown in the figure to the right: the known disease related genes/protein (&amp;quot;seed proteins&amp;quot;) are involved in several &#039;&#039;&#039;sub-networks&#039;&#039;&#039; describing different components of the disease. &lt;br /&gt;
&lt;br /&gt;
There are several benefits from this type of analysis - most importantly:&lt;br /&gt;
* Identification of novel disease-related genes/proteins&lt;br /&gt;
* Generating hypotheses about the molecular biology behind a disease&lt;br /&gt;
&lt;br /&gt;
=== Knowing where to look ===&lt;br /&gt;
The human interactome is HUGE. The theoretical maximum is all 20.000+ proteins interacting with each other (200 million interactions), but even the fraction we have experimental evidence for, is in the order of several hundreds of thousands of interactions between 12.000+ proteins.&lt;br /&gt;
&lt;br /&gt;
As we have seen before when we looked at network properties, it will be possible to connect most nodes (here: proteins) in the network with very few steps. This is also the case with the human interactome, which taken as a whole is one giant interconnected hairball. In order to learn anything about the function of the disease genes/proteins in question, it&#039;s important to restrict what we&#039;re looking at to the &#039;&#039;&#039;close neighborhood&#039;&#039;&#039; of the proteins. &lt;br /&gt;
&lt;br /&gt;
In this exercise we&#039;ll be working with two different approaches to this:&lt;br /&gt;
# Building a network &amp;quot;bottom-up&amp;quot; - sampling the 1st order interaction partners for a list of input proteins (&amp;quot;Virtual pulldowns&amp;quot;)&lt;br /&gt;
# Topology based clustering on large input networks, followed by a search for cluster enriched in disease-related proteins&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear: both&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Exercise on &amp;quot;Virtual Pulldowns&amp;quot; ==&lt;br /&gt;
For this part of the exercise, we&#039;ll be using a resource created here at DTU: the &amp;quot;InWeb&amp;quot; inferred human interactome. As we have been going through in much more details in the lecture, InWeb was build by:&lt;br /&gt;
# Transferring interactions from model organisms to human by orthology (if a pair of interacting proteins have strong orthologs in human, the interaction is transferred)&lt;br /&gt;
# &#039;&#039;&#039;Scoring&#039;&#039;&#039; the reliability of the interactions. This allows for filtering out interactions with little experimental support, thus building a high-confidence network&lt;br /&gt;
&lt;br /&gt;
For querying the InWeb we&#039;ll use the &amp;quot;DiscoNet&amp;quot; R package, which works as follows:&lt;br /&gt;
&lt;br /&gt;
# Input: a list of protein believed to be involved in a particular biology (here: different heart diseases/developmental stages)&lt;br /&gt;
# For each protein, 1st order interaction partners are found&lt;br /&gt;
# For all input proteins and all 1st order interaction partners, a combined network is built&lt;br /&gt;
# For the combined network a series of &#039;&#039;&#039;scored subnetworks&#039;&#039;&#039; are build in order to filter away &amp;quot;sticky proteins&amp;quot; (as we talked about in the lecture)&lt;br /&gt;
# An overrepresentation analysis is performed for each complex using the fgsea package&lt;br /&gt;
# Finally a visual representation of the network is presented&lt;br /&gt;
&lt;br /&gt;
=== Heart disease proteins ===&lt;br /&gt;
We&#039;ll start out with a set of proteins known to be involved in &#039;&#039;&#039;[https://en.wikipedia.org/wiki/Atrioventricular_septal_defect|Abnormal atrioventricular canal morphology]&#039;&#039;&#039; (&amp;quot;AACM&amp;quot;):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
seeds &amp;lt;- c(&amp;quot;ALDH1A2&amp;quot;, &amp;quot;BMP2&amp;quot;, &amp;quot;CXADR&amp;quot;, &amp;quot;GATA4&amp;quot;, &amp;quot;HAS2&amp;quot;, &amp;quot;NF1&amp;quot;, &amp;quot;NKX2-5&amp;quot;, &amp;quot;PITX2&amp;quot;, &amp;quot;PKD2&amp;quot;, &amp;quot;RXRA&amp;quot;, &amp;quot;TBX1&amp;quot;, &amp;quot;TBX2&amp;quot;, &amp;quot;ZFPM1&amp;quot;, &amp;quot;ZFPM2&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #1:&#039;&#039;&#039; &lt;br /&gt;
# Load the packages&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
library(DiscoNet)&lt;br /&gt;
library(msigdbr)&lt;br /&gt;
library(fgsea)&lt;br /&gt;
&lt;br /&gt;
The PPI database we will use is InWeb:&lt;br /&gt;
load(file=&#039;/home/projects/22140/inweb_reduced.Rdata&#039;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Run DiscoNet with this list of proteins with the following parameters:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
network_ex2 &amp;lt;- virtual_pulldown(seed_nodes = seeds, database = db, id_type = &amp;quot;hgnc&amp;quot;, zs_confidence_score = 0.156)&lt;br /&gt;
interactions &amp;lt;- data.frame(network_ex2$network)&lt;br /&gt;
node_attributes &amp;lt;- data.frame(network_ex2$node_attributes)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Convert network into igraph object with the following relevancescore cutoffs: 0, 0.5, 1&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
g &amp;lt;- graph_from_data_frame(interactions, directed = FALSE, vertices = node_attributes)&lt;br /&gt;
g1 &amp;lt;- relevance_filtering(g, 0)&lt;br /&gt;
g2 &amp;lt;- relevance_filtering(g, 0.5)&lt;br /&gt;
g3 &amp;lt;- relevance_filtering(g, 1)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Look at the size of the filtered/scored networks to get an impression of how the network is narrowed down as the confidence score cut-off is raised&lt;br /&gt;
# How many proteins (nodes) and how many interactions (edges) are reported when a 0.2 threshold is applied? How does that compare to the full network (no cutoff)? Explain difference.&lt;br /&gt;
&lt;br /&gt;
=== Visualizing networks ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;TASK:&#039;&#039;&#039; Get ready to visualize the three graphs (relevance score cutoffs 0, 0.5, 1) using ggraph.&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;REPORT QUESTION #2&amp;quot;:&lt;br /&gt;
* Include screenshots of the networks in your report&lt;br /&gt;
&lt;br /&gt;
=== Protein complex detection ===&lt;br /&gt;
Next up, we will use the MCODE algorithm to detect potential protein complexes using a 0.0 relevance filtering cutoff. The can be done with the &amp;quot;community_detection&amp;quot; function of DiscoNet:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
communities &amp;lt;- community_detection(g1, algorithm = &amp;quot;mcode&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;REPORT QUESTION #3&amp;quot;:&lt;br /&gt;
Examine the resulting communities. Which one do you think may be molecular complexes and why? Paste an example of a community you believe could be a protein complex, and one you don&#039;t believe is a protein complex.&lt;br /&gt;
&lt;br /&gt;
=== Functional classification ===&lt;br /&gt;
For the next part, we&#039;ll try to identify the function of the proteins we have found by performing Gene Ontology over-representation analysis of sub-clusters with-in the network.&lt;br /&gt;
&lt;br /&gt;
This can be done with the fgsea package.&lt;br /&gt;
&lt;br /&gt;
Start by loading the background gene list:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load(&amp;quot;/home/projects/22140/exercise9.Rdata&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Run fora on all potential protein complexes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
library(fgsea)&lt;br /&gt;
library(msigdbr)&lt;br /&gt;
BP_df = msigdbr(species = &amp;quot;human&amp;quot;, category = &amp;quot;C5&amp;quot;, subcategory = &amp;quot;BP&amp;quot;)&lt;br /&gt;
BP_list = split(x = BP_df$gene_symbol, f = BP_df$gs_name)&lt;br /&gt;
&lt;br /&gt;
fora(pathways = BP_list, genes = V(communities$communities[[&#039;COMMUNITY NUMBER&#039;]])$name, universe = all_gene_ids)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #4:&#039;&#039;&#039;&lt;br /&gt;
* Discuss the interpretation of the most significant results for each of the communities that could be protein complexes. Do they make biological sense in the context of heart disease?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
=== Analysis of heart developmental disease networks ===&lt;br /&gt;
[[Image:phenotype_groups.png|500px|right|thumb|Phenotype groups]]&lt;br /&gt;
[[Image:Cogs_brain.png|50px]]&lt;br /&gt;
&#039;&#039;&#039;Final task/report question&#039;&#039;&#039;: In the final part of the Virtual Pulldown exercise, your task is to select &#039;&#039;&#039;3 different sets of heart disease genes&#039;&#039;&#039; from the Lage &#039;&#039;et al&#039;&#039; (2010) study (data in excel file below) and do the following analyses:&lt;br /&gt;
# Create and download the virtual pulldown networks&lt;br /&gt;
# IMPORTANT: Create a NEW Cytoscape session.&lt;br /&gt;
# Import the networks into Cytoscape (either start a new session, or give the networks new names - otherwise Cytoscape gets confused).&lt;br /&gt;
#* Advanced: try to import the XML version instead of the SIF version (ask the instructor for help if needed); this can save you some time.&lt;br /&gt;
# Include a screenshot of the network in your report.&lt;br /&gt;
# Try to identify sub-networks in the network (by &amp;quot;eyeballing&amp;quot; the clusters), and perform a functional analysis of the proteins contained.&lt;br /&gt;
#* Report lists of proteins in the selected sub-networks.&lt;br /&gt;
#* Report Gene Ontology over-representation analysis for both Biological Process and Molecular Function.&lt;br /&gt;
#* Discuss and compare the results from the over-repressentation analysis.&lt;br /&gt;
&lt;br /&gt;
Excel sheet with the heart disease gene lists:&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/27040/exercises/HeartDiseaseGenes.xlsx HeartDiseaseGenes.xlsx]&lt;br /&gt;
---&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=151</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=151"/>
		<updated>2024-11-06T09:01:34Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;[[media:IntroToMicroArrays 2013.pdf|A brief introduction to DNA micro-arrays]]&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:*[https://www.sciencedirect.com/science/article/pii/S0168952512001886?via%3Dihub|&#039;&#039;Human diseases through the lens of network biology&#039;&#039;]&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|Working with &amp;quot;Virtual Pulldowns]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; Same as last week&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
To appear on Learn&lt;br /&gt;
&lt;br /&gt;
= Written exam with aids =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
=== Lecture 13 (December 5) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
---&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=DiscoNet_answers&amp;diff=150</id>
		<title>DiscoNet answers</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=DiscoNet_answers&amp;diff=150"/>
		<updated>2024-11-06T08:57:54Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Human diseases / virtual pulldown exercise */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Human diseases / virtual pulldown exercise =&lt;br /&gt;
&#039;&#039;&#039;Exercise written by:&#039;&#039;&#039; Lars Rønn Olsen, Giorgia Moranzoni, and Rasmus Wernersson&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #1:&#039;&#039;&#039; &lt;br /&gt;
# Load the packages&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
library(DiscoNet)&lt;br /&gt;
library(msigdbr)&lt;br /&gt;
library(fgsea)&lt;br /&gt;
&lt;br /&gt;
The PPI database we will use is InWeb:&lt;br /&gt;
load(file=&#039;/home/projects/22140/inweb_reduced.Rdata&#039;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Run DiscoNet with this list of proteins with the following parameters:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
network_ex2 &amp;lt;- virtual_pulldown(seed_nodes = seed_nodes_ex2, database = db, id_type = &amp;quot;hgnc&amp;quot;, zs_confidence_score = 0.156)&lt;br /&gt;
interactions &amp;lt;- data.frame(network_ex2$network)&lt;br /&gt;
node_attributes &amp;lt;- data.frame(network_ex2$node_attributes)&lt;br /&gt;
node_attributes &amp;lt;- merge(x = node_attributes, y = pt, by.x = &amp;quot;nodes&amp;quot;, by.y = &amp;quot;gene&amp;quot;, all.x = TRUE)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Convert network into igraph object with the following relevance score cutoffs: 0, 0.5, 1&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
g &amp;lt;- graph_from_data_frame(interactions, directed = FALSE, vertices = node_attributes)&lt;br /&gt;
g1 &amp;lt;- relevance_filtering(g, 0)&lt;br /&gt;
g2 &amp;lt;- relevance_filtering(g, 0.5)&lt;br /&gt;
g3 &amp;lt;- relevance_filtering(g, 1)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Look at the size of the filtered/scored networks to get an impression of how the network is narrowed down as the confidence score cut-off is raised&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Relevance score cutoff 0 (no filtering): 452 nodes, 8806 edges&#039;&#039;&lt;br /&gt;
&#039;&#039;Relevance score cutoff 0.5: 77 nodes, 649 edges&#039;&#039;&lt;br /&gt;
&#039;&#039;Relevance score cutoff 1: 19 nodes, 11 edges&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# How many proteins (nodes) and how many interactions (edges) are reported when a 0.2 threshold is applied? How does that compare to the full network (no cutoff)? Explain difference.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Relevance score cutoff 0.2: 242 nodes, 4766 edges&#039;&#039;&lt;br /&gt;
&#039;&#039;We observe approximately half the number of nodes and edges with a cutoff of 0.2. This means that only half the nodes had at least 20% of the edges within the network. The other half had less than that. It&#039;s unlikely that half the proteins in the unfiltered network were sticky proteins, but they probably had more to do outside the network than inside, so filtering them could be a good idea.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Visualizing networks ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;TASK:&#039;&#039;&#039; Get ready to visualize the three graphs (relevance score cutoffs 0, 0.5, 1) using ggraph.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ggraph(g1, layout = &amp;quot;kk&amp;quot;) +&lt;br /&gt;
  geom_edge_link() +&lt;br /&gt;
  geom_node_point(size = 5)&lt;br /&gt;
&lt;br /&gt;
ggraph(g2, layout = &amp;quot;kk&amp;quot;) +&lt;br /&gt;
  geom_edge_link() +&lt;br /&gt;
  geom_node_point(size = 5)&lt;br /&gt;
&lt;br /&gt;
ggraph(g3, layout = &amp;quot;kk&amp;quot;) +&lt;br /&gt;
  geom_edge_link() +&lt;br /&gt;
  geom_node_point(size = 5)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;REPORT QUESTION #2&amp;quot;:&lt;br /&gt;
* Include screenshots of the networks in your report&lt;br /&gt;
&lt;br /&gt;
[[Image:G1.png|500px]]&lt;br /&gt;
&lt;br /&gt;
[[Image:G2.png|500px]]&lt;br /&gt;
&lt;br /&gt;
[[Image:G3.png|500px]]&lt;br /&gt;
&lt;br /&gt;
=== Protein complex detection ===&lt;br /&gt;
Next up, we will use the MCODE algorithm to detect potential protein complexes. The can be done with the &amp;quot;community_detection&amp;quot; function of DiscoNet:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mcode_network &amp;lt;- community_detection(g1, algorithm = &amp;quot;mcode&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;REPORT QUESTION #3&amp;quot;:&lt;br /&gt;
Examine the resulting communities. Which one do you think may be molecular complexes and why? Paste an example of a community you believe could be a protein complex, and one you don&#039;t believe is a protein complex.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
communities &amp;lt;- community_detection(g1, algorithm = &amp;quot;mcode&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;MCODE produces the following communities:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
lapply(communities[[1]], function(x) paste(vcount(x), ecount(x)))&lt;br /&gt;
&lt;br /&gt;
[[1]]&lt;br /&gt;
[1] &amp;quot;364 8311&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[2]]&lt;br /&gt;
[1] &amp;quot;5 8&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[3]]&lt;br /&gt;
[1] &amp;quot;3 3&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[4]]&lt;br /&gt;
[1] &amp;quot;3 3&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Based on what we have learned, the community 1 is definitely to large to be a protein complex (protein complexes should have more than maybe 30-40 proteins, and mostly likely less than that. The rest could be good candidates, so let&#039;s visualize community 1 (bad example) and 2 (good example)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ggraph(communities[[1]][[1]], layout = &amp;quot;kk&amp;quot;) +&lt;br /&gt;
  geom_edge_link() +&lt;br /&gt;
  geom_node_point(size = 5)&lt;br /&gt;
&lt;br /&gt;
ggraph(communities[[1]][[2]], layout = &amp;quot;kk&amp;quot;) +&lt;br /&gt;
  geom_edge_link() +&lt;br /&gt;
  geom_node_point(size = 5)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Which produces&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[Image:Community1.png|500px]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Community2_w9.png|500px]]&lt;br /&gt;
&lt;br /&gt;
=== Functional classification ===&lt;br /&gt;
For the next part, we&#039;ll try to identify the function of the proteins we have found by performing Gene Ontology over-representation analysis of sub-clusters with-in the network.&lt;br /&gt;
&lt;br /&gt;
This can be done with the fgsea package.&lt;br /&gt;
&lt;br /&gt;
Start by loading the background gene list:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load(&amp;quot;/home/projects/22140/exercise9.Rdata&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Run fora on all potential protein complexes:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;As we saw in the previous question, community 2, 3, and 4 could be potential complexes&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
library(fgsea)&lt;br /&gt;
library(msigdbr)&lt;br /&gt;
BP_df = msigdbr(species = &amp;quot;human&amp;quot;, category = &amp;quot;C5&amp;quot;, subcategory = &amp;quot;BP&amp;quot;)&lt;br /&gt;
BP_list = split(x = BP_df$gene_symbol, f = BP_df$gs_name)&lt;br /&gt;
&lt;br /&gt;
head(fora(pathways = BP_list, genes = V(communities$communities[[2]])$name, universe = all_gene_ids))&lt;br /&gt;
head(fora(pathways = BP_list, genes = V(communities$communities[[3]])$name, universe = all_gene_ids))&lt;br /&gt;
head(fora(pathways = BP_list, genes = V(communities$communities[[4]])$name, universe = all_gene_ids))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #4:&#039;&#039;&#039;&lt;br /&gt;
* Discuss the interpretation of the most significant results for each of the communities that could be protein complexes. Do they make biological sense in the context of heart disease?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;It&#039;s immediately clear that complex 2 is involved in cardiac development:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
1:                                       GOBP_CARDIAC_VENTRICLE_MORPHOGENESIS 6.443594e-16 4.934504e-12&lt;br /&gt;
2:                                         GOBP_CARDIAC_CHAMBER_MORPHOGENESIS 1.047694e-14 2.674414e-11&lt;br /&gt;
3:                                         GOBP_CARDIAC_VENTRICLE_DEVELOPMENT 1.047694e-14 2.674414e-11&lt;br /&gt;
4:                                           GOBP_CARDIAC_CHAMBER_DEVELOPMENT 4.371267e-14 8.368790e-11&lt;br /&gt;
5: GOBP_CELL_SURFACE_RECEPTOR_SIGNALING_PATHWAY_INVOLVED_IN_HEART_DEVELOPMENT 1.045901e-13 1.601902e-10&lt;br /&gt;
6:                                                   GOBP_HEART_MORPHOGENESIS 3.705408e-13 4.729336e-10&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Same for complex 3:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
1:                                          GOBP_GERM_CELL_MIGRATION 0.0002322131 0.6914851       1    6&lt;br /&gt;
2:             GOBP_CARDIAC_MUSCLE_CELL_CARDIAC_MUSCLE_CELL_ADHESION 0.0002709118 0.6914851       1    7&lt;br /&gt;
3:            GOBP_PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION 0.0003764297 0.6914851       2  872&lt;br /&gt;
4:                 GOBP_AV_NODE_CELL_TO_BUNDLE_OF_HIS_CELL_SIGNALING 0.0004256966 0.6914851       1   11&lt;br /&gt;
5: GOBP_PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION_OR_REMOVAL 0.0005195136 0.6914851       2 1025&lt;br /&gt;
6:             GOBP_AV_NODE_CELL_TO_BUNDLE_OF_HIS_CELL_COMMUNICATION 0.0005417747 0.6914851       1   14&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
=== Analysis of heart developmental disease networks ===&lt;br /&gt;
[[Image:phenotype_groups.png|500px|right|thumb|Phenotype groups]]&lt;br /&gt;
[[Image:Cogs_brain.png|50px]]&lt;br /&gt;
&#039;&#039;&#039;Final task/report question&#039;&#039;&#039;: In the final part of the Virtual Pulldown exercise, your task is to select &#039;&#039;&#039;3 different sets of heart disease genes&#039;&#039;&#039; from the Lage &#039;&#039;et al&#039;&#039; (2010) study (data in excel file below) and do the following analyses:&lt;br /&gt;
# Create and download the virtual pulldown networks&lt;br /&gt;
# IMPORTANT: Create a NEW Cytoscape session.&lt;br /&gt;
# Import the networks into Cytoscape (either start a new session, or give the networks new names - otherwise Cytoscape gets confused).&lt;br /&gt;
#* Advanced: try to import the XML version instead of the SIF version (ask the instructor for help if needed); this can save you some time.&lt;br /&gt;
# Include a screenshot of the network in your report.&lt;br /&gt;
# Try to identify sub-networks in the network (by &amp;quot;eyeballing&amp;quot; the clusters), and perform a functional analysis of the proteins contained.&lt;br /&gt;
#* Report lists of proteins in the selected sub-networks.&lt;br /&gt;
#* Report Gene Ontology over-representation analysis for both Biological Process and Molecular Function.&lt;br /&gt;
#* Discuss and compare the results from the over-repressentation analysis.&lt;br /&gt;
&lt;br /&gt;
Excel sheet with the heart disease gene lists:&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/27040/exercises/HeartDiseaseGenes.xlsx HeartDiseaseGenes.xlsx]&lt;br /&gt;
---&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Heart_Disease_and_Virtual_Pulldown&amp;diff=149</id>
		<title>Heart Disease and Virtual Pulldown</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Heart_Disease_and_Virtual_Pulldown&amp;diff=149"/>
		<updated>2024-11-06T08:57:18Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Heart disease proteins */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Human diseases / virtual pulldown exercise =&lt;br /&gt;
&#039;&#039;&#039;Exercise written by:&#039;&#039;&#039; Lars Rønn Olsen, Giorgia Moranzoni, and Rasmus Wernersson&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Learning objectives:&#039;&#039;&#039;&lt;br /&gt;
* Overall objective: learn how to extract meaningful networks from human PPI data&lt;br /&gt;
*# Virtual pulldowns: sampling 1st order networks and filtering &amp;quot;sticky proteins&amp;quot;&lt;br /&gt;
*# Finding tightly connected clusters in larger networks&lt;br /&gt;
*# Using the DiscoNet package in R&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
[[Image:Heart+networks.png|600px|right|thumb|&#039;&#039;&#039;Click to zoom&#039;&#039;&#039; - example of the type of network characterization we aim at doing in this exercise. Seed proteins are colored yellow. (From Lage &#039;&#039;et al&#039;&#039;, 2010)]]&lt;br /&gt;
&lt;br /&gt;
=== The network neighborhood as an indication of function ===&lt;br /&gt;
As we have seen before, the function of a protein can often be inferred from the function of the proteins interacting with it. Previously we have been using this to look at the function of proteins of which little is known. Today we&#039;ll take this a step further by investigating what we can learn from the interaction partner for a &#039;&#039;&#039;group&#039;&#039;&#039; of potentially associated proteins. &lt;br /&gt;
=== Disease gene/protein networks ===&lt;br /&gt;
The basic idea is to start out with a list of genes/proteins that are known (or expected) to be involved in the same disease, even if the exact molecular basis of the disease is not understood. The hypothesis is that many of the disease-associated genes are likely to be involved in networks leading to the same phenotype (here: disease).&lt;br /&gt;
&lt;br /&gt;
In the most simple case, all known disease related genes, might be part of a single network with a crystal-clear link to the disease. However, this is rarely the case.&lt;br /&gt;
&lt;br /&gt;
What is more commonly the case is the situation shown in the figure to the right: the known disease related genes/protein (&amp;quot;seed proteins&amp;quot;) are involved in several &#039;&#039;&#039;sub-networks&#039;&#039;&#039; describing different components of the disease. &lt;br /&gt;
&lt;br /&gt;
There are several benefits from this type of analysis - most importantly:&lt;br /&gt;
* Identification of novel disease-related genes/proteins&lt;br /&gt;
* Generating hypotheses about the molecular biology behind a disease&lt;br /&gt;
&lt;br /&gt;
=== Knowing where to look ===&lt;br /&gt;
The human interactome is HUGE. The theoretical maximum is all 20.000+ proteins interacting with each other (200 million interactions), but even the fraction we have experimental evidence for, is in the order of several hundreds of thousands of interactions between 12.000+ proteins.&lt;br /&gt;
&lt;br /&gt;
As we have seen before when we looked at network properties, it will be possible to connect most nodes (here: proteins) in the network with very few steps. This is also the case with the human interactome, which taken as a whole is one giant interconnected hairball. In order to learn anything about the function of the disease genes/proteins in question, it&#039;s important to restrict what we&#039;re looking at to the &#039;&#039;&#039;close neighborhood&#039;&#039;&#039; of the proteins. &lt;br /&gt;
&lt;br /&gt;
In this exercise we&#039;ll be working with two different approaches to this:&lt;br /&gt;
# Building a network &amp;quot;bottom-up&amp;quot; - sampling the 1st order interaction partners for a list of input proteins (&amp;quot;Virtual pulldowns&amp;quot;)&lt;br /&gt;
# Topology based clustering on large input networks, followed by a search for cluster enriched in disease-related proteins&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear: both&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Exercise on &amp;quot;Virtual Pulldowns&amp;quot; ==&lt;br /&gt;
For this part of the exercise, we&#039;ll be using a resource created here at DTU: the &amp;quot;InWeb&amp;quot; inferred human interactome. As we have been going through in much more details in the lecture, InWeb was build by:&lt;br /&gt;
# Transferring interactions from model organisms to human by orthology (if a pair of interacting proteins have strong orthologs in human, the interaction is transferred)&lt;br /&gt;
# &#039;&#039;&#039;Scoring&#039;&#039;&#039; the reliability of the interactions. This allows for filtering out interactions with little experimental support, thus building a high-confidence network&lt;br /&gt;
&lt;br /&gt;
For querying the InWeb we&#039;ll use the &amp;quot;DiscoNet&amp;quot; R package, which works as follows:&lt;br /&gt;
&lt;br /&gt;
# Input: a list of protein believed to be involved in a particular biology (here: different heart diseases/developmental stages)&lt;br /&gt;
# For each protein, 1st order interaction partners are found&lt;br /&gt;
# For all input proteins and all 1st order interaction partners, a combined network is built&lt;br /&gt;
# For the combined network a series of &#039;&#039;&#039;scored subnetworks&#039;&#039;&#039; are build in order to filter away &amp;quot;sticky proteins&amp;quot; (as we talked about in the lecture)&lt;br /&gt;
# An overrepresentation analysis is performed for each complex using the fgsea package&lt;br /&gt;
# Finally a visual representation of the network is presented&lt;br /&gt;
&lt;br /&gt;
=== Heart disease proteins ===&lt;br /&gt;
We&#039;ll start out with a set of proteins known to be involved in &#039;&#039;&#039;[https://en.wikipedia.org/wiki/Atrioventricular_septal_defect|Abnormal atrioventricular canal morphology]&#039;&#039;&#039; (&amp;quot;AACM&amp;quot;):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
seeds &amp;lt;- c(&amp;quot;ALDH1A2&amp;quot;, &amp;quot;BMP2&amp;quot;, &amp;quot;CXADR&amp;quot;, &amp;quot;GATA4&amp;quot;, &amp;quot;HAS2&amp;quot;, &amp;quot;NF1&amp;quot;, &amp;quot;NKX2-5&amp;quot;, &amp;quot;PITX2&amp;quot;, &amp;quot;PKD2&amp;quot;, &amp;quot;RXRA&amp;quot;, &amp;quot;TBX1&amp;quot;, &amp;quot;TBX2&amp;quot;, &amp;quot;ZFPM1&amp;quot;, &amp;quot;ZFPM2&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #1:&#039;&#039;&#039; &lt;br /&gt;
# Load the packages&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
library(DiscoNet)&lt;br /&gt;
library(msigdbr)&lt;br /&gt;
library(fgsea)&lt;br /&gt;
&lt;br /&gt;
The PPI database we will use is InWeb:&lt;br /&gt;
load(file=&#039;/home/projects/22140/inweb_reduced.Rdata&#039;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Run DiscoNet with this list of proteins with the following parameters:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
network_ex2 &amp;lt;- virtual_pulldown(seed_nodes = seed_nodes_ex2, database = db, id_type = &amp;quot;hgnc&amp;quot;, zs_confidence_score = 0.156)&lt;br /&gt;
interactions &amp;lt;- data.frame(network_ex2$network)&lt;br /&gt;
node_attributes &amp;lt;- data.frame(network_ex2$node_attributes)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Convert network into igraph object with the following relevancescore cutoffs: 0, 0.5, 1&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
g &amp;lt;- graph_from_data_frame(interactions, directed = FALSE, vertices = node_attributes)&lt;br /&gt;
g1 &amp;lt;- relevance_filtering(g, 0)&lt;br /&gt;
g2 &amp;lt;- relevance_filtering(g, 0.5)&lt;br /&gt;
g3 &amp;lt;- relevance_filtering(g, 1)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Look at the size of the filtered/scored networks to get an impression of how the network is narrowed down as the confidence score cut-off is raised&lt;br /&gt;
# How many proteins (nodes) and how many interactions (edges) are reported when a 0.2 threshold is applied? How does that compare to the full network (no cutoff)? Explain difference.&lt;br /&gt;
&lt;br /&gt;
=== Visualizing networks ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;TASK:&#039;&#039;&#039; Get ready to visualize the three graphs (relevance score cutoffs 0, 0.5, 1) using ggraph.&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;REPORT QUESTION #2&amp;quot;:&lt;br /&gt;
* Include screenshots of the networks in your report&lt;br /&gt;
&lt;br /&gt;
=== Protein complex detection ===&lt;br /&gt;
Next up, we will use the MCODE algorithm to detect potential protein complexes using a 0.0 relevance filtering cutoff. The can be done with the &amp;quot;community_detection&amp;quot; function of DiscoNet:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
communities &amp;lt;- community_detection(g1, algorithm = &amp;quot;mcode&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;REPORT QUESTION #3&amp;quot;:&lt;br /&gt;
Examine the resulting communities. Which one do you think may be molecular complexes and why? Paste an example of a community you believe could be a protein complex, and one you don&#039;t believe is a protein complex.&lt;br /&gt;
&lt;br /&gt;
=== Functional classification ===&lt;br /&gt;
For the next part, we&#039;ll try to identify the function of the proteins we have found by performing Gene Ontology over-representation analysis of sub-clusters with-in the network.&lt;br /&gt;
&lt;br /&gt;
This can be done with the fgsea package.&lt;br /&gt;
&lt;br /&gt;
Start by loading the background gene list:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
load(&amp;quot;/home/projects/22140/exercise9.Rdata&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Run fora on all potential protein complexes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
library(fgsea)&lt;br /&gt;
library(msigdbr)&lt;br /&gt;
BP_df = msigdbr(species = &amp;quot;human&amp;quot;, category = &amp;quot;C5&amp;quot;, subcategory = &amp;quot;BP&amp;quot;)&lt;br /&gt;
BP_list = split(x = BP_df$gene_symbol, f = BP_df$gs_name)&lt;br /&gt;
&lt;br /&gt;
fora(pathways = BP_list, genes = V(communities$communities[[&#039;COMMUNITY NUMBER&#039;]])$name, universe = all_gene_ids)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|30px|left]]&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #4:&#039;&#039;&#039;&lt;br /&gt;
* Discuss the interpretation of the most significant results for each of the communities that could be protein complexes. Do they make biological sense in the context of heart disease?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
=== Analysis of heart developmental disease networks ===&lt;br /&gt;
[[Image:phenotype_groups.png|500px|right|thumb|Phenotype groups]]&lt;br /&gt;
[[Image:Cogs_brain.png|50px]]&lt;br /&gt;
&#039;&#039;&#039;Final task/report question&#039;&#039;&#039;: In the final part of the Virtual Pulldown exercise, your task is to select &#039;&#039;&#039;3 different sets of heart disease genes&#039;&#039;&#039; from the Lage &#039;&#039;et al&#039;&#039; (2010) study (data in excel file below) and do the following analyses:&lt;br /&gt;
# Create and download the virtual pulldown networks&lt;br /&gt;
# IMPORTANT: Create a NEW Cytoscape session.&lt;br /&gt;
# Import the networks into Cytoscape (either start a new session, or give the networks new names - otherwise Cytoscape gets confused).&lt;br /&gt;
#* Advanced: try to import the XML version instead of the SIF version (ask the instructor for help if needed); this can save you some time.&lt;br /&gt;
# Include a screenshot of the network in your report.&lt;br /&gt;
# Try to identify sub-networks in the network (by &amp;quot;eyeballing&amp;quot; the clusters), and perform a functional analysis of the proteins contained.&lt;br /&gt;
#* Report lists of proteins in the selected sub-networks.&lt;br /&gt;
#* Report Gene Ontology over-representation analysis for both Biological Process and Molecular Function.&lt;br /&gt;
#* Discuss and compare the results from the over-repressentation analysis.&lt;br /&gt;
&lt;br /&gt;
Excel sheet with the heart disease gene lists:&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/27040/exercises/HeartDiseaseGenes.xlsx HeartDiseaseGenes.xlsx]&lt;br /&gt;
---&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=148</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=148"/>
		<updated>2024-10-31T10:15:33Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 08 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 1 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;[[media:IntroToMicroArrays 2013.pdf|A brief introduction to DNA micro-arrays]]&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:*[https://www.sciencedirect.com/science/article/pii/S0168952512001886?via%3Dihub|&#039;&#039;Human diseases through the lens of network biology&#039;&#039;]&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|Working with &amp;quot;Virtual Pulldowns]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
To appear on Learn&lt;br /&gt;
&lt;br /&gt;
= Written exam with aids =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
=== Lecture 13 (December 5) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
---&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=147</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=147"/>
		<updated>2024-10-31T10:14:38Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 08 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 1 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;[[media:IntroToMicroArrays 2013.pdf|A brief introduction to DNA micro-arrays]]&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:*[https://www.sciencedirect.com/science/article/pii/S0168952512001886?via%3Dihub|&#039;&#039;Human diseases through the lens of network biology&#039;&#039;]&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
To appear on Learn&lt;br /&gt;
&lt;br /&gt;
= Written exam with aids =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
=== Lecture 13 (December 5) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
---&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=146</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=146"/>
		<updated>2024-10-31T10:14:25Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 08 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 1 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;[[media:IntroToMicroArrays 2013.pdf|A brief introduction to DNA micro-arrays]]&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:*[[https://www.sciencedirect.com/science/article/pii/S0168952512001886?via%3Dihub|&#039;&#039;Human diseases through the lens of network biology&#039;&#039;]]&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
To appear on Learn&lt;br /&gt;
&lt;br /&gt;
= Written exam with aids =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
=== Lecture 13 (December 5) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
---&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=145</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=145"/>
		<updated>2024-10-31T10:14:02Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 08 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 1 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;[[media:IntroToMicroArrays 2013.pdf|A brief introduction to DNA micro-arrays]]&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:*[[&#039;&#039;Human diseases through the lens of network biology&#039;&#039;|https://www.sciencedirect.com/science/article/pii/S0168952512001886?via%3Dihub]]&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
To appear on Learn&lt;br /&gt;
&lt;br /&gt;
= Written exam with aids =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
=== Lecture 13 (December 5) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
---&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=144</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=144"/>
		<updated>2024-10-31T10:13:26Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 08 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 1 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;[[media:IntroToMicroArrays 2013.pdf|A brief introduction to DNA micro-arrays]]&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* [&#039;&#039;Human diseases through the lens of network biology&#039;&#039;](https://www.sciencedirect.com/science/article/pii/S0168952512001886?via%3Dihub)&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
To appear on Learn&lt;br /&gt;
&lt;br /&gt;
= Written exam with aids =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
=== Lecture 13 (December 5) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
---&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=143</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=143"/>
		<updated>2024-10-09T10:59:46Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 06 (October 10) - Yeast Systems Biology 3 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;[[media:IntroToMicroArrays 2013.pdf|A brief introduction to DNA micro-arrays]]&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
To appear on Learn&lt;br /&gt;
&lt;br /&gt;
= Written exam with aids =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
=== Lecture 13 (December 5) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
---&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=142</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=142"/>
		<updated>2024-10-09T10:59:01Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 06 (October 10) - Yeast Systems Biology 3 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;[[file:IntroToMicroArrays 2013.pdf|A brief introduction to DNA micro-arrays]]&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
To appear on Learn&lt;br /&gt;
&lt;br /&gt;
= Written exam with aids =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
=== Lecture 13 (December 5) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
---&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=141</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=141"/>
		<updated>2024-10-09T10:58:28Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 06 (October 10) - Yeast Systems Biology 3 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;[[https://teaching.healthtech.dtu.dk/22140/images/9/94/IntroToMicroArrays_2013.pdf|A brief introduction to DNA micro-arrays]]&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
To appear on Learn&lt;br /&gt;
&lt;br /&gt;
= Written exam with aids =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
=== Lecture 13 (December 5) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
---&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=140</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=140"/>
		<updated>2024-10-09T10:57:35Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 06 (October 10) - Yeast Systems Biology 3 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; [[file:IntroToMicroArrays 2013.pdf]] - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
To appear on Learn&lt;br /&gt;
&lt;br /&gt;
= Written exam with aids =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
=== Lecture 13 (December 5) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
---&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=File:IntroToMicroArrays_2013.pdf&amp;diff=139</id>
		<title>File:IntroToMicroArrays 2013.pdf</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=File:IntroToMicroArrays_2013.pdf&amp;diff=139"/>
		<updated>2024-10-09T10:57:06Z</updated>

		<summary type="html">&lt;p&gt;Lronn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=ExGeneOntology_Yeast_R_answers&amp;diff=138</id>
		<title>ExGeneOntology Yeast R answers</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=ExGeneOntology_Yeast_R_answers&amp;diff=138"/>
		<updated>2024-10-03T13:24:43Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Report question #8 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Answers to the gene ontology exercise =&lt;br /&gt;
Answers by Aron Eklund, created 25 November 2014.Updated by Rasmus Wernersson, October 2020.&lt;br /&gt;
&lt;br /&gt;
Here is a [[ExGeneOntology_Yeast1.5|link to the exercise]].&lt;br /&gt;
&lt;br /&gt;
[[Image:Emblem-important_tiny.png‎|left]]Please remember that the web servers and their underlying data could be updated any time, so it is possible that your results may not exactly match the results listed here.&lt;br /&gt;
&lt;br /&gt;
== Report question #1 ==&lt;br /&gt;
Q: &#039;&#039;How many ancestor terms are defined? With how many different types of relationships?&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
By opening the page for &amp;quot;Cell division&amp;quot;, and clicking on the &amp;quot;Graph Views&amp;quot; tab, one can count 2 ancestor terms (4 if the alternative visualization is used).  There is only one type of relationship: is_a.&lt;br /&gt;
&lt;br /&gt;
Q: &#039;&#039;How many children terms are defined? With how many different types of relationships?&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
There are 20+ children terms. There are 5 types of relationship: is_a, part_of, negatively_regulates, positively_regulates, regulates.&lt;br /&gt;
&lt;br /&gt;
== Report question #2 ==&lt;br /&gt;
Q: &#039;&#039;&amp;quot;Is &amp;quot;nucleus&amp;quot; a membrane-bound, or non membrane-bound organelle? On which linked GO terms do you base this conclusion?&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
On the &amp;quot;Graph Views&amp;quot; tab, one sees that &amp;quot;nucleus&amp;quot; is an &amp;quot;intracellular membrane-bounded organelle&amp;quot;, which in turn is a &amp;quot;membrane-bounded organelle&amp;quot;.  Thus, we infer that the nucleus is a &#039;&#039;&#039;membrane-bounded organelle&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
Q: &#039;&#039;&amp;quot;What types of relationships are found?&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
We see is_a and part_of relationships in the ancestors.  If we look at the children (using the Neighborhood tab) there are many types of relationships.&lt;br /&gt;
&lt;br /&gt;
== Report question #3 ==&lt;br /&gt;
Q: &#039;&#039;&amp;quot;Can the activities described be directed towards both DNA and RNA?&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Yes. Both DNA polymerase activity and helicase activity have child terms that are specific for DNA and RNA.&lt;br /&gt;
&lt;br /&gt;
Q: &#039;&#039;&amp;quot;At which node does the &amp;quot;tree&amp;quot; branch out of the &amp;quot;Molecular Function&amp;quot; ontology and into a different ontology? With what type of relationship? Does this make biological sense?&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Looking at the &amp;quot;Graph Views&amp;quot; tab, we can see that Helicase activity doesn&#039;t branch into a different ontology. However, &#039;&#039;&#039;DNA Polymerase Activity&#039;&#039;&#039; branches into the &amp;quot;Biological Process&amp;quot; ontology (with a part_of relationship). This makes sense because catalysis of DNA polymerization is essentially a molecular event (and hence is a molecular function), and yet it is also essential for DNA biosynthesis (a biological process).&lt;br /&gt;
&lt;br /&gt;
[[Image:DNA_pol_act_tree.png|thumb|center|800px|Click to zoom]]&lt;br /&gt;
&lt;br /&gt;
== Report question #4 ==&lt;br /&gt;
Q: &#039;&#039;&amp;quot;How many (if any) cell cycle sub-phases are defined for: G1-phase, S-phase, G2-phase, and M-phase?&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If there were sub-phases, these would be listed as children with a part_of relationship.  By looking at the Amigo pages for the individual mitotic phases, we can see that mitotic M phase has 4 children that are sub-phases, and that G1, G2, and S do not have sub-phases.  &lt;br /&gt;
&lt;br /&gt;
Q: &#039;&#039;&amp;quot;Which phases are group together into the &amp;quot;interphase&amp;quot; term?&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
G1, G2, and S.  (We can see these as children of &amp;quot;mitotic interphase&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
== Report question #5 ==&lt;br /&gt;
Q: &#039;&#039;&amp;quot;In which meiotic cell cycle phase does synapsis happen?&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Looking at the Amigo page for synapsis, on the &amp;quot;Graph views&amp;quot; tab, one can see synapsis is part_of meiosis I.&lt;br /&gt;
&lt;br /&gt;
== Report question #6 ==&lt;br /&gt;
Q: &#039;&#039;&amp;quot;What is the Molecular Function for POL1?&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
DNA-directed DNA polymerase activity&lt;br /&gt;
&lt;br /&gt;
Q: &#039;&#039;&amp;quot;How many other yeast genes are ALSO annotated to have &amp;quot;DNA-directed DNA polymerase activity&amp;quot;?&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
For the &#039;&#039;manually annotated / curated part&#039;&#039;: &#039;&#039;&#039;59&#039;&#039;&#039; unique genes (68 entries in the table)&lt;br /&gt;
&lt;br /&gt;
== Report question #7 ==&lt;br /&gt;
Q: &#039;&#039;&amp;quot;Does POL1 have &amp;quot;Transferase Activity&amp;quot;? (Which GO term)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Yes. DNA-directed DNA polymerase activity is_a (inferred) transferase activity (GO:0016740)&lt;br /&gt;
&lt;br /&gt;
== Report question #8 ==&lt;br /&gt;
Q: &#039;&#039;&amp;quot;How many UniProt proteins are annotated with &amp;quot;GO:0045004 DNA replication proofreading&amp;quot;?&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;74&#039;&#039;&#039; (reviewed) if you search via the UniProt [https://www.uniprot.org/uniprot/?query=goa%3A%28%22DNA+replication+proofreading+%5B0045004%5D%22%29&amp;amp;sort=score Advanced Search interface]&lt;br /&gt;
&lt;br /&gt;
Q: &#039;&#039;&amp;quot;How many of these are human?&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Three (reviewed) proteins (PolD, PolE, PolG) - is easiest found using a taxonomy filter, to only keep humun (taxid: 9606)&lt;br /&gt;
&lt;br /&gt;
== Report question #9 ==&lt;br /&gt;
Q: &#039;&#039;&amp;quot;Population group size&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
5500&lt;br /&gt;
&lt;br /&gt;
Q: &#039;&#039;&amp;quot;Study group size&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
16&lt;br /&gt;
&lt;br /&gt;
Q: &#039;&#039;&amp;quot;Genome wide frequency of each GO term&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* DNA replication:  96 / 5500 = &#039;&#039;&#039;0.0175&#039;&#039;&#039;&lt;br /&gt;
* DNA repair: 259 / 5500 = &#039;&#039;&#039;0.0471&#039;&#039;&#039;&lt;br /&gt;
* Cell cycle: 313 / 5500 = &#039;&#039;&#039;0.0569&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Q: &#039;&#039;&amp;quot;Expected number of genes annotated with each term in a random selection of yeast genes of the same size as cluster #1&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* DNA replication:  0.0175 * 16 = &#039;&#039;&#039;0.279&#039;&#039;&#039;&lt;br /&gt;
* DNA repair: 0.0471 * 16 = &#039;&#039;&#039;0.753&#039;&#039;&#039;&lt;br /&gt;
* Cell cycle: 0.0569 * 16 = &#039;&#039;&#039;0.911&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Q: &#039;&#039;&amp;quot;The enrichment of observed GO terms compared to expected&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* DNA replication: 14 / 0.279 = &#039;&#039;&#039;50.1&#039;&#039;&#039;&lt;br /&gt;
* DNA repair: 10 / 0.753 = &#039;&#039;&#039;13.3&#039;&#039;&#039;&lt;br /&gt;
* Cell cycle: 8 / 0.911 = &#039;&#039;&#039;8.79&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Q: &#039;&#039;&amp;quot;The p-value for each GO term&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
1. First, we create a contingency table.  Start by filling out the cells we already know:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border-collapse:collapse&amp;quot;&lt;br /&gt;
|+ DNA replication&lt;br /&gt;
|-----&lt;br /&gt;
!         !! In study group !! Not in study group !! Total&lt;br /&gt;
|-----&lt;br /&gt;
! Has annotation&lt;br /&gt;
| 14 || ? || 96&lt;br /&gt;
|-----&lt;br /&gt;
! Does not have annotation&lt;br /&gt;
| ? || ? || ? &lt;br /&gt;
|-----&lt;br /&gt;
! Total&lt;br /&gt;
| 16 || ? || 5500&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Next, fill out the remaining values by arithmetic:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; style=&amp;quot;border-collapse:collapse&amp;quot;&lt;br /&gt;
|+ DNA replication&lt;br /&gt;
|-----&lt;br /&gt;
!         !! In study group !! Not in study group !! Total&lt;br /&gt;
|-----&lt;br /&gt;
! Has annotation&lt;br /&gt;
| 14 || 82 || 96&lt;br /&gt;
|-----&lt;br /&gt;
! Does not have annotation&lt;br /&gt;
| 2 || 5402 || 5404 &lt;br /&gt;
|-----&lt;br /&gt;
! Total&lt;br /&gt;
| 16 || 5484 || 5500&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Finally, use the 4 non-total cells to calculate a P value using Fisher&#039;s exact test.  Here are two example ways to do this:&lt;br /&gt;
&lt;br /&gt;
3A. In R :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt; m &amp;lt;- matrix(c(14, 2, 82, 5402), nrow = 2)&lt;br /&gt;
&amp;gt; m&lt;br /&gt;
     [,1] [,2]&lt;br /&gt;
[1,]   14   82&lt;br /&gt;
[2,]    2 5402&lt;br /&gt;
&amp;gt; &lt;br /&gt;
&amp;gt; fisher.test(m)&lt;br /&gt;
&lt;br /&gt;
	Fisher&#039;s Exact Test for Count Data&lt;br /&gt;
&lt;br /&gt;
data:  m&lt;br /&gt;
p-value &amp;lt; 2.2e-16&lt;br /&gt;
alternative hypothesis: true odds ratio is not equal to 1&lt;br /&gt;
95 percent confidence interval:&lt;br /&gt;
  102.259 4677.895&lt;br /&gt;
sample estimates:&lt;br /&gt;
odds ratio &lt;br /&gt;
  457.4204 &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3B. Using the web site we suggested ([http://graphpad.com/quickcalcs/contingency1/]), we enter the data like this:&lt;br /&gt;
&lt;br /&gt;
[[File: Graphpad_pvalue_01.png| border]]&lt;br /&gt;
&lt;br /&gt;
… and we get results like this:&lt;br /&gt;
&lt;br /&gt;
[[File: Graphpad_pvalue_02.png| border]]&lt;br /&gt;
&lt;br /&gt;
Either way, we do not get the exact P value for these data, and we must be satisfied by knowing only that it is rather small.  In some cases, especially when the enrichment is less, these methods will be able to provide an exact P value.&lt;br /&gt;
&lt;br /&gt;
== R exercise solutions ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ASK/REPORT QUESTION #11&#039;&#039;&#039;: Can you directly use the gene sets produced by the msigdbr function as input for the &amp;quot;fora&amp;quot; function of &amp;quot;fgsea&amp;quot;? Why/why not?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If you read the documentation for the msigdbr and fora function you will find that msigdbr produces a data frame, while fore expects a list. You therefore need to use the split function to make the conversion (this will not be a topic on the exam, but just a reminder for you to always read the documentation of the R packages you use&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;TASK/REPORT QUESTION #12&#039;&#039;&#039;: Run the analysis for cluster #1 for all three GO trunks (Biological Process, Molecular Function and Cellular Component), and include top 10 significantly enriched GO terms for each ontology. Add a section to your report discussing if the results fit with what we have previously learned about the function of cluster #1. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Depends on what clusters you picked, but generally speaking, molecular functions will be finer grained functions making up biological processes. Cellular component makes immediate sense for processes like DNA replication, which takes place in the nucleus&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
library(msigdbr)&lt;br /&gt;
library(fgsea)&lt;br /&gt;
&lt;br /&gt;
BP_df = msigdbr(species = &amp;quot;S. cerevisiae&amp;quot;, category = &amp;quot;C5&amp;quot;, subcategory = &amp;quot;BP&amp;quot;)&lt;br /&gt;
BP_list = split(x = BP_df$ensembl_gene, f = BP_df$gs_name)&lt;br /&gt;
&lt;br /&gt;
MF_df = msigdbr(species = &amp;quot;S. cerevisiae&amp;quot;, category = &amp;quot;C5&amp;quot;, subcategory = &amp;quot;MF&amp;quot;)&lt;br /&gt;
MF_list = split(x = MF_df$ensembl_gene, f = MF_df$gs_name)&lt;br /&gt;
&lt;br /&gt;
CC_df = msigdbr(species = &amp;quot;S. cerevisiae&amp;quot;, category = &amp;quot;C5&amp;quot;, subcategory = &amp;quot;CC&amp;quot;)&lt;br /&gt;
CC_list = split(x = CC_df$ensembl_gene, f = CC_df$gs_name)&lt;br /&gt;
&lt;br /&gt;
load(&amp;quot;/home/projects/22140/exercise4.Rdata&amp;quot;)&lt;br /&gt;
load(&amp;quot;/home/projects/22140/exercise5.Rdata&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
target &amp;lt;- node_attributes[node_attributes$cluster %in% &amp;quot;cluster1&amp;quot;,]$ID&lt;br /&gt;
BP_gsea &amp;lt;- fora(BP_list, target, background)&lt;br /&gt;
MF_gsea &amp;lt;- fora(MF_list, target, background)&lt;br /&gt;
CC_gsea &amp;lt;- fora(CC_list, target, background)&lt;br /&gt;
&lt;br /&gt;
# A function for calculating enrichment&lt;br /&gt;
compute_enrichment &amp;lt;- function(ora, n_genes, n_universe) {&lt;br /&gt;
  ora$relative_risk &amp;lt;-&lt;br /&gt;
    (ora$overlap / ora$size) /&lt;br /&gt;
    (n_genes / n_universe)   &lt;br /&gt;
  return(ora)&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
BP_gsea &amp;lt;- compute_enrichment(BP_gsea, length(target), length(background))&lt;br /&gt;
&lt;br /&gt;
# Repeat as needed for the MF and CC ontologies and the other clusters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=137</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=137"/>
		<updated>2024-10-03T12:30:05Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Block #3: Case: Human disease biology */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
To appear on Learn&lt;br /&gt;
&lt;br /&gt;
= Written exam with aids =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
=== Lecture 13 (December 5) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
---&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=136</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=136"/>
		<updated>2024-10-03T11:51:55Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Block #3: Case: Human disease biology */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
To appear on Learn&lt;br /&gt;
&lt;br /&gt;
= Written exam with aids =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
=== Lecture 13 (December 5) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
---&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=135</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=135"/>
		<updated>2024-09-27T13:02:08Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
To appear on Learn&lt;br /&gt;
&lt;br /&gt;
= Written exam with aids =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
=== Lecture 13 (December 5) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
---&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=134</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=134"/>
		<updated>2024-09-26T13:42:20Z</updated>

		<summary type="html">&lt;p&gt;Lronn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
To appear on Learn&lt;br /&gt;
&lt;br /&gt;
= Written exam with aids =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
=== Lecture 13 (December 5) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
---&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=133</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=133"/>
		<updated>2024-09-26T13:39:57Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Exam */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
To appear on Learn&lt;br /&gt;
&lt;br /&gt;
= Written exam with aids =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=132</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=132"/>
		<updated>2024-09-26T13:39:33Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Old exam sets */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
To appear on Learn&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=131</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=131"/>
		<updated>2024-09-26T13:39:26Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Old exam sets */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* To appear on Learn&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=130</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=130"/>
		<updated>2024-09-26T13:39:05Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=129</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=129"/>
		<updated>2024-09-26T13:38:44Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 08 (October 31) - Integrating multiple omics data types for cancer research */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=128</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=128"/>
		<updated>2024-09-26T13:38:15Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 12 (November 28) - Protein isoforms 2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=127</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=127"/>
		<updated>2024-09-26T13:38:04Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 12 (November 28) - Dimitrios 2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Protein isoforms 2 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=126</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=126"/>
		<updated>2024-09-26T13:37:51Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 11 (November 21) - Protein isoforms 1 - Dimitrios Kanakoklou */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 1 ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Dimitrios 2 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=125</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=125"/>
		<updated>2024-09-26T13:37:16Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 11 (November 21) - Dimitrios 1 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Protein isoforms 1 - Dimitrios Kanakoklou ===&lt;br /&gt;
&lt;br /&gt;
TBA&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Dimitrios 2 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=124</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=124"/>
		<updated>2024-09-26T13:36:28Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Dimitrios 1 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Dimitrios 2 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=123</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=123"/>
		<updated>2024-09-26T13:35:56Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 1 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Dimitrios 1 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Dimitrios 2 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=122</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=122"/>
		<updated>2024-09-26T12:03:31Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Block #2: Case: Yeast systems biology */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Lars Rønn Olsen&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Dimitrios 1 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Dimitrios 2 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=121</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=121"/>
		<updated>2024-09-26T12:03:15Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Block #3: Case: Human disease biology */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Kristoffer Vitting-Seerup&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Dimitrios 1 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Dimitrios 2 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=120</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=120"/>
		<updated>2024-09-26T12:02:57Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 06 (October 10) - Yeast Systems Biology 3 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Kristoffer Vitting-Seerup&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen, Rasmus Wernersson, and Kristoffer Vitting-Seerup &lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Dimitrios 1 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Dimitrios 2 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=119</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=119"/>
		<updated>2024-09-26T12:02:39Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 07 (October 24) - Yeast Systems Biology 4 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Kristoffer Vitting-Seerup&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Lars Rønn Olsen.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen, Rasmus Wernersson, and Kristoffer Vitting-Seerup &lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Dimitrios 1 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Dimitrios 2 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=118</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=118"/>
		<updated>2024-09-26T12:01:56Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Block #3: Case: Human disease biology */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Kristoffer Vitting-Seerup&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen, Rasmus Wernersson, and Kristoffer Vitting-Seerup &lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 1 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Dimitrios 1 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - Dimitrios 2 ===&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Multiple choice test (EXAM! Participation is mandatory) + Q&amp;amp;A ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=117</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=117"/>
		<updated>2024-09-26T11:50:29Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Block #3: Case: Human disease biology */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Kristoffer Vitting-Seerup&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen, Rasmus Wernersson, and Kristoffer Vitting-Seerup &lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
TBD!&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 1 - CANCELLED ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson (recorded lecture)&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (November 7) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---:* Read the cartoon to the right - it nicely illustrates the multiple testing problem (source: XKCD.org) &lt;br /&gt;
:* &#039;&#039;How does multiple testing correction work?&#039;&#039;, Noble 2009 ([https://www.nature.com/articles/nbt1209-1135 Article link])&lt;br /&gt;
:* Make sure you understand how &#039;&#039;&#039;Bonferroni adjustment&#039;&#039;&#039; works.&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn &lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
[[ExTM+MulTest|Multiple testing (text mining example)]] &amp;lt;br&amp;gt;&lt;br /&gt;
:# [[ExTM+MulTest|Multiple testing (text mining example)]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039;  [[ExTM+MulTest_answers|Multiple testing answers]]&lt;br /&gt;
:# [[ExHumanSysbio2|Clustering]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479133/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 14) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Exercise:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479122/View]) - &#039;&#039;&#039;Answers&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479141/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 21) - Essential R functions + exam exercise ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Week 10 (and to some extent week 9) exercise walk-through&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; Old exam set (adapted to R)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 28) - QnA / AMA ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Topics:&#039;&#039;&#039; Anything you would like to a refresher about&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (December 5) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=116</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=116"/>
		<updated>2024-09-26T11:43:06Z</updated>

		<summary type="html">&lt;p&gt;Lronn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Kristoffer Vitting-Seerup&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen, Rasmus Wernersson, and Kristoffer Vitting-Seerup &lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
TBD!&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 24) - Systems Biology in Biomedical Research  (Heart diseases) 1 - CANCELLED ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson (recorded lecture)&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---:* Read the cartoon to the right - it nicely illustrates the multiple testing problem (source: XKCD.org) &lt;br /&gt;
:* &#039;&#039;How does multiple testing correction work?&#039;&#039;, Noble 2009 ([https://www.nature.com/articles/nbt1209-1135 Article link])&lt;br /&gt;
:* Make sure you understand how &#039;&#039;&#039;Bonferroni adjustment&#039;&#039;&#039; works.&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn &lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
[[ExTM+MulTest|Multiple testing (text mining example)]] &amp;lt;br&amp;gt;&lt;br /&gt;
:# [[ExTM+MulTest|Multiple testing (text mining example)]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039;  [[ExTM+MulTest_answers|Multiple testing answers]]&lt;br /&gt;
:# [[ExHumanSysbio2|Clustering]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479133/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 7) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Exercise:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479122/View]) - &#039;&#039;&#039;Answers&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479141/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 14) - Essential R functions + exam exercise ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Week 10 (and to some extent week 9) exercise walk-through&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; Old exam set (adapted to R)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 21) - QnA / AMA ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Topics:&#039;&#039;&#039; Anything you would like to a refresher about&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (November 28) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=115</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=115"/>
		<updated>2024-09-26T11:42:36Z</updated>

		<summary type="html">&lt;p&gt;Lronn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Kristoffer Vitting-Seerup&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen, Rasmus Wernersson, and Kristoffer Vitting-Seerup &lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 24) - Systems Biology in Biomedical Research  (Heart diseases) 1 - CANCELLED ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson (recorded lecture)&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---:* Read the cartoon to the right - it nicely illustrates the multiple testing problem (source: XKCD.org) &lt;br /&gt;
:* &#039;&#039;How does multiple testing correction work?&#039;&#039;, Noble 2009 ([https://www.nature.com/articles/nbt1209-1135 Article link])&lt;br /&gt;
:* Make sure you understand how &#039;&#039;&#039;Bonferroni adjustment&#039;&#039;&#039; works.&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn &lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
[[ExTM+MulTest|Multiple testing (text mining example)]] &amp;lt;br&amp;gt;&lt;br /&gt;
:# [[ExTM+MulTest|Multiple testing (text mining example)]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039;  [[ExTM+MulTest_answers|Multiple testing answers]]&lt;br /&gt;
:# [[ExHumanSysbio2|Clustering]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479133/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 7) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Exercise:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479122/View]) - &#039;&#039;&#039;Answers&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479141/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 14) - Essential R functions + exam exercise ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Week 10 (and to some extent week 9) exercise walk-through&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; Old exam set (adapted to R)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 21) - QnA / AMA ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Topics:&#039;&#039;&#039; Anything you would like to a refresher about&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (November 28) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=114</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=114"/>
		<updated>2024-09-26T11:42:08Z</updated>

		<summary type="html">&lt;p&gt;Lronn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Kristoffer Vitting-Seerup&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen, Rasmus Wernersson, and Kristoffer Vitting-Seerup &lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 24) - Systems Biology in Biomedical Research  (Heart diseases) 1 - CANCELLED ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson (recorded lecture)&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---:* Read the cartoon to the right - it nicely illustrates the multiple testing problem (source: XKCD.org) &lt;br /&gt;
:* &#039;&#039;How does multiple testing correction work?&#039;&#039;, Noble 2009 ([https://www.nature.com/articles/nbt1209-1135 Article link])&lt;br /&gt;
:* Make sure you understand how &#039;&#039;&#039;Bonferroni adjustment&#039;&#039;&#039; works.&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn &lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
[[ExTM+MulTest|Multiple testing (text mining example)]] &amp;lt;br&amp;gt;&lt;br /&gt;
:# [[ExTM+MulTest|Multiple testing (text mining example)]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039;  [[ExTM+MulTest_answers|Multiple testing answers]]&lt;br /&gt;
:# [[ExHumanSysbio2|Clustering]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479133/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 7) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Exercise:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479122/View]) - &#039;&#039;&#039;Answers&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479141/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 14) - Essential R functions + exam exercise ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Week 10 (and to some extent week 9) exercise walk-through&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; Old exam set (adapted to R)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 21) - QnA / AMA ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Topics:&#039;&#039;&#039; Anything you would like to a refresher about&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (November 28) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=113</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=113"/>
		<updated>2024-09-19T12:26:47Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 07 (October 17) - Yeast Systems Biology 4 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Kristoffer Vitting-Seerup&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 24) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen, Rasmus Wernersson, and Kristoffer Vitting-Seerup &lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 24) - Systems Biology in Biomedical Research  (Heart diseases) 1 - CANCELLED ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson (recorded lecture)&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---:* Read the cartoon to the right - it nicely illustrates the multiple testing problem (source: XKCD.org) &lt;br /&gt;
:* &#039;&#039;How does multiple testing correction work?&#039;&#039;, Noble 2009 ([https://www.nature.com/articles/nbt1209-1135 Article link])&lt;br /&gt;
:* Make sure you understand how &#039;&#039;&#039;Bonferroni adjustment&#039;&#039;&#039; works.&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn &lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
[[ExTM+MulTest|Multiple testing (text mining example)]] &amp;lt;br&amp;gt;&lt;br /&gt;
:# [[ExTM+MulTest|Multiple testing (text mining example)]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039;  [[ExTM+MulTest_answers|Multiple testing answers]]&lt;br /&gt;
:# [[ExHumanSysbio2|Clustering]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479133/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 7) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Exercise:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479122/View]) - &#039;&#039;&#039;Answers&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479141/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 14) - Essential R functions + exam exercise ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Week 10 (and to some extent week 9) exercise walk-through&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; Old exam set (adapted to R)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 21) - QnA / AMA ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Topics:&#039;&#039;&#039; Anything you would like to a refresher about&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (November 28) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=112</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=112"/>
		<updated>2024-09-19T12:26:19Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 07 (October 12) - Yeast Systems Biology 4 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Kristoffer Vitting-Seerup&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 17) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen, Rasmus Wernersson, and Kristoffer Vitting-Seerup &lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 24) - Systems Biology in Biomedical Research  (Heart diseases) 1 - CANCELLED ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson (recorded lecture)&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---:* Read the cartoon to the right - it nicely illustrates the multiple testing problem (source: XKCD.org) &lt;br /&gt;
:* &#039;&#039;How does multiple testing correction work?&#039;&#039;, Noble 2009 ([https://www.nature.com/articles/nbt1209-1135 Article link])&lt;br /&gt;
:* Make sure you understand how &#039;&#039;&#039;Bonferroni adjustment&#039;&#039;&#039; works.&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn &lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
[[ExTM+MulTest|Multiple testing (text mining example)]] &amp;lt;br&amp;gt;&lt;br /&gt;
:# [[ExTM+MulTest|Multiple testing (text mining example)]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039;  [[ExTM+MulTest_answers|Multiple testing answers]]&lt;br /&gt;
:# [[ExHumanSysbio2|Clustering]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479133/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 7) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Exercise:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479122/View]) - &#039;&#039;&#039;Answers&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479141/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 14) - Essential R functions + exam exercise ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Week 10 (and to some extent week 9) exercise walk-through&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; Old exam set (adapted to R)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 21) - QnA / AMA ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Topics:&#039;&#039;&#039; Anything you would like to a refresher about&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (November 28) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=111</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=111"/>
		<updated>2024-09-19T09:52:49Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 03 (September 19) - Intro 3 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to network topology exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Kristoffer Vitting-Seerup&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 12) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen, Rasmus Wernersson, and Kristoffer Vitting-Seerup &lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 24) - Systems Biology in Biomedical Research  (Heart diseases) 1 - CANCELLED ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson (recorded lecture)&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---:* Read the cartoon to the right - it nicely illustrates the multiple testing problem (source: XKCD.org) &lt;br /&gt;
:* &#039;&#039;How does multiple testing correction work?&#039;&#039;, Noble 2009 ([https://www.nature.com/articles/nbt1209-1135 Article link])&lt;br /&gt;
:* Make sure you understand how &#039;&#039;&#039;Bonferroni adjustment&#039;&#039;&#039; works.&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn &lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
[[ExTM+MulTest|Multiple testing (text mining example)]] &amp;lt;br&amp;gt;&lt;br /&gt;
:# [[ExTM+MulTest|Multiple testing (text mining example)]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039;  [[ExTM+MulTest_answers|Multiple testing answers]]&lt;br /&gt;
:# [[ExHumanSysbio2|Clustering]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479133/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 7) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Exercise:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479122/View]) - &#039;&#039;&#039;Answers&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479141/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 14) - Essential R functions + exam exercise ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Week 10 (and to some extent week 9) exercise walk-through&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; Old exam set (adapted to R)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 21) - QnA / AMA ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Topics:&#039;&#039;&#039; Anything you would like to a refresher about&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (November 28) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=110</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=110"/>
		<updated>2024-09-11T13:35:44Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 02 (September 12) - Intro 2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to igraph exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Kristoffer Vitting-Seerup&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 12) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen, Rasmus Wernersson, and Kristoffer Vitting-Seerup &lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 24) - Systems Biology in Biomedical Research  (Heart diseases) 1 - CANCELLED ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson (recorded lecture)&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---:* Read the cartoon to the right - it nicely illustrates the multiple testing problem (source: XKCD.org) &lt;br /&gt;
:* &#039;&#039;How does multiple testing correction work?&#039;&#039;, Noble 2009 ([https://www.nature.com/articles/nbt1209-1135 Article link])&lt;br /&gt;
:* Make sure you understand how &#039;&#039;&#039;Bonferroni adjustment&#039;&#039;&#039; works.&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn &lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
[[ExTM+MulTest|Multiple testing (text mining example)]] &amp;lt;br&amp;gt;&lt;br /&gt;
:# [[ExTM+MulTest|Multiple testing (text mining example)]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039;  [[ExTM+MulTest_answers|Multiple testing answers]]&lt;br /&gt;
:# [[ExHumanSysbio2|Clustering]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479133/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 7) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Exercise:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479122/View]) - &#039;&#039;&#039;Answers&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479141/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 14) - Essential R functions + exam exercise ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Week 10 (and to some extent week 9) exercise walk-through&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; Old exam set (adapted to R)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 21) - QnA / AMA ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Topics:&#039;&#039;&#039; Anything you would like to a refresher about&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (November 28) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=109</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=109"/>
		<updated>2024-09-11T13:35:31Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 02 (September 12) - Intro 2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|Handout answers]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to igraph exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Kristoffer Vitting-Seerup&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 12) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen, Rasmus Wernersson, and Kristoffer Vitting-Seerup &lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 24) - Systems Biology in Biomedical Research  (Heart diseases) 1 - CANCELLED ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson (recorded lecture)&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---:* Read the cartoon to the right - it nicely illustrates the multiple testing problem (source: XKCD.org) &lt;br /&gt;
:* &#039;&#039;How does multiple testing correction work?&#039;&#039;, Noble 2009 ([https://www.nature.com/articles/nbt1209-1135 Article link])&lt;br /&gt;
:* Make sure you understand how &#039;&#039;&#039;Bonferroni adjustment&#039;&#039;&#039; works.&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn &lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
[[ExTM+MulTest|Multiple testing (text mining example)]] &amp;lt;br&amp;gt;&lt;br /&gt;
:# [[ExTM+MulTest|Multiple testing (text mining example)]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039;  [[ExTM+MulTest_answers|Multiple testing answers]]&lt;br /&gt;
:# [[ExHumanSysbio2|Clustering]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479133/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 7) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Exercise:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479122/View]) - &#039;&#039;&#039;Answers&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479141/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 14) - Essential R functions + exam exercise ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Week 10 (and to some extent week 9) exercise walk-through&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; Old exam set (adapted to R)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 21) - QnA / AMA ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Topics:&#039;&#039;&#039; Anything you would like to a refresher about&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (November 28) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=108</id>
		<title>Autumn2024</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=Autumn2024&amp;diff=108"/>
		<updated>2024-09-11T13:34:49Z</updated>

		<summary type="html">&lt;p&gt;Lronn: /* Lecture 02 (September 12) - Intro 2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Course 22140 - plan for autumn 2024 =&lt;br /&gt;
&amp;lt;!-- = General information = --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Teachers:&#039;&#039;&#039;&lt;br /&gt;
* Lars Rønn Olsen (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:lronn@dtu.dk  lronn@dtu.dk]&lt;br /&gt;
* Kristoffer Vitting-Seerup (course organizer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:krivi@dtu.dk  krivi@dtu.dk]&lt;br /&gt;
* Rasmus Wernersson (external lecturer) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:rawe@dtu.dk rawe@dtu.dk]&lt;br /&gt;
* Dimitrios Kanakoglou (teaching assistant) - &#039;&#039;&#039;contact:&#039;&#039;&#039; [mailto:dimkan@dtu.dk dimkan@dtu.dk]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &#039;&#039;&#039;Main course page:&#039;&#039;&#039; [[Course36040|36040 - wiki page]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= DTU Learn =&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216012 Course 22140, Autumn 2024 @ DTU Learn]&lt;br /&gt;
* Link: [https://learn.inside.dtu.dk/d2l/home/216053 Course 22150, Autumn 2024 @ DTU Learn]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Bioinformatics =&lt;br /&gt;
Besides knowledge about basic molecular biology and biochemistry, a prerequisite for this course is bioinformatics (usually from course 22211 or one of its variants). If you need to read up on some bioinformatics topics, please use the links below.&lt;br /&gt;
* [https://teaching.healthtech.dtu.dk/22111/ Course 22111] - &#039;&#039;Introduction to Bioinformatics&#039;&#039; &lt;br /&gt;
* [[Exercise:_The_protein_database_UniProt|UniProt exercise]] ([[ExUniProt-answers|answers]]) - This is an important one, as we use UniProt a lot in this course.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= R =&lt;br /&gt;
For the computer exercises we will be using R to process data, analyze, and visualize the biological networks. R is Open Source and freely available for Windows, Mac and Linux. We will be utilizing a RStudio server cloud solution to make sure that everyone uses the same version of R and the needed packages. You can log in with your DTU credentials [https://teaching.healthtech.dtu.dk/22140/rstudio.php here].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: In order to produce plots with RStudio server, you need to have the appropriate graphics device activated. If you have X11 installed, this should work without any further actions. If you do not, you will get an error whenever you try to plot anything. To mitigate this, open Rstudio server, go to &amp;quot;Tools&amp;quot; (options bar at the top of the screen), select &amp;quot;Global options&amp;quot; from the drop down menu, select the &amp;quot;Graphics&amp;quot; tab, and change &amp;quot;Backend&amp;quot; to &amp;quot;Cairo&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Weekly assignments =&lt;br /&gt;
[[Image:Office-notes-line_drawing.png|40px|left]]&lt;br /&gt;
As part of the computer exercises you (or your group) should keep a &amp;quot;log book&amp;quot; and answer the questions/report observations as you work though the exercise. The parts you need to document will be marked with the small &amp;quot;report icon&amp;quot; also seen here.&lt;br /&gt;
&lt;br /&gt;
Following the exercise the reports will be handed in using the peer grade system. We will assign your report to three co-students to provide you with feedback.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The reports are not as such mandatory, but it is HIGHLY recommended to turn them in, as this is excellent training for the exam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Allowed formats:&#039;&#039;&#039; &lt;br /&gt;
# Plain text + figures as extra files&lt;br /&gt;
# Microsoft Word (*.doc, *.docx)&lt;br /&gt;
# PDF: use ANY word-processing software you like (e.g. &amp;quot;Pages&amp;quot;) and save/print the result to a PDF.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Lecture plan, autumn 2024 =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== When and Where ==&lt;br /&gt;
* &#039;&#039;&#039;When:&#039;&#039;&#039; Each &#039;&#039;&#039;Thursday&#039;&#039;&#039; from &#039;&#039;&#039;13:00-17:00&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Where:&#039;&#039;&#039; Building &#039;&#039;&#039;303A&#039;&#039;&#039; auditorium/group-room &#039;&#039;&#039;045&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Block #1: Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen and Rasmus Wernersson&lt;br /&gt;
----&lt;br /&gt;
=== Lecture 01 (September 5) - Intro 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to Systems Biology and biological networks&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;Can a Biologist fix a radio?&#039;&#039; - Lazebnik Y., Cancer Cell 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W01_Lazebnik_CancerCell2002.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[igraphIntro_Ex_v1|Introduction to working with networks in R]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[igraphIntro_Answers_v1|Exercise #1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 02 (September 12) - Intro 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Protein-protein interaction networks. Experimental methods and interpretation.&#039;&#039; - Lars Rønn Olsen&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; &#039;&#039;SnapShot: Protein-Protein Interaction Networks&#039;&#039; - Seebacher &amp;amp; Gavin, Nature 2011 ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - focus on the EXPERIMENTAL METHODS part for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
* Lecture note on &#039;&#039;quality scoring of protein-protein interaction data, notes and examples&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/W02_scoring_of_PPI.pdf PDF])&lt;br /&gt;
* &#039;&#039;Comparative assessment of large-scale data sets of protein-protein interactions&#039;&#039; - von Mering C, &#039;&#039;et al&#039;&#039;. Nature 2002 ([https://teaching.healthtech.dtu.dk/material/22140/W02_Comparative_assessment_of_large-scale_data_sets_of_protein-protein.pdf PDF])&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; &lt;br /&gt;
:* [[Media:W02_exercises_v7_corrected.pdf|Building protein-protein interaction networks from experimental data]] - [[Media:W02_exercises_with_answers_2021_CORRECTED.pdf|solutions]]&lt;br /&gt;
:* [[Media:Exercise_help_sheet.pdf|Note taking sheet for help with ex. 5,7,8,9]] - Consider printing this for taking notes&lt;br /&gt;
:* [[Ex_handouts_igraph|Visualization of the networks from the hand-out exercise]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[Ex_handouts_igraph_solution|Exercise #2 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 03 (September 19) - Intro 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Network topology&#039;&#039; - Lars Rønn Olsen &lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Hand-outs:&#039;&#039;&#039; SnapShot: Protein-Protein Interaction Networks - (SAME AS LAST WEEK) ([https://teaching.healthtech.dtu.dk/material/22140/SnapShot_Cell2011.pdf PDF]) - read the rest for this week.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Global network properties. Barabasi&amp;amp; Oltvai, Nat Rev Genet 2004 ([https://teaching.healthtech.dtu.dk/material/22140/W03_Barabasi_Oltvai_NatRevGen2004.pdf PDF]) - concentrate on &#039;&#039;&#039;Box 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 2&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Handout exercise:&#039;&#039;&#039; Network topology exercise ([https://teaching.healthtech.dtu.dk/material/22140/W03_Network_topology_exercise_v3.pdf PDF])&lt;br /&gt;
#&#039;&#039;&#039;Computer exercise:&#039;&#039;&#039; Topology/statistics/modules [[ExTopology1_igraph|Network topology and statistics]] - &#039;&#039;&#039;Answers&#039;&#039;&#039;: [[ExTopology1_igraph_solutions|Answers to igraph exercise]]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #2: Case: Yeast systems biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Rasmus Wernersson and Kristoffer Vitting-Seerup&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 04 (September 26) - Yeast Systems Biology 1 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Yeast Cell Cycle introduction&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; Will be uploaded to DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* Background on budding yeast cell cycle and cell cycle regulation ([https://teaching.healthtech.dtu.dk/material/22140/Budding_Yeast_Cell_Cycle_Model.pdf PDF]).&lt;br /&gt;
:* Source: http://mpf.biol.vt.edu/research/budding_yeast_model/pp/index.php (much more information about modelling the yeast cell cycle can be found here) [NOT part of the curriculum].&lt;br /&gt;
:* &#039;&#039;&#039;Important:&#039;&#039;&#039; You don&#039;t need to understand all the finer points about the regulation, but make sure you known the &#039;&#039;&#039;phases&#039;&#039;&#039; of the cell cycle. &lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Saccharomyces Genome Database:&#039;&#039;&#039; http://www.yeastgenome.org/&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastSysBio_R|Yeast cell cycle 1 - introduction to data and methods]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastSysBio_R_answers|Yeast 1 answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 05 (October 3) - Yeast Systems Biology 2 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Gene Ontology and large scale data analysis&#039;&#039; - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; Two introductory papers to The Gene Ontology (GO). Choose the one you prefer. &lt;br /&gt;
:* Intro for bioinformaticians: &#039;&#039;&#039;The what, where, how and why of gene ontology - a primer for bioinformaticians&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/Bbr002.pdf PDF] (NEW LINK) (focus on the first three pages).&lt;br /&gt;
:**Focuses mostly on the structure of the GO, the evidence behind the annotations and relations of the genes/proteins to the categories.&lt;br /&gt;
:* Intro for biologists: &#039;&#039;&#039;Gene Ontology: tool for the uniﬁcation of biology&#039;&#039;&#039; - [https://teaching.healthtech.dtu.dk/material/22140/GO_NATURE_GENETICS_2000.pdf PDF] (NEW LINK)&lt;br /&gt;
:**Describes more the general idea behind GO and why it is useful.&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; On DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R|Gene Ontology - yeast cell cycle examples]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExGeneOntology_Yeast_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 06 (October 10) - Yeast Systems Biology 3 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Introduction to transcriptomics&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &#039;&#039;A brief introduction to DNA micro-arrays&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/691406/View DTU Learn]) - Rasmus Wernersson&lt;br /&gt;
:&#039;&#039;&#039;Background:&#039;&#039;&#039; (Optional) - If you need a reminder about how the Log2 function works, then have a look at &#039;&#039;&#039;Appendix A&#039;&#039;&#039; in Thomas Schneider&#039;s &#039;&#039; Information Theory Primer&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/informationtheory_primer.pdf PDF])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics_R|Yeast cell cycle: single point arrest DNA microarray studies]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycle_answers|Answers]]&lt;br /&gt;
&lt;br /&gt;
=== Lecture 07 (October 12) - Yeast Systems Biology 4 ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;How proteins collaborate during the phases of cell devision&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; [https://teaching.healthtech.dtu.dk/material/22140/Cyclebase1_2008.pdf PDF Cyclebase paper] - (skim it - make sure to understand &#039;&#039;&#039;Fig 1&#039;&#039;&#039;).&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R|Mapping temporal expression data onto networks]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExYeastCellCycleTranscriptomics2_R_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Autumn vacation&#039;&#039;&#039;&lt;br /&gt;
(Week 42)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Block #3: Case: Human disease biology ==&lt;br /&gt;
&#039;&#039;&#039;Responsible for this block:&#039;&#039;&#039; Lars Rønn Olsen, Rasmus Wernersson, and Kristoffer Vitting-Seerup &lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Lecture 08 (October 24) - Systems Biology in Biomedical Research  (Heart diseases) 1 - CANCELLED ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology of Heart Disease&#039;&#039; - Rasmus Wernersson (recorded lecture)&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/27040/teachingmaterials/Furlong_Cell2012.pdf PDF])&lt;br /&gt;
:* Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; [[ExHumanSysbio1|Working with &amp;quot;Virtual Pulldowns&amp;quot;]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[ExHumanSysbio1_answers|&amp;quot;Virtual Pulldown&amp;quot; answers]]---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 09 (October 31) - Systems Biology in Biomedical Research  (Heart diseases) 2 ===&lt;br /&gt;
[[Image:XKCD_significant.png|80px|thumb|right]]&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Virtual pulldown and protein complex detection&#039;&#039; - Lars Rønn Olsen and Giorgia Moranzoni&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;Human diseases through the lens of network biology&#039;&#039; ([https://teaching.healthtech.dtu.dk/material/22140/Furlong_Cell2012.pdf PDF]) - Concentrate on: &#039;&#039;&#039;Figure 1&#039;&#039;&#039; and &#039;&#039;&#039;Box 3&#039;&#039;&#039;&lt;br /&gt;
:* &#039;&#039;&#039;Heart development video:&#039;&#039;&#039; https://www.youtube.com/watch?v=5DIUk9IXUaI&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039; (not curriculum)&lt;br /&gt;
:* The heart disease paper: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2913399/&lt;br /&gt;
:* The MCODE paper: http://www.biomedcentral.com/1471-2105/4/2&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet|DiscoNet]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet_answers|DiscoNet answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!---:* Read the cartoon to the right - it nicely illustrates the multiple testing problem (source: XKCD.org) &lt;br /&gt;
:* &#039;&#039;How does multiple testing correction work?&#039;&#039;, Noble 2009 ([https://www.nature.com/articles/nbt1209-1135 Article link])&lt;br /&gt;
:* Make sure you understand how &#039;&#039;&#039;Bonferroni adjustment&#039;&#039;&#039; works.&lt;br /&gt;
:&#039;&#039;&#039;Extra:&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn &lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; &lt;br /&gt;
[[ExTM+MulTest|Multiple testing (text mining example)]] &amp;lt;br&amp;gt;&lt;br /&gt;
:# [[ExTM+MulTest|Multiple testing (text mining example)]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039;  [[ExTM+MulTest_answers|Multiple testing answers]]&lt;br /&gt;
:# [[ExHumanSysbio2|Clustering]] - &#039;&#039;&#039;Answers:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479133/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 10 (November 7) - Integrating multiple omics data types for cancer research ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Systems Biology in Cancer&#039;&#039; - Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;The Hallmarks of Cancer&#039;&#039;, Hanahan &amp;amp; Weinberg 2011 ([https://www.cell.com/fulltext/S0092-8674(11)00127-9 Article link])&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; [https://learn.inside.dtu.dk/d2l/le/content/167355/viewContent/704041/View On DTU Learn]&lt;br /&gt;
:&#039;&#039;&#039;Exercises:&#039;&#039;&#039; [[DiscoNet2|Multiomics data integration]] &#039;&#039;&#039;Answers:&#039;&#039;&#039; [[DiscoNet2_answers|answers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- :&#039;&#039;&#039;Exercise:&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479122/View]) - &#039;&#039;&#039;Answers&#039;&#039;&#039; ([https://learn.inside.dtu.dk/d2l/le/content/126026/viewContent/479141/View]) ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 11 (November 14) - Essential R functions + exam exercise ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Week 10 (and to some extent week 9) exercise walk-through&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039; Old exam set (adapted to R)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 12 (November 21) - QnA / AMA ===&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; Kristoffer Vitting-Seerup&lt;br /&gt;
:&#039;&#039;&#039;Topics:&#039;&#039;&#039; Anything you would like to a refresher about&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Lecture 13 (November 28) - Systems Biology in Biomedical Research 3 (ZS Revelen framework, drug targets) ===&lt;br /&gt;
:&#039;&#039;&#039;Lecture:&#039;&#039;&#039; &#039;&#039;Biomarker and drug target identification&#039;&#039; - Rasmus Wernersson.&lt;br /&gt;
:&#039;&#039;&#039;Readings:&#039;&#039;&#039; &lt;br /&gt;
:* &#039;&#039;Systems biology investigation of COVID-19&#039;&#039;: &#039;&#039;&#039; Network analysis of COVID19 – Intomics&#039;&#039;&#039; (PDF on DTU Learn)&lt;br /&gt;
:* It&#039;s a document with a written explanation of the COVID-19 analysis. (PDF of Intomics web-page, apologies for the sub-optimal formatting) &lt;br /&gt;
:* Please read all of it - &#039;&#039;including methods&#039;&#039;. It is written for a non-technical audience and should be easy to understand.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Slides:&#039;&#039;&#039; To appear on DTU Learn&lt;br /&gt;
:&#039;&#039;&#039;Exercise:&#039;&#039;&#039;&lt;br /&gt;
:* PDF on Learn&lt;br /&gt;
:&#039;&#039;&#039;Link to ZS Revelen:&#039;&#039;&#039; &#039;&#039;&#039;https://zs-revelen.com/&#039;&#039;&#039;&lt;br /&gt;
:*&#039;&#039;&#039;Please register&#039;&#039;&#039; your email with ZS Revelen before the exercise. &#039;&#039;&#039;Please use your DTU email.&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Old exam sets =&lt;br /&gt;
&lt;br /&gt;
* On Learn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- = Links &amp;amp; curriculum summary =&lt;br /&gt;
* [[Links and curriculum|Links and curriculum index]] ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Exam =&lt;br /&gt;
* &#039;&#039;&#039;Date: 9/12 2024&lt;br /&gt;
* &#039;&#039;&#039;Time: (will be) available via https://eksamensplan.dtu.dk/&lt;br /&gt;
* &#039;&#039;&#039;Where: (will be) available via https://eksamensplan.dtu.dk/&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
	<entry>
		<id>https://teaching.healthtech.dtu.dk/22140/index.php?title=File:W02_exercises_with_answers_2021_CORRECTED.pdf&amp;diff=107</id>
		<title>File:W02 exercises with answers 2021 CORRECTED.pdf</title>
		<link rel="alternate" type="text/html" href="https://teaching.healthtech.dtu.dk/22140/index.php?title=File:W02_exercises_with_answers_2021_CORRECTED.pdf&amp;diff=107"/>
		<updated>2024-09-11T13:33:34Z</updated>

		<summary type="html">&lt;p&gt;Lronn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Lronn</name></author>
	</entry>
</feed>