<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <title> R code for the Graph Lab — bioconductor.org </title> <base href="" /> <meta name="generator" content="Plone - http://plone.org" /> <meta content="This will be the actual code we use in the Lab." name="description" /> <meta content="This will be the actual code we use in the Lab." name="DC.description" /> <meta content="admin" name="DC.creator" /> <meta content="2005-08-16 11:00:57" name="DC.date.created" /> <meta content="2006-01-17 17:36:54" name="DC.date.modified" /> <meta content="Document" name="DC.type" /> <meta content="text/html" name="DC.format" /> <!-- Basic crude style for Netscape4.x - This can be removed if you don't want the special NS4 look - it will still work, just be plain text instead. Column layout for Netscape4.x included --> <link rel="Stylesheet" type="text/css" href="../../../../../ploneNS4.css" /> <!-- Column style sheet. --> <style type="text/css" media="screen"><!-- @import url(http://bioconductor.org/ploneColumns.css); --></style> <!-- Main style sheets for CSS2 capable browsers --> <style type="text/css" media="screen"><!-- @import url(http://bioconductor.org/plone.css); --></style> <!-- Old style sheet from Plone 1.0, remove tal:condition="nothing" if you need to use the old styles. Will be removed in Plone 2.1. --> <!-- Alternate style sheets for the bigger/smaller text switcher --> <link rel="alternate stylesheet" type="text/css" media="screen" href="../../../../../ploneTextSmall.css" title="Small Text" /> <link rel="alternate stylesheet" type="text/css" media="screen" href="../../../../../ploneTextLarge.css" title="Large Text" /> <!-- Style sheet used for printing --> <link rel="stylesheet" type="text/css" media="print" href="../../../../../plonePrint.css" /> <!-- Style sheet used for presentations (Opera is the only browser supporting this at the moment) --> <link rel="stylesheet" type="text/css" media="projection" href="../../../../../plonePresentation.css" /> <!-- Internet Explorer CSS Fixes --> <!--[if IE]> <style type="text/css" media="all">@import url(http://bioconductor.org/ploneIEFixes.css);</style> <![endif]--> <!-- Custom style sheet if available --> <style type="text/css" media="all"><!-- @import url(http://bioconductor.org/ploneCustom.css); --></style> <link rel="shortcut icon" href="../../../../../favicon.ico" type="image/x-icon" /> <link rel="search" href="../../../../../search_form" title="Search this site" /> <link rel="up" href="../lab02.1" title="Up one level" /> <!-- Disable IE6 image toolbar --> <meta http-equiv="imagetoolbar" content="no" /> <!-- A slot where you can insert CSS in the header from a template --> <!-- min-width support for IE via Javascript, required for tableless --> <!--[if IE]> <script type="text/javascript" src="http://bioconductor.org/plone_minwidth.js"></script> <![endif]--> <!-- A slot where you can insert elements in the header from a template --> <!-- A slot where you can insert javascript in the header from a template --> <!-- Common Plone ECMAScripts --> <!-- Pull-down ECMAScript menu, only active if logged in --> <!-- old google analytics here --> <!-- Define dynamic server-side variables for javascripts in this one --> <script type="text/javascript" src="../../../../../plone_javascript_variables.js"> </script> <script type="text/javascript" src="../../../../../plone_javascripts.js"> </script> <!-- Old JS from Plone 1.0, remove tal:condition="nothing" if you need to use the old pop-ups. Will be removed in Plone 2.1 --> </head> <body class="section-workshops"> <div id="visual-portal-wrapper"> <div id="portal-top"> <a href="rCode#documentContent" class="hiddenStructure">Skip to content.</a> <h1 id="portal-logo"> <a href="../../../../../index.html">bioconductor.org</a> </h1> <div id="portal-slogan"><p>Bioconductor is an open source and open development software project<br /> for the analysis and comprehension of genomic data.</p></div> <h5 class="hiddenStructure">Sections</h5> <ul id="portal-globalnav"><li id="portaltab-index_html" class="plain"><a href="../../../../../index.html" accesskey="t">Home</a></li><li id="portaltab-GettingStarted" class="plain"><a href="../../../../../GettingStarted" accesskey="t">Getting Started</a></li><li id="portaltab-overview" class="plain"><a href="../../../../../overview" accesskey="t">Overview</a></li><li id="portaltab-download" class="plain"><a href="../../../../../download" accesskey="t">Downloads</a></li><li id="portaltab-docs" class="plain"><a href="../../../../../docs" accesskey="t">Documentation</a></li><li id="portaltab-biocpub" class="plain"><a href="../../../../../pub" accesskey="t">Publications</a></li><li id="portaltab-workshops" class="selected"><a href="../../../../../workshops" accesskey="t">Workshops</a></li><li id="portaltab-cabig" class="plain"><a href="http://wiki.fhcrc.org/caBioc" accesskey="t">caBIG</a></li></ul> </div> <div class="visualClear"></div> <!-- The wrapper div. It contains the three columns. --> <div id="portal-columns" class="visualColumnHideNone"> <!-- start of the main and left columns --> <div id="visual-column-wrapper"> <!-- start of main content block --> <div id="portal-column-content" class="topmargin1"> <div id="content" class=""> <div class="documentContent" id="region-content"> <a name="documentContent"></a> <h1 class="documentFirstHeading">R code for the Graph Lab</h1> <div class="documentDescription">This will be the actual code we use in the Lab.</div> <div class="plain"> <p>##############################</p><div id="mb_0">#####################<br /><br />### chunk number 1: load<br /><br />###################################################<br /><br />library('graph')<br /><br />library('Rgraphviz')<br /><br />library('RBGL')<br /><br />library('GO')<br /><br />library('GOstats')<br /><br />library('ALL')<br /><br />library('hgu95av2')<br /><br />library('genefilter')<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 2: 2<br /><br />###################################################<br /><br />myNodes <- c('s', 'p', 'q', 'r')<br /><br />myEdges <- list(s=list(edges=c('p', 'q')),<br /><br />         p=list(edges=c('p', 'q')),<br /><br />         q=list(edges=c('p', 'r')),<br /><br />         r=list(edges=c('s')))<br /><br />g <- new('graphNEL', nodes=myNodes, edgeL=myEdges, edgemode='directed')<br /><br />g<br /><br />plot(g)<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 3: 3<br /><br />###################################################<br /><br />nodes(g)<br /><br />edges(g)<br /><br />degree(g)<br /><br />plot(g)<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 4: grManip<br /><br />###################################################<br /><br />g1 = addNode("t", g)<br /><br />g2 = removeNode("p", g)<br /><br />g3 = addEdge("t", "s", g1, weights=pi/2)<br /><br />plot(g3)<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 5: imca<br /><br />###################################################<br /><br />data("integrinMediatedCellAdhesion")<br /><br />IMCAGraph<br /><br />nodes(IMCAGraph)<br /><br />edges(IMCAGraph)<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 6: exploreimca<br /><br />###################################################<br /><br />class(IMCAGraph)<br /><br />adj(IMCAGraph, "SOS")<br /><br />s = acc(IMCAGraph, "SOS")<br /><br />s<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 7: setop<br /><br />###################################################<br /><br />V <- letters[1:4]<br /><br />set.seed(4713)<br /><br />ug1 <- randomGraph(V, 1, .55)<br /><br />ug2 <- randomGraph(V, 1, .55)<br /><br />plot(ug1)<br /><br />plot(ug2)<br /><br />plot(complement(ug1))<br /><br />plot(intersection(ug1,ug2))<br /><br />plot(union(ug1,ug2))<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 8: graphrep<br /><br />###################################################<br /><br />ft = cbind(1:4, c(2,3,1,4))<br /><br />ft<br /><br />m = ftM2adjM(ft)<br /><br />g = ftM2graphNEL(ft)<br /><br />plot(g)<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 9: gxl eval=FALSE<br /><br />###################################################<br /><br />## edit(file=system.file("GXL", "kmstEx.gxl", package="graph"))<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 10: rg<br /><br />###################################################<br /><br />re  = randomEGraph(paste(1:100), edges=50)<br /><br />plot(re, "neato")<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 11: cc<br /><br />###################################################<br /><br />cc = connComp(re)<br /><br />cc[1:5]<br /><br />table(listLen(cc))<br /><br />wh = which.max(listLen(cc))<br /><br />sg = subGraph(cc[[wh]], re)<br /><br />plot(sg, "neato")<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 12: igg<br /><br />###################################################<br /><br />get("GO:0003700", GOTERM)<br /><br />tfg = GOGraph("GO:0003700", GOMFPARENTS)<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 13:<br /><br />###################################################<br /><br />plot(tfg)<br /><br />get("GO:0003677", GOTERM)<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 14: nda<br /><br />###################################################<br /><br />nda = makeNodeAttrs(re)<br /><br />nda<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 15: colors<br /><br />###################################################<br /><br />colors = rainbow(length(cc))<br /><br />ord   = order(listLen(cc))<br /><br />for(i in seq(along=ord))<br /><br />  nda$fillcolor[cc[[ord[i]]]] = colors[i]<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 16: la<br /><br />###################################################<br /><br />la = agopen(re,  nodeAttrs=nda, layoutType="neato", name="whatever")<br /><br />la<br /><br />plot(la)<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 17: la2<br /><br />###################################################<br /><br />nda$shape[cc[[4]]]="box"<br /><br />la2 = agopen(re,  nodeAttrs=nda, layoutType="neato", name="whatever")<br /><br />plot(la2)<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 18:<br /><br />###################################################<br /><br />class(la)<br /><br />slotNames(la)<br /><br />AgEdge(la)<br /><br />slotNames(AgEdge(la)[[1]])<br /><br />AgEdge(la)[[1]]@color<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 19: all<br /><br />###################################################<br /><br />data(ALL)<br /><br />s1 = grep("^B", as.character(ALL$BT))<br /><br />s2 = which(as.character(ALL$mol) %in% c("BCR/ABL","NEG"))<br /><br />eset = ALL[, intersect(s1, s2)]<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 20: iqr<br /><br />###################################################<br /><br />n = nrow(pData(eset))<br /><br />q25 = rowQ(exprs(eset), n*0.25)<br /><br />q75 = rowQ(exprs(eset), n*0.75)<br /><br />iqr = q75-q25<br /><br />sel = (iqr>=median(iqr))<br /><br />eset = eset[sel, ]<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 21: tt<br /><br />###################################################<br /><br />tt = rowttests(eset, "mol")<br /><br />hist(tt$p.value, 200, col="orange")<br /><br />diffps =  geneNames(eset)[order(tt$p.value)[1:100]]<br /><br />diffps<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 22:<br /><br />###################################################<br /><br />diffll = unlist(mget(diffps, hgu95av2LOCUSID))<br /><br />diffll<br /><br />diffll = as.character(unique(diffll))<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 23: hyperg<br /><br />###################################################<br /><br />gGhyp = GOHyperG(diffll)<br /><br />hist(gGhyp$pv)<br /><br />goCats = names(which(gGhyp$pv<0.01))<br /><br /> mget(goCats, GOTERM)<br /><br /><br /><br /><br /><br />###################################################<br /><br />### chunk number 24: indGoG<br /><br />###################################################<br /><br />gGO = makeGOGraph(diffll, "MF")<br /><br />gGO<br /><br />natt = makeNodeAttrs(gGO, shape="ellipse", label=substr(nodes(gGO), 7, 10))<br /><br />natt$fillcolor[goCats]='red'<br /><br />lgGO = agopen(gGO, recipEdges="distinct", layoutType="dot", nodeAttrs=natt, name="")<br /><br />plot(lgGO)</div> </div> <div class="discussion"> </div> </div> </div> </div> <!-- end of main content block --> <!-- start of the left (by default at least) column --> <div id="portal-column-one"> <div class="visualPadding"> <br><br><br> <!-- disabled left slot image <img tal:replace="structure nocall:here/pict.jpg" /> --> <div class="portlet" id="portlet-navigation-tree"> <div> <h5>Navigation</h5> <div class="portletBody"> <div class="portletContent odd"> <a href="../../../../../GettingStarted/index.html" accesskey="n" class="navItem navLevel1" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">Getting Started</span> </a> <a href="../../../../../overview/index.html" accesskey="n" class="navItem navLevel1" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">Overview</span> </a> <a href="../../../../../download/index.html" accesskey="n" class="navItem navLevel1" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">Downloads</span> </a> <a href="../../../../../docs/index.html" accesskey="n" class="navItem navLevel1" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">Documentation</span> </a> <a href="../../../../../pub/index.html" accesskey="n" class="navItem navLevel1" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">Publications</span> </a> <a href="../../../../index.html" accesskey="n" class="navItem navLevel1" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">Workshops</span> </a> <a href="../../../../2010/index.html" accesskey="n" class="navItem navLevel2" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">2010</span> </a> <a href="../../../../2009/index.html" accesskey="n" class="navItem navLevel2" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">2009</span> </a> <a href="../../../../2008/index.html" accesskey="n" class="navItem navLevel2" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">2008</span> </a> <a href="../../../../2007/index.html" accesskey="n" class="navItem navLevel2" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">2007</span> </a> <a href="../../../../2006/index.html" accesskey="n" class="navItem navLevel2" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">2006</span> </a> <a href="../../../index.html" accesskey="n" class="navItem navLevel2" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">2005</span> </a> <a href="../../index.html" accesskey="n" class="navItem navLevel3" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">BioC2005 - Aug</span> </a> <a href="../index.html" accesskey="n" class="navItem navLevel4" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">Lab Sessions</span> </a> <a href="../lab01/index.html" accesskey="n" class="navItem navLevel5" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">lab01</span> </a> <a href="index.html" accesskey="n" class="navItem navLevel5 currentNavItem" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">lab02</span> </a> <a href="../lab03/index.html" accesskey="n" class="navItem navLevel5" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">lab03</span> </a> <a href="../lab04/index.html" accesskey="n" class="navItem navLevel5" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">lab04</span> </a> <a href="../lab05/index.html" accesskey="n" class="navItem navLevel5" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">lab05</span> </a> <a href="../lab06/index.html" accesskey="n" class="navItem navLevel5" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">lab06</span> </a> <a href="../lab07/index.html" accesskey="n" class="navItem navLevel5" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">lab07</span> </a> <a href="../lab08/index.html" accesskey="n" class="navItem navLevel5" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">lab08</span> </a> <a href="../lab09/index.html" accesskey="n" class="navItem navLevel5" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">lab09</span> </a> <a href="../lab10/index.html" accesskey="n" class="navItem navLevel5" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">lab10</span> </a> <a href="../lab11/index.html" accesskey="n" class="navItem navLevel5" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">lab11</span> </a> <a href="../../talks/index.html" accesskey="n" class="navItem navLevel4" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">Talks</span> </a> <a href="../../../seattle 06-2005.1" accesskey="n" class="navItem navLevel3" title="BioConductor short course held in Seattle. June 2005"> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">Seattle - Jun</span> </a> <a href="../../../../2004/index.html" accesskey="n" class="navItem navLevel2" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">2004</span> </a> <a href="../../../../2003/index.html" accesskey="n" class="navItem navLevel2" title=""> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">2003</span> </a> <a href="../../../../2002/index.html" accesskey="n" class="navItem navLevel2" title="Workshops and courses 2002"> <!-- Disable Folder icon <img src="" height="16" width="16" alt="" class="navIcon" tal:condition="not:isAnon" tal:attributes="src python:portal_url+'/'+sibling.getIcon(1); title sibling/Type;" /> --> <span class="navItemText">2002</span> </a> <a href="rCode?navBatchStart=30"> ... </a> </div> </div> </div> </div> </div> </div> <!-- end of the left (by default at least) column --> </div> <!-- end of the main and left columns --> <!-- start of right (by default at least) column --> <div id="portal-column-two"> <div class="visualPadding"> <div> <!-- The Related Items box --> <script type="text/javascript" src="plonesearchbox_utils.js"> </script> <div class="portlet"> <!-- <h5 i18n:translate="searchbox_title">Search Box</h5> --> <div class="portletBody"> <form name="searchbox_form" id="searchbox_form" method="post" onsubmit="return process()" action="http://bioconductor.org/workshops/2005/BioC2005/labs/lab02/redirectToUrl" target="_blank"> <div class="portletContent odd"> <div id="searchbox_fields"> <input type="text" name="toSearch" id="toSearch" size="22" /> </div> <select name="choice" id="choice" onchange="return generateForm();" style="margin: 3px 0px 0px 0px;"> <option value="http://bioconductor.org/workshops/2005/BioC2005/labs/lab02/rCode/search?SearchableText=" id="search_portal">In this site</option> <option value="http://bioconductor.org/workshops/2005/BioC2005/labs/lab02/rCode/search?path=/Plones/rgentlem/bioconductor/workshops/2005/BioC2005/labs/lab02/rCode&SearchableText=" id="search_rubric">In this folder</option> <option value="http://google.com/search?sitesearch=www.bioconductor.org&q=%(text)s">Google this site</option> </select> <input class="context searchButton" type="submit" value="Search" style="margin: 3px;" /> </div> <!-- <div class="portletContent odd"> <input class="context searchButton" type="submit" value="Search" style="margin: 3px;" i18n:attributes="value"/> </div> <div class="portletContent even"> <a href="" tal:attributes="href string:${portal_url}/search_form" i18n:translate="advanced_search_link">Advanced search</a> </div> --> </form> <script type="text/javascript"> <!-- /*in case the first choice of the combobox is an url with several fields*/ clearForm(); generateForm(); --> </script> </div> </div> </div> <div class="portlet" id="portlet-news"> <h5>News</h5> <div class="portletBody"> <div class="portletContent odd"> <div class="portletDetails"> <a href="../../../../../News/2009-10-28-Release-2.5" class="date" title="BioC 2.5 Released">2009-10-26</a> <p> BioC 2.5, consisting of 352 packages and designed to work with R 2.10.z, was released today. </p> </div> </div> <div class="portletContent even"> <div class="portletDetails"> <a href="../../../../../News/RinNYT" class="date" title="Print Media Recognition">2009-01-07</a> <p> R, the open source platform used by Bioconductor, featured in a series of articles in the New York Times. </p> </div> </div> <div class="portletContent odd"> <a href="../../../../../news" class="portletMore"> More... </a> </div> </div> </div> </div> </div> <!-- end of the right (by default at least) column --> </div> <!-- end column wrapper --> <div class="visualClear"></div> <hr class="netscape4" /> <div id="portal-footer"> © 2003-2009 BioConductor. All Rights Reserved. <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript"> try{ var pageTracker = _gat._getTracker("UA-357281-1"); pageTracker._trackPageview(); } catch(err) {} </script> </div> </div> </body> </html>