Team:KULeuven/Tools

From 2008.igem.org

(Difference between revisions)
m
m (Lab Templates)
 
(35 intermediate revisions not shown)
Line 1: Line 1:
-
{{:Team:KULeuven/Tools/Navigation_Bar}}
+
'''DEPRECATED PAGE'''
-
 
+
{{:Team:KULeuven/Tools/Styling}}
-
[[Image:kulbanner.jpg|960px]]
+
{{:Team:KULeuven/Tools/Scripting}}
-
 
+
{{:Team:KULeuven/Tools/Header}}
-
Under Construction...
+
-
<!-- HTML block specifying CSS and Javascript used throughout the Tools page -->
+
-
<html>
+
-
<!-- HEAD section -->
+
-
<head>
+
-
<!-- CSS section -->
+
-
<style type="text/css">
+
-
.general div{
+
-
background-color:#EEFFFF;
+
-
border:1px solid #003E81;
+
-
padding:3pt;}
+
-
.example div{
+
-
background-color:#FFFFEE;
+
-
border-left:1px solid #003E81;
+
-
border-right:1px solid #003E81;
+
-
border-bottom:1px solid #003E81;
+
-
padding:3pt;}
+
-
.input#styled{
+
-
width:500px;
+
-
height:18px;
+
-
border:1px solid #003E81;}
+
-
.textarea{
+
-
width:900px;}
+
-
.textarea#styled{
+
-
width:500px;
+
-
border:1px solid #003E81;}
+
-
.button#clip{
+
-
height:22px;
+
-
background-color:#99CCFF;
+
-
border:1px solid #003E81;}
+
-
</style>
+
-
<!-- End of CSS section -->
+
-
<!-- Javascript section -->
+
-
<script style="text/javascript">
+
-
// copy to clipboard
+
-
function clipboard(holdtext)
+
-
{
+
-
copied = holdtext.createTextRange();
+
-
copied.execCommand("Copy");
+
-
return false;
+
-
}
+
-
</script>
+
-
<!-- End of Javascript section -->
+
-
</head>
+
-
<!-- End of HEAD section -->
+
-
</html>
+
== Templates ==
== Templates ==
-
All the useful templates are collected here, each one has a link to the template page and offers some information on the usage of the template. For convenience a clip button is offered to directly copy corresponding code to the clipboard.
+
All the useful templates are collected here, each one has a link to the template page and offers some information on the usage of the template. For convenience a clip button is offered to directly copy corresponding code to the clipboard ('''works only in IE, Firefox does not allow direct access to the clipboard!''').
=== General ===
=== General ===
Line 60: Line 14:
<div class="general"><div>
<div class="general"><div>
<center>
<center>
-
<input type="text" class="input" id="styled" name="navigation_bar" value="{{:Team:KULeuven/Tools/Navigation_Bar}}">
+
<input type="text" class="input" id="styled" name="navigation_bar" value="{{:Team:KULeuven/Tools/Navigation_Bar}}"/>
-
<input type="button" class="button" id="clip" value="Clip" onClick="clipboard(navigation_bar)">
+
<input type="button" class="button" id="clip" value="Clip" onClick="clipboard(navigation_bar)"/>
</center>
</center>
<hr>
<hr>
-
The navigation bar used throughout the wiki. The template contains all the CSS and Javascript code inline, in the <em>head</em> section. The structure itself is given and can be modified in the <em>body</em> section.
+
<p>
 +
The navigation bar used throughout the wiki. The template contains all the CSS and Javascript code inline. The structure itself is given at the bottom and can be modified as desired.
<br>
<br>
In general one submenu in the bar is coded as (in this example the Project Section):
In general one submenu in the bar is coded as (in this example the Project Section):
Line 83: Line 38:
</center>
</center>
Important: change the 'm4' to the appropriate value, e.g. if there are already 7 submenu's present it should be 'm8'.
Important: change the 'm4' to the appropriate value, e.g. if there are already 7 submenu's present it should be 'm8'.
-
<br>
+
</p>
 +
<p>
 +
If the submenu contains no entries (single link, no dropdown behaviour, e.g. Home, Modeling) you can make use of the "nomenu" class, this way the menu item does not change color in hover mode (mouse located on the menu item). Simply add <em>class="nomenu"</em> between <em>a</em> and <em>href</em>.
 +
</p>
 +
<p>
The code of the old navigation bar (no dropdown):
The code of the old navigation bar (no dropdown):
<br><br>
<br><br>
Line 100: Line 59:
</textarea>
</textarea>
</center>
</center>
 +
</p>
</div></div>
</div></div>
</html>
</html>
Line 107: Line 67:
<html>
<html>
<div class="general"><div>
<div class="general"><div>
-
The day template that is preloaded into a notebook day. The result can be seen in the [[Team:KULeuven/Notebook |Notebook]] section, when you click on an unmodified day, you'll get the edit screen, prefilled with the contents of the New_Day template. To create a calendar using this template use the code:
+
<p>The day template that is preloaded into a notebook day. The result can be seen in the [[Team:KULeuven/Notebook |Notebook]] section, when you click on an unmodified day, you'll get the edit screen, prefilled with the contents of the New_Day template. To create a calendar using this template use the code:
 +
</p>
<center>
<center>
-
<input type"text" class="input" id="styled" name="day_template" value="{{#calendar: query=preload=:Team:Kuleuven/Tools/New_Day}}">
+
<input type"text" class="input" id="styled" name="day_template" value="{{#calendar: query=preload=:Team:Kuleuven/Tools/New_Day}}"/>
-
<input type="button" class="button" id="clip" value="Clip" onClick="clipboard(day_template)">
+
<input type="button" class="button" id="clip" value="Clip" onClick="clipboard(day_template)"/>
</center>
</center>
 +
<p>
 +
The template adds a date retriever, displaying links such as yesterday, tomorrow, ..., to ease the navigation for the user. The javascript is found <a href="https://2008.igem.org/Team:KULeuven/Tools/New_Day/Date_Retriever">here</a>.
 +
</p>
</div></div>
</div></div>
</html>
</html>
=== Lab Templates ===
=== Lab Templates ===
 +
 +
'''All lab templates below are heavily inspired by the [https://2007.igem.org/Paris iGEM Paris 2007 team], and were merely reconstructed by the KULeuven iGEM team. We owe great thanks to them.'''
 +
==== [[Team:KULeuven/Tools/PCR | PCR sheet]] ====
==== [[Team:KULeuven/Tools/PCR | PCR sheet]] ====
Line 143: Line 110:
</textarea>
</textarea>
<br>
<br>
-
<input type="button" class="button" id="clip" value="Clip" onClick="clipboard(PCR)">
+
<input type="button" class="button" id="clip" value="Clip" onClick="clipboard(PCR)"/>
</center>
</center>
</div></div>
</div></div>
Line 173: Line 140:
</div></div>
</div></div>
</html>
</html>
 +
<br>
 +
{{:Team:KULeuven/Tools/PCR
{{:Team:KULeuven/Tools/PCR
|tanneal=55
|tanneal=55
Line 195: Line 164:
==== [[Team:KULeuven/Tools/Digestion | Digestion sheet]] ====
==== [[Team:KULeuven/Tools/Digestion | Digestion sheet]] ====
-
'''Example Usage:'''
+
<html>
-
<nowiki>
+
<div class="general"><div>
-
{{:Team:KULeuven/Tools/Digestion
+
<center>
 +
<textarea class="textarea" id="styled" name="digestion" rows="10">
 +
{{:Team:KULeuven/Tools/Digestion
 +
|nr=
 +
|product=
 +
|matrix=
 +
|enz1=
 +
|enz2=
 +
|size=
 +
|desc=
 +
}}
 +
</textarea>
 +
<br>
 +
<input type="button" class="button" id="clip" value="Clip" onClick="clipboard(digestion)"/>
 +
</center>
 +
</div></div>
 +
<div class="example"><div>
 +
<strong>Example</strong> (result below)
 +
<center>
 +
<textarea class="textarea" rows="10">
 +
{{:Team:KULeuven/Tools/Digestion
|nr=D12
|nr=D12
|product=Cre ORF
|product=Cre ORF
Line 206: Line 195:
|desc=Cre ORF extracted for further usage
|desc=Cre ORF extracted for further usage
}}
}}
-
</nowiki>
+
</textarea>
 +
</center>
 +
</div></div>
 +
</html>
 +
<br>
-
'''Result:'''
 
{{:Team:KULeuven/Tools/Digestion
{{:Team:KULeuven/Tools/Digestion
|nr=D12
|nr=D12
Line 221: Line 213:
==== [[Team:KULeuven/Tools/Ligation | Ligation sheet]] ====
==== [[Team:KULeuven/Tools/Ligation | Ligation sheet]] ====
-
'''Example Usage:'''
+
<html>
-
<nowiki>
+
<div class="general"><div>
 +
<center>
 +
<textarea class="textarea" id="styled" name="ligation" rows="10">
 +
{{:Team:KULeuven/Tools/Ligation
 +
|nr=
 +
|insert=
 +
|insert_vol=
 +
|vector=
 +
|vector_vol=
 +
|comm=
 +
|ncol=
 +
}}
 +
</textarea>
 +
<br>
 +
<input type="button" class="button" id="clip" value="Clip" onClick="clipboard(ligation)"/>
 +
</center>
 +
</div></div>
 +
<div class="example"><div>
 +
<strong>Example</strong> (result below)
 +
<center>
 +
<textarea class="textarea" rows="10">
{{:Team:KULeuven/Tools/Ligation
{{:Team:KULeuven/Tools/Ligation
|nr=L21
|nr=L21
Line 232: Line 244:
|ncol=30
|ncol=30
}}
}}
-
</nowiki>
+
</textarea>
 +
</center>
 +
</div></div>
 +
</html>
 +
<br>
-
'''Result'''
 
{{:Team:KULeuven/Tools/Ligation
{{:Team:KULeuven/Tools/Ligation
|nr=L21
|nr=L21
Line 247: Line 262:
==== [[Team:KULeuven/Tools/96-well | 96-Well Plate]] ====
==== [[Team:KULeuven/Tools/96-well | 96-Well Plate]] ====
-
'''Example Usage:'''
+
<html>
-
<nowiki>
+
<div class="general"><div>
 +
<center>
 +
<textarea class="textarea" id="styled" name="wells96" rows="10">
 +
{{:Team:KULeuven/Tools/96-well
 +
|title=
 +
|A1=
 +
|A2=
 +
|A3=
 +
|A4=
 +
|A5=
 +
|A6=
 +
|A7=
 +
...
 +
|B1=
 +
|C1=
 +
|D1=
 +
|E1=
 +
|F1=
 +
...
 +
}}
 +
</textarea>
 +
<br>
 +
<input type="button" class="button" id="clip" value="Clip" onClick="clipboard(wells96)"/>
 +
</center>
 +
<hr>
 +
The 96 wells sheet extends from 1-12 horizontally, and from A-H vertically, not all squares have been given in the code above, but are easily added.
 +
</div></div>
 +
<div class="example"><div>
 +
<strong>Example</strong> (result below)
 +
<center>
 +
<textarea class="textarea" rows="10">
{{:Team:KULeuven/Tools/96-well
{{:Team:KULeuven/Tools/96-well
|title=Induced Response
|title=Induced Response
Line 264: Line 309:
|F1=etc
|F1=etc
}}
}}
-
</nowiki>
+
</textarea>
 +
</center>
 +
</div></div>
 +
</html>
 +
<br>
-
'''Result'''
 
{{:Team:KULeuven/Tools/96-well
{{:Team:KULeuven/Tools/96-well
|title=Induced Response
|title=Induced Response
Line 282: Line 330:
|F1=etc
|F1=etc
}}
}}
-
 
=== Collection Templates ===
=== Collection Templates ===
==== [[Team:KULeuven/Tools/Oligo | Primer Collection]] ====
==== [[Team:KULeuven/Tools/Oligo | Primer Collection]] ====
-
'''Primer Collection Wiki Page'''
+
<html>
-
<nowiki>
+
<div class="general"><div>
-
To start the primer collection wiki page, simply create a new page and add following lines:
+
<center>
-
 
+
<textarea class="textarea" id="styled" name="oligo" rows="6">{{:Team:KULeuven/Tools/Oligo
-
{|width="960" cellspacing="1"
+
|nr=
 +
|name=
 +
|sequence=
 +
|Tm=
 +
|length=
 +
|comments=
 +
}}
 +
</textarea>
 +
<br>
 +
<input type="button" class="button" id="clip" value="Clip" onClick="clipboard(oligo)"/>
 +
</center>
 +
<hr>
 +
To start the primer collection page, copy following code into the edit screen:
 +
<center>
 +
<textarea class="textarea" rows="10">
 +
{|cellspacing="1" width=100%
! style="background:#003E81; color: white" colspan="5" | Table of Oligos
! style="background:#003E81; color: white" colspan="5" | Table of Oligos
-
|-style="background:#66FFCC" align="center"
+
|-style="background:#99CCFF" align="center"
-
| width="40pt" | Number
+
| width=5% | Number
-
| width="80pt" | Name
+
| width=10% | Name
-
| width="500pt" | Sequence
+
| width=55% | Sequence
-
| width="30pt" | Length
+
| width=5% | Tm (°C)
-
| width="300pt" | Comments
+
| width=5% | Length
 +
| width=20% | Comments
...
...
|}
|}
-
 
+
</textarea>
-
Where you see the dots the template codelines will be added to. The dots will be replaced by:
+
</center>
-
 
+
Where you see the dots the template codelines will be added to. The dots will be replaced by the primer templates sequentially:
 +
<br>
{{:Team:KULeuven/Tools/Oligo ...}}
{{:Team:KULeuven/Tools/Oligo ...}}
 +
<br>
{{:Team:KULeuven/Tools/Oligo ...}}
{{:Team:KULeuven/Tools/Oligo ...}}
-
</nowiki>
+
</div></div>
 +
<div class="example"><div>
 +
<strong>Example</strong> (result below)
 +
<center>
 +
<textarea class="textarea" rows="10">
 +
{|cellspacing="1" width=100%
 +
! style="background:#003E81; color: white" colspan="5" | Table of Oligos
 +
|-style="background:#99CCFF" align="center"
 +
| width=5% | Number
 +
| width=10% | Name
 +
| width=55% | Sequence
 +
| width=5% | Tm (°C)
 +
| width=5% | Length
 +
| width=20% | Comments
 +
{{:Team:KULeuven/Tools/Oligo}}
 +
{{:Team:KULeuven/Tools/Oligo}}
 +
|}
 +
</textarea>
 +
</center>
 +
</div></div>
 +
</html>
 +
<br>
-
'''Example Usage'''
+
{|cellspacing="1" width=100%
-
<nowiki>
+
! style="background:#003E81; color: white" colspan="5" | Table of Oligos
-
</nowiki>
+
|-style="background:#99CCFF" align="center"
 +
| width=5% | Number
 +
| width=10% | Name
 +
| width=55% | Sequence
 +
| width=5% | Tm (°C)
 +
| width=5% | Length
 +
| width=20% | Comments
 +
{{:Team:KULeuven/Tools/Oligo}}
 +
{{:Team:KULeuven/Tools/Oligo}}
 +
|}
 +
----
 +
 
 +
==== [[Team:KULeuven/Tools/Freezer | Freezer]] ====
 +
 
 +
<html>
 +
<div class="general"><div>
 +
All the information to start the Freezer page and making use of the Freezer templates is on the <a href="https://2008.igem.org/Team:KULeuven/Tools/Freezer">Freezer Tools</a> page.
 +
</div></div>
 +
</html>
-
'''Result'''
+
== CSS ==
 +
=== [[User:Avdmeers/SimpleCalendar.css | Calendar CSS file]] ===
-
==CSS==
+
== Javascript ==
-
==== [[User:Avdmeers/SimpleCalendar.css | Calendar CSS file]] ====
+

Latest revision as of 10:30, 29 October 2008

DEPRECATED PAGE

  dock/undock dropdown  

Contents

Templates

All the useful templates are collected here, each one has a link to the template page and offers some information on the usage of the template. For convenience a clip button is offered to directly copy corresponding code to the clipboard (works only in IE, Firefox does not allow direct access to the clipboard!).

General

Navigation Bar


The navigation bar used throughout the wiki. The template contains all the CSS and Javascript code inline. The structure itself is given at the bottom and can be modified as desired.
In general one submenu in the bar is coded as (in this example the Project Section):

Important: change the 'm4' to the appropriate value, e.g. if there are already 7 submenu's present it should be 'm8'.

If the submenu contains no entries (single link, no dropdown behaviour, e.g. Home, Modeling) you can make use of the "nomenu" class, this way the menu item does not change color in hover mode (mouse located on the menu item). Simply add class="nomenu" between a and href.

The code of the old navigation bar (no dropdown):

New Day

The day template that is preloaded into a notebook day. The result can be seen in the [[Team:KULeuven/Notebook |Notebook]] section, when you click on an unmodified day, you'll get the edit screen, prefilled with the contents of the New_Day template. To create a calendar using this template use the code:

The template adds a date retriever, displaying links such as yesterday, tomorrow, ..., to ease the navigation for the user. The javascript is found here.

Lab Templates

All lab templates below are heavily inspired by the iGEM Paris 2007 team, and were merely reconstructed by the KULeuven iGEM team. We owe great thanks to them.

PCR sheet


Example (result below)

PCR:
PCR Settings
Annealing (°C)
55°
Time Elongation
2'30"
Number of Cycles
30
Buffer (5x) 5x 10μL
MgCl2 10 µM 10μM 0μL
dNTP 10 µM 10μM 1μL
Oligo F 10 µM 6 LacZ-Fw 10μM 2.5μL
Oligo R 10 µM 7 LacZ-Rv 10μM 2.5μL
Water 34μL
Polymerase Taq 0.5μL
DNA 0.5μL of E. coli DNA extract
Expected Size
952bp
Success
YES/NO
Image (click to enlarge)
30px
Lane (0=ladder)
3+4

Digestion sheet


Example (result below)

Digestion Products
Number Product Name Matrix Name Enzyme 1 Enzyme 2 Size Description
D12 Cre ORF pJ61047 XbaI PstI 1063bp Cre ORF extracted for further usage

Ligation sheet


Example (result below)

Ligations
Number Insert Insert Volume (µL) Vector Vector Volume (µL) Comments Number of colonies
L21 D12 Cre ORF 6µL D1 pJ23100 2µL construction of BioBrick: Cre-recombinase under control of strong promotor 30

96-Well Plate



The 96 wells sheet extends from 1-12 horizontally, and from A-H vertically, not all squares have been given in the code above, but are easily added.
Example (result below)

96-Well Plate: Induced Response
1 2 3 4 5 6 7 8 9 10 11 12
A LB + 0µM IPTGLB + 0µM IPTGLB + 5µM IPTG LB + 5µM IPTGLB + 10µM IPTGLB + 10µM IPTG etc// ///
B LB 2 + 0µM IPTG// /// /// ///
C LB 3 + 0µM IPTG// /// /// ///
D LB 4 + 0µM IPTG// /// /// ///
E LB 5 + 0µM IPTG// /// /// ///
F etc// /// /// ///
G /// /// /// ///
H /// /// /// ///

Collection Templates

Primer Collection



To start the primer collection page, copy following code into the edit screen:
Where you see the dots the template codelines will be added to. The dots will be replaced by the primer templates sequentially:
{{:Team:KULeuven/Tools/Oligo ...}}
{{:Team:KULeuven/Tools/Oligo ...}}
Example (result below)

Table of Oligos
Number Name Sequence Tm (°C) Length Comments
{{{nr}}} {{{name}}} {{{sequence}}} {{{length}}} {{{Tm}}} {{{comments}}}
{{{nr}}} {{{name}}} {{{sequence}}} {{{length}}} {{{Tm}}} {{{comments}}}

Freezer

All the information to start the Freezer page and making use of the Freezer templates is on the Freezer Tools page.

CSS

Calendar CSS file

Javascript