summaryrefslogtreecommitdiff
path: root/tests/data/nature.html
blob: 5d36819964feea35e71d766e4d78245e826a2646 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096

































	
		

						
																																																																																																
																		
																								
 														 		
							





	

<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
	

	
<head xmlns="">
<!-- super head top --><META http-equiv="Content-Type" content="text/html; charset=utf-8">
                





































        
               
      











        
                
 	



 










	
				

        
        
  

 


 

 

 


 
 









	
	
<title>Expanding the toolbox for remote control of neuronal circuits - Nature Methods</title><meta content="noarchive" name="robots"><link href="http://www.nature.com.ezproxy.lib.utexas.edu/favicon.ico" rel="shortcut icon"><link type="text/css" href="/nmeth/style_older.css" rel="stylesheet"><style media="all" type="text/css">@import "/nmeth/style.css";</style>
		







<script type="text/javascript"><!--//--><![CDATA[//><!--
	var include = '';

	var wp = '';
	if (wp != '') include += 'wp='+wp;
	include += ';';

	var rf = '';
	if (rf != '') include += "rf="+rf;
	include += ';';

	var sp = '';
	if (sp != '') include += "sp="+sp;
	include += ";";

	var ps = '';
	if (ps != '') include += "ps="+ps;
	include += ";";

	var adinf = "lg=no;";

	if(include != ";;;;")
	{
		adinf = include;
	}

	var time = new Date();
	ordval= (time.getTime());

		ord=Math.random()*10000000000000000;
//--><!]]></script>

<script type="text/javascript" language="javascript">// provides cross-browser functionality
//======================================
function getObject(name) {
  if(document.getElementById) return document.getElementById(name);
  else if(document.all) return document.all[name];
  else return null;
}

</script><script src="/mailafriend/mailafriend.js" language="javascript" type="text/javascript"></script><!-- super head bottom -->
	<!-- resource metadata -->
				
				 																							
			
				
												
			<link title="schema(PRISM)" rel="schema.prism" href="http://prismstandard.org/namespaces/1.2/basic/" />
																																																																	<meta name="prism.copyright" content="&#169; 2008 Nature Publishing Group" />
					<meta name="prism.rightsAgent" content="permissions@nature.com" />
					<meta name="prism.publicationDate" content="2008-04-01" />
					<meta name="prism.volume" content="5" />
					<meta name="prism.number" content="4" />
					<meta name="prism.section" content="News and Views" />
					<meta name="prism.startingPage" content="293" />
					<meta name="prism.endingPage" content="295" />
					<meta name="prism.publicationName" content="Nature Methods" />
					<meta name="prism.issn" content="ERROR! NO ISSN" />
					<meta name="prism.eIssn" content="ERROR! NO EISSN" />
				
			<link title="schema(DC)" rel="schema.dc" href="http://purl.org.ezproxy.lib.utexas.edu/dc/elements/1.1/" />
																																																		<meta name="dc.publisher" content="Nature Publishing Group" />
					<meta name="dc.language" content="en" />
					<meta name="dc.rights" content="&#169; 2008 Nature Publishing Group" />
					<meta name="dc.title" content="Expanding the toolbox for remote control of neuronal circuits" />
					<meta name="dc.creator" content="Thomas Kn|[ouml]|pfel" />
					<meta name="dc.identifier" content="doi:10.1038/nmeth0408-293" />
					<meta name="dc.date" content="2008-04-01" />
					<meta name="dc.source" content="Nature Methods, Published online: 01 April 2008; | doi:10.1038/nmeth0408-293" />
				
																																																						<meta name="citation_publisher" content="Nature Publishing Group" />
					<meta name="citation_authors" content="Thomas Kn|[ouml]|pfel" />
					<meta name="citation_title" content="Expanding the toolbox for remote control of neuronal circuits" />
					<meta name="citation_date" content="2008-04-01" />
					<meta name="citation_volume" content="5" />
					<meta name="citation_issue" content="4" />
					<meta name="citation_firstpage" content="293" />
					<meta name="citation_doi" content="doi:10.1038/nmeth0408-293" />
					<meta name="citation_journal_title" content="Nature Methods" />
			
																																<meta name="DCS.dcssip" content="www.nature.com" />
					<meta name="Access" content="Yes" />
					<meta name="WT.cg_n" content="Nature Methods" />
					<meta name="WT.cg_s" content="News and Views" />
			</head><body marginheight="0" marginwidth="0" topmargin="0" leftmargin="0" text="#000000" bgcolor="#FFFFFF">
<!-- super body top --><a name="top"/>


																		

<!-- header -->
<div id="head-er">

<div class="header-nonad-wrapper" id="top">
				<div class="accessibility-login-wrap">
	<div class="accessibility-login">
				<!--<a href="/" class="rollover"><img src="/common/includes/header/images/nature.com.gif" alt="Nature.com homepage" class="nature-logo" /></a>-->
		<a href="/" class="nature-link">nature.com<span class="hidden"> homepage</span></a>
									

			<div class="logon">
		<p><a href="/foxtrot/svc/login" class="login" title="login to Nature.com">Login<!-- following space necessary for Mac IE --> </a><span class="onlyformacie">&nbsp;</span></p>
	</div>
						<div class="cleardiv"><!--  --></div>
	</div>
</div>

<div class="cleardiv"><!--  --></div>
<hr />
		
			<div class="image-user-services-wrap">
	<div class="image-user-services">
					<a href="/nmeth"><img src="/includes/rj_globnavimages/nmeth_logo.gif" class="journal-header" alt="Nature Methods homepage" /></a>		
								<div class="user-services div1">
								<!-- whitespace removed to deal with IE 5.0 bug --><ul class="list1"><li class="li1"><a href="/myaccount/">My account</a></li><li class="li2"><a href="http://mts-nmeth.nature.com.ezproxy.lib.utexas.edu/" title="Submit  manuscript">Submit</a></li></ul>
							</div>
						<div class="user-services div2">
								<!-- whitespace removed to deal with IE 5.0 bug --><ul class="list2"><li class="li1"><a href="/register/" title="Register with Nature.com">Register</a></li><li class="li2"><a href="https://secure-nature-com.ezproxy.lib.utexas.edu/subscribe/nmeth" title="Subscribe to Nature Methods">Subscribe</a></li></ul>
							</div>
						<div class="cleardiv"><!--  --></div>
			</div>
	<div class="cleardiv"><!--  --></div>
</div>

<div class="cleardiv"><!--  --></div>
<hr />		
			<div class="publications-search-wrap clearfix">
	<div class="publications-search">
				<ul class="publications">
			<li class="first"><a href="/siteindex/">Publications&nbsp;A-Z&nbsp;index</a></li><li><a href="/browse/">Browse&nbsp;by&nbsp;subject</a></li>		</ul>

		<hr />
		
				<div class="search">
			<form class="search" action="/search/executeSearch?" method="get">
				<div>
					<label for="searchtext">Search</label>
																	<select name="sp-q-1">
														<option value="NMETH">This journal</option>
														<option value="">All of nature.com</option>
													</select>
																<input type="text" id="searchtext" name="sp-q" value="" />
															<input type="hidden" name="sp-c" value="25" />
															<input type="hidden" name="sp-m" value="0" />
															<input type="hidden" name="sp-s" value="date_descending" />
															<input type="hidden" name="include-collections" value="journals_nature,crawled_content" />
															<input type="hidden" name="exclude-collections" value="journals_palgrave,lab_animal" />
																				
																									<input type="hidden" name="sp-a" value="sp1001702d" />
																											<input type="hidden" name="sp-sfvl-field" value="subject|ujournal" />
																											<input type="hidden" name="sp-x-1" value="ujournal" />
																											<input type="hidden" name="sp-p-1" value="phrase" />
																											<input type="hidden" name="sp-p" value="all" />
																							<input type="submit" name="submit" class="button" value="go" title="search now" /> 						
									</div>
			</form>
		</div>
				<div class="cleardiv"><!--  --></div>
	</div>
</div>		
		</div>

	<!-- leaderboard ad -->
<div class="header-leaderboard-wrap">











		
<div class="header-leaderboard adunit-leaderboard">
<script type="text/javascript"><!--//--><![CDATA[//><!--
		document.write('<script type="text/javascript" src="http://ad.doubleclick.net/adj/nmeth.nature.com/article;abr=!webtv;type=nv;artid=nmeth0408-293;date=200804;issue=4;pos=top;dcopt=ist;sz=728x90;ptile=1;ord=' + ord + '?" ><\/script>');

	if ((!document.images && navigator.userAgent.indexOf('Mozilla/2.') >= 0) || (navigator.userAgent.indexOf("WebTV") >= 0)) {
		document.write('<a href="http://ad.doubleclick.net/jump/nmeth.nature.com/article;sz=728x90;ord=' + ord + '?">');
		document.write('<img src="http://ad.doubleclick.net/ad/nmeth.nature.com/article;sz=728x90;ord=' + ord + '?" width="728" height="90" border="0"></a>');
	}
//--><!]]></script>
<noscript>
	<div><a href="http://ad.doubleclick.net/jump/nmeth.nature.com/article;abr=!NN2;tile=1;type=nv;artid=nmeth0408-293;date=200804;issue=4;pos=top;dcopt=ist;sz=728x90;ptile=1;ord=123456789?"><img src="http://ad.doubleclick.net/ad/nmeth.nature.com/article;abr=!NN2;tile=1;type=nv;artid=nmeth0408-293;date=200804;issue=4;pos=top;dcopt=ist;sz=728x90;ptile=1;ord=123456789?" alt="Advertisement" style="border:0" /></a></div>
</noscript>

</div>


</div>
<!-- end leaderboard ad -->

</div>
<!-- end header -->

			<div id="constrain"><div class="constrain">
		<table cellpadding="0" cellspacing="0" border="0" width="100%"><tr xmlns=""><td valign="top" height="22" align="center"><table cellpadding="0" cellspacing="0" border="0" width="760"><tr><td height="22" bgcolor="#D1E1EA" width="145">&nbsp;</td><td align="left" width="630" height="22" bgcolor="#D1E1EA" class="breadcrumb"><a class="breadcrumblink" href="/nmeth/index.html">Journal home</a>&nbsp;&gt;
<a class="breadcrumblink" href="/nmeth/archive/index.html">Archive</a>&nbsp;&gt;
<a class="breadcrumblink" href="/nmeth/journal/v5/n4/index.html">
					
 Table of Contents</a>&nbsp;&gt;&nbsp;<a class="breadcrumblink" href="/nmeth/journal/v5/n4/index.html#nv">News and Views</a> &gt;Abstract</td></tr></table></td></tr><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" width="760"><tr><td valign="top" width="130"><input xmlns="" value="archive" id="leftnav_type" type="hidden"><input xmlns="" value="nv" id="categ" type="hidden"><input xmlns="" value="" id="subcateg" type="hidden"><input xmlns="" value="nv" id="arch_categ" type="hidden">
<script LANGUAGE="JavaScript">
var bgColorOn = "#6E83A0";
var bgColor2 = "#EAEAEA";
//var bgClassOn = "leftnavOn_bg";
var imageOn = "/includes/rj_globnavimages/nav_dots1.gif";
var imageOff = "/includes/rj_globnavimages/nav_dots2.gif";
var imageSpacer = "/includes/rj_globnavimages/spacer.gif";



var children = new Array();

function addSubLevel(parent, child){
	children[parent] = child;
}

function getObjectRef(name) {
  if(document.getElementById) return document.getElementById(name);
  else if(document.all) return document.all[name];
  else return null;
}

var thisPageType = '';

function setPageType(){
	var type = getObjectRef("leftnav_type").value;
	//alert(type);

	if (type == null){
		type = '';
	}


	thisPageType = type;
}

function getPageType(){
	return thisPageType;
}

setPageType();

function isCurrentType(thisType){
	if (thisType == getPageType()){
		return true;
	}else{
		var isChild = false;
		if (typeof children[thisType] != "undefined"){
			var child = children[thisType];
			for (var i=0; i<child.length; i++){
				if (getPageType() == child[i]){
					isChild = true;
				}
			}
		}
		return isChild;
	}
}

function getNewSubRow(name, linkhref, text){
	return '<tr><td width="5" style="background-color:'+bgColor2+'" id="'+name+'_1"><img src="'+imageSpacer+'" width="5" height="15" alt=""></td><td style="background-color:'+bgColor2+'" id="'+name+'_2" valign="top"><img src="'+imageOff+'" id="'+name+'_image" width="5" height="7" alt="" vspace="2"></td><td style="background-color:'+bgColor2+'" id="'+name+'_3"><img src="'+imageSpacer+'" width="5" height="15" alt=""></td><td style="background-color:'+bgColor2+'" id="'+name+'_4"><a href="'+linkhref+'" class="leftnav3" id="'+name+'_link">'+text+'</a></td><td width="5" style="background-color:'+bgColor2+'" id="'+name+'_5" valign="top"><img src="'+imageSpacer+'" width="5" height="15" alt=""></td></tr>';
}

function getSubRow(newRows){
	if (newRows != ''){
		return '<img src="'+imageSpacer+'" width="5" height="1" alt=""></td></tr><tr><td height="1" colspan="3"><table width="100%" cellpadding="0" cellspacing="0" border="0">'+newRows+'</table><tr><td colspan="3" height="1"><img src="'+imageSpacer+'" width="5" height="1" alt=""></td></tr>'
	} else {
		//return '<img src="'+imageSpacer+'" width="5" height="1" alt="">';
		return '';
	}
}

function hilite(text) {
// set colors

//alert(getObjectRef(text+"_1").style.backgroundColor);
	if (getObjectRef(text+"_link") != null){

		var num = 1;
		while (getObjectRef(text+"_"+num)){
			//getObjectRef(text+"_"+num).className  = bgClassOn;
			getObjectRef(text+"_"+num).style.backgroundColor = bgColorOn;
			num++;
		}

		getObjectRef(text+"_link").className = getObjectRef(text+"_link").className+"On";
	}

	if (getObjectRef(text+"_image") != null){
		//alert(getObjectRef(text+"_image").src);
		getObjectRef(text+"_image").src = imageOn;
	}

}

</script>
		<table cellpadding="0" cellspacing="0" border="0" width="130"><tr><td height="1" colspan="3"><img alt="" height="1" width="5" src="/images/spacer.gif"></td></tr><tr><td id="home_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="home_2" style="background-color:
#D1E1EA"><a class="leftnav" href="/nmeth/index.html" id="home_link">Journal home</a></td><td id="home_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"></td></tr><tr><td id="aop_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="aop_2" style="background-color:
#D1E1EA"><a class="leftnav" href="/nmeth/journal/vaop/ncurrent/index.html" id="aop_link">Advance online publication</a></td><td id="aop_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"><script LANGUAGE="JavaScript">

var thisType = 'aop';

addSubLevel(thisType, new Array("About_AOP"));

var newRows = '';
if (isCurrentType(thisType) || '' == 'true'){

	
	newRows += getNewSubRow('About_AOP', '/nmeth/aop/index.html', 'About AOP');
	

	if (isCurrentType(thisType) && thisType != getPageType()){
		hilite(thisType);
	}
	
	
	

}

document.write (getSubRow(newRows));
</script></td></tr><tr><td id="issue_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="issue_2" style="background-color:
#D1E1EA"><a class="leftnav" href="/nmeth/journal/v5/n11/index.html" id="issue_link">
Current issue
</a></td><td id="issue_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"></td></tr><tr><td id="archive_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="archive_2" style="background-color:
#D1E1EA"><a class="leftnav" href="/nmeth/archive/index.html" id="archive_link">Archive</a></td><td id="archive_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"></td></tr><tr><td id="Press_releases_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="Press_releases_2" style="background-color:
#D1E1EA"><a class="leftnav" href="/nmeth/press_release/index.html" id="Press_releases_link">Press releases</a></td><td id="Press_releases_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"></td></tr></table>
		<table cellpadding="0" cellspacing="0" border="0" width="130"><tr><td height="1" colspan="3"><img alt="" height="1" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="12" colspan="3"><img alt="" height="12" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td id="Supplements_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="Supplements_2" style="background-color:
#D1E1EA"><a class="leftnav2" href="http://blogs.nature.com.ezproxy.lib.utexas.edu/nmeth/methagora/" id="Supplements_link">Methagora</a></td><td id="Supplements_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"></td></tr><tr><td id="Web_Focuses_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="Web_Focuses_2" style="background-color:
#D1E1EA"><a class="leftnav2" href="/nmeth/focsup_index.html" id="Web_Focuses_link">Focuses</a></td><td id="Web_Focuses_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"></td></tr></table>
	
								
			
		<table cellpadding="0" cellspacing="0" border="0" width="130"><tr><td height="12" colspan="3"><img alt="" height="12" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td id="For_authors_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="For_authors_2" style="background-color:
#D1E1EA"><a class="leftnav2" href="/nmeth/authors/index.html" id="For_authors_link">Guide to authors</a></td><td id="For_authors_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"><script LANGUAGE="JavaScript">

var thisType = 'For_authors';

addSubLevel(thisType, new Array("Call_papers","How_to_submit","Content_types","Editorial_process"));

var newRows = '';
if (isCurrentType(thisType) || '' == 'true'){

	
	newRows += getNewSubRow('Call_papers', '/nmeth/authors/call/', 'Call for Papers');
	
	newRows += getNewSubRow('Editorial_policies', '/authors/editorial_policies/index.html', 'Editorial policies');
	
	newRows += getNewSubRow('How_to_submit', '/nmeth/authors/submit/index.html', 'How to submit');
	
	newRows += getNewSubRow('Content_types', '/nmeth/authors/article_types/index.html', 'Content types');
	
	newRows += getNewSubRow('Editorial_process', '/nmeth/authors/ed_process/index.html', 'Manuscript decisions');
	
	newRows += getNewSubRow('About_the_editors', '/nmeth/about/about_eds/index.html', 'About the editors');
			
	newRows += getNewSubRow('Masthead', '/nmeth/about/masthead/index.html', 'Masthead');
	

	if (isCurrentType(thisType) && thisType != getPageType()){
		hilite(thisType);
	}
	
	
	

}

document.write (getSubRow(newRows));
</script></td></tr><tr><td id="Online submission_1" style="background-color:#D1E1EA" colspan="3"><table cellpadding="0" cellspacing="0" border="0" width="130"><tr><td height="20"><img id="Online_submission_navimage" alt="Online submission" border="0" align="absmiddle" src="/includes/rj_globnavimages/nmeth_icon_onlinesub.gif"></td><td><a class="leftnav2" href="http://mts-nmeth.nature.com.ezproxy.lib.utexas.edu" target="_blank" id="Online_submission_link">Online submission</a></td></tr></table></td></tr><tr><td height="1" colspan="3"></td></tr><tr><td id="Permissions_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="Permissions_2" style="background-color:
#D1E1EA"><a class="leftnav2" href="http://npg.nature.com.ezproxy.lib.utexas.edu/npg/servlet/Content?data=xml/01_reprints.xml&amp;style=xml/01_reprints.xsl" target="_blank" id="Permissions_link">Permissions</a></td><td id="Permissions_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"></td></tr><tr><td height="12" colspan="3"><img alt="" height="12" width="5" src="/images/spacer.gif"></td></tr><tr><td id="For_referees_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="For_referees_2" style="background-color:
#D1E1EA"><a class="leftnav2" href="/authors/editorial_policies/peer_review.html" id="For_referees_link">For referees</a></td><td id="For_referees_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"></td></tr><tr><td height="12" colspan="3"><img alt="" height="12" width="5" src="/images/spacer.gif"></td></tr><tr><td id="sample_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="sample_2" style="background-color:
#D1E1EA"><a class="leftnav2" href="/nmeth/journal/v4/n1/index.html" id="sample_link">Free online issue</a></td><td id="sample_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"></td></tr><tr><td height="12" colspan="3"><img alt="" height="12" width="5" src="/images/spacer.gif"></td></tr>

<!--

<tr><td id="About_the_journal_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="About_the_journal_2" style="background-color:
#D1E1EA"><a class="leftnav2" href="/nmeth/about/index.html" id="About_the_journal_link">About the journal</a></td><td id="About_the_journal_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"><script LANGUAGE="JavaScript">

var thisType = 'About_the_journal';

addSubLevel(thisType, new Array("About_the_editors","Editorial_policies","Masthead"));

var newRows = '';
if (isCurrentType(thisType) || '' == 'true'){

	
	newRows += getNewSubRow('About_the_editors', '/nmeth/about/about_eds/index.html', 'About the editors');
	
	newRows += getNewSubRow('Editorial_policies', '/nmeth/about/ed_policies/index.html', 'Editorial policies');
	
	newRows += getNewSubRow('Masthead', '/nmeth/about/masthead/index.html', 'Masthead');
	

	if (isCurrentType(thisType) && thisType != getPageType()){
		hilite(thisType);
	}
	
	
	

}

document.write (getSubRow(newRows));
</script>-->


</td></tr><tr><td id="Contact_the_journal_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="Contact_the_journal_2" style="background-color:
#D1E1EA"><a class="leftnav2" href="/nmeth/contact/index.html" id="Contact_the_journal_link">Contact the journal</a></td><td id="Contact_the_journal_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"></td></tr><tr><td id="Subscribe_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="Subscribe_2" style="background-color:
#D1E1EA"><a class="leftnav2" href="https://www.sunbeltfs.com/forms/nh/subscribe.asp?eid=D50401" target="_blank" id="Subscribe_link">Subscribe</a></td><td id="Subscribe_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"><script LANGUAGE="JavaScript">

var thisType = 'Subscribe';

addSubLevel(thisType, new Array("new-sub","renew-sub","paid-sub","change-address"));

var newRows = '';
if (isCurrentType(thisType) || 'true' == 'true'){

	
	newRows += getNewSubRow('new-sub', 'http://www.sunbeltfs.com/forms/select.asp?pid=NH&arq=subscribe&addurl=eid=D50401', 'New Subscription');
	
	newRows += getNewSubRow('renew-sub', 'http://www.sunbeltfs.com/forms/select.asp?pid=NH&arq=renew&addurl=eid=D50402', 'Renew Subscription');
	
	newRows += getNewSubRow('paid-sub', 'https://secure-nature-com.ezproxy.lib.utexas.edu/subscribe/nmeth', 'Paid Subscriptions');
	
	newRows += getNewSubRow('change-address', 'http://www.sunbeltfs.com/forms/select.asp?pid=NH&arq=renew&addurl=eid=D50403', 'Change of Address');
	

	if (isCurrentType(thisType) && thisType != getPageType()){
		hilite(thisType);
	}
	
	
	

}

document.write (getSubRow(newRows));
</script></td></tr><tr><td id="jobs_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="jobs_2" style="background-color:
#D1E1EA"><a class="leftnav2" href="http://www.nature.com.ezproxy.lib.utexas.edu/naturejobs/science/jobs/" target="_blank" id="jobs_link">naturejobs</a></td><td id="jobs_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"></td></tr><tr><td id="Advertising_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="Advertising_2" style="background-color:
#D1E1EA"><a class="leftnav2" href="/advertising/index.html" target="_blank" id="Advertising_link">For Advertisers</a></td><td id="Advertising_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"></td></tr><tr><td id="Work_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="Work_2" style="background-color:
#D1E1EA"><a class="leftnav2" href="http://www.nature.com.ezproxy.lib.utexas.edu/npg_/work/index.html" id="Work_link">work@npg</a></td><td id="Work_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"></td></tr><tr><td id="Reprints_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="Reprints_2" style="background-color:
#D1E1EA"><a class="leftnav2" href="http://www.naturereprints.com" target="_blank" id="Reprints_link">naturereprints</a></td><td id="Reprints_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"></td></tr><tr><td id="About_this_site_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="About_this_site_2" style="background-color:
#D1E1EA"><a class="leftnav2" href="/nmeth/site/index.html" id="About_this_site_link">About this site</a></td><td id="About_this_site_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"></td></tr><tr><td height="12" colspan="3"><img alt="" height="12" width="5" src="/images/spacer.gif"></td></tr><tr><td id="For_librarians_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="For_librarians_2" style="background-color:
#D1E1EA"><a class="leftnav2" href="http://npg.nature.com.ezproxy.lib.utexas.edu/npg/servlet/Content?data=xml/07_home.xml&amp;style=xml/07_home.xsl" target="_blank" id="For_librarians_link">For librarians</a></td><td id="For_librarians_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"></td></tr><tr><td height="12" colspan="3"><img alt="" height="12" width="5" src="/images/spacer.gif"></td></tr><tr><td id="Application_notes_1" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td><td id="Application_notes_2" style="background-color:
#D1E1EA"><a class="leftnav2" href="/nmeth/appnotes/submit/index.html" target="_blank" id="Application_notes_link">Application notes</a></td><td id="Application_notes_3" width="5" style="background-color:
#D1E1EA"><img alt="" height="20" width="5" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td height="1" colspan="3"></td></tr></table>	<script LANGUAGE="JavaScript">
	hilite(getPageType());
</script>
		
<table cellpadding="0" cellspacing="0" border="0" width="130"><tr><td height="20" colspan="3">&nbsp;</td></tr><tr><td bgcolor="#cc0033" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td><td class="leftnavOn" bgcolor="#cc0033">NPG Resources</td><td bgcolor="#cc0033" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td></tr><tr><td height="1" colspan="3"><img alt="" height="1" width="5" src="/images/spacer.gif"></td></tr><tr><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td><td bgcolor="#EAEAEA"><a target="_blank" class="leftnav3" href="http://www.nature.com.ezproxy.lib.utexas.edu/nature/">Nature</a></td><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td></tr><tr><td height="1" colspan="3"><img alt="" height="1" width="5" src="/images/spacer.gif"></td></tr><tr><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td><td bgcolor="#EAEAEA"><a target="_blank" class="leftnav3" href="http://www.nature.com.ezproxy.lib.utexas.edu/nbt/">Nature Biotechnology</a></td><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td></tr><tr><td height="1" colspan="3"><img alt="" height="1" width="5" src="/images/spacer.gif"></td></tr><tr><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td><td bgcolor="#EAEAEA"><a target="_blank" class="leftnav3" href="http://www.nature.com.ezproxy.lib.utexas.edu/nprot/">Nature Protocols</a></td><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td></tr><tr><td height="1" colspan="3"><img alt="" height="1" width="5" src="/images/spacer.gif"></td></tr><tr><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td><td bgcolor="#EAEAEA"><a target="_blank" class="leftnav3" href="http://www.nature.com.ezproxy.lib.utexas.edu/ng/">Nature Genetics</a></td><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td></tr><tr><td height="1" colspan="3"><img alt="" height="1" width="5" src="/images/spacer.gif"></td></tr><tr><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td><td bgcolor="#EAEAEA"><a target="_blank" class="leftnav3" href="http://www.nature.com.ezproxy.lib.utexas.edu/nchembio/">Nature Chemical Biology</a></td><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td></tr><tr><td height="1" colspan="3"><img alt="" height="1" width="5" src="/images/spacer.gif"></td></tr><tr><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td><td bgcolor="#EAEAEA"><a target="_blank" class="leftnav3" href="http://www.nature.com.ezproxy.lib.utexas.edu/ncb/">Nature Cell Biology</a></td><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td></tr><tr><td height="1" colspan="3"><img alt="" height="1" width="5" src="/images/spacer.gif"></td></tr><tr><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td><td bgcolor="#EAEAEA"><a target="_blank" class="leftnav3" href="http://www.nature.com.ezproxy.lib.utexas.edu/neuro/">Nature Neuroscience</a></td><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td></tr><tr><td height="1" colspan="3"><img alt="" height="1" width="5" src="/images/spacer.gif"></td></tr><tr><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td><td bgcolor="#EAEAEA"><a target="_blank" class="leftnav3" href="http://www.nature.com.ezproxy.lib.utexas.edu/nrg/">Nature Reviews Genetics</a></td><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td></tr><tr><td height="1" colspan="3"><img alt="" height="1" width="5" src="/images/spacer.gif"></td></tr><tr><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td><td bgcolor="#EAEAEA"><a target="_blank" class="leftnav3" href="http://www.nature.com.ezproxy.lib.utexas.edu/nrm/">Nature Reviews Molecular Cell Biology</a></td><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td></tr><tr><td height="1" colspan="3"><img alt="" height="1" width="5" src="/images/spacer.gif"></td></tr><tr><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td><td bgcolor="#EAEAEA"><a target="_blank" class="leftnav3" href="http://www.nature.com.ezproxy.lib.utexas.edu/nrd/">Nature Reviews Drug Discovery</a></td><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td></tr><tr><td height="1" colspan="3"><img alt="" height="1" width="5" src="/images/spacer.gif"></td></tr><tr><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td><td bgcolor="#EAEAEA"><a target="_blank" class="leftnav3" href="http://www.nature.com.ezproxy.lib.utexas.edu/natureconferences/">Nature Conferences</a></td><td bgcolor="#EAEAEA" width="5"><img alt="" height="20" width="5" src="/images/spacer.gif"></td></tr><tr><td height="1" colspan="3"><img alt="" height="1" width="5" src="/images/spacer.gif"></td></tr></table>
		
		
<table width="130" border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="2" height="20"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="20" alt="" /></td>
</tr>
<tr>
<td colspan="2" height="20">
<table width="130" border="0" cellspacing="0" cellpadding="0" bgcolor="#cc0033">
<tr>
<td width="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="20" alt="" /></td>
<td><a href="//" class="leftnavOn">NPG Subject areas</a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" height="8"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="8" alt="" /></td>
</tr>
<tr>
<td><img src="/includes/rj_globnavimages/areas_bio.gif"  width="8" height="8" alt="" /></td>
<td><a href="http://www.nature.com.ezproxy.lib.utexas.edu/biotech/" class="subject">Biotechnology</a></td>
</tr>
<tr>
<td colspan="2" height="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="5" alt="" /></td>
</tr>
<tr>
<td><img src="/includes/rj_globnavimages/areas_can.gif"  width="8" height="8" alt="" /></td>
<td><a href="http://www.nature.com.ezproxy.lib.utexas.edu/cancer/" class="subject">Cancer</a></td>
</tr>
<tr>
<td colspan="2" height="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="5" alt="" /></td>
</tr>
<tr>
<td><img src="/includes/rj_globnavimages/areas_chem.gif"  width="8" height="8" alt="" /></td>
<td><a href="http://www.nature.com.ezproxy.lib.utexas.edu/chemistry/" class="subject">Chemistry</a></td>
</tr>
<tr>
<td colspan="2" height="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="5" alt="" /></td>
</tr>
<tr>
<td><img src="/includes/rj_globnavimages/areas_cli.gif"  width="8" height="8" alt="" /></td>
<td><a href="http://www.nature.com.ezproxy.lib.utexas.edu/clinicalmedicine/" class="subject">Clinical
Medicine</a></td>
</tr>
<tr>
<td colspan="2" height="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="5" alt="" /></td>
</tr>
<tr>
<td><img src="/includes/rj_globnavimages/areas_den.gif"  width="8" height="8" alt="" /></td>
<td><a href="http://www.nature.com.ezproxy.lib.utexas.edu/dentistry/" class="subject">Dentistry</a></td>
</tr>
<tr>
<td colspan="2" height="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="5" alt="" /></td>
</tr>
<tr>
<td><img src="/includes/rj_globnavimages/areas_dev.gif"  width="8" height="8" alt="" /></td>
<td><a href="http://www.nature.com.ezproxy.lib.utexas.edu/development/" class="subject">Development</a></td>
</tr>
<tr>
<td colspan="2" height="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="5" alt="" /></td>
</tr>
<tr>
<td><img src="/includes/rj_globnavimages/areas_dru.gif"  width="8" height="8" alt="" /></td>
<td><a href="http://www.nature.com.ezproxy.lib.utexas.edu/drugdisc/" class="subject">Drug Discovery</a></td>
</tr>
<tr>
<td colspan="2" height="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="5" alt="" /></td>
</tr>
<tr>
<td><img src="/includes/rj_globnavimages/areas_ear.gif"  width="8" height="8" alt="" /></td>
<td><a href="http://www.nature.com.ezproxy.lib.utexas.edu/earthsciences/" class="subject">Earth Sciences</a></td>
</tr>
<tr>
<td colspan="2" height="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="5" alt="" /></td>
</tr>
<tr>
<td><img src="/includes/rj_globnavimages/areas_evo.gif"  width="8" height="8" alt="" /></td>
<td><a href="http://www.nature.com.ezproxy.lib.utexas.edu/evoeco/" class="subject">Evolution &amp; Ecology</a></td>
</tr>
<tr>
<td colspan="2" height="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="5" alt="" /></td>
</tr>
<tr>
<td><img src="/includes/rj_globnavimages/areas_gen.gif"  width="8" height="8" alt="" /></td>
<td><a href="http://www.nature.com.ezproxy.lib.utexas.edu/genetics/" class="subject">Genetics</a></td>
</tr>
<tr>
<td colspan="2" height="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="5" alt="" /></td>
</tr>
<tr>
<td><img src="/includes/rj_globnavimages/areas_imm.gif"  width="8" height="8" alt="" /></td>
<td><a href="http://www.nature.com.ezproxy.lib.utexas.edu/immuno/" class="subject">Immunology</a></td>
</tr>
<tr>
<td colspan="2" height="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="5" alt="" /></td>
</tr>
<tr>
<td><img src="/includes/rj_globnavimages/areas_mat.gif"  width="8" height="8" alt="" /></td>
<td><a href="http://www.nature.com.ezproxy.lib.utexas.edu/materials/" class="subject">Materials Science</a></td>
</tr>
<tr>
<td colspan="2" height="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="5" alt="" /></td>
</tr>
<tr>
<td><img src="/includes/rj_globnavimages/areas_med.gif"  width="8" height="8" alt="" /></td>
<td><a href="http://www.nature.com.ezproxy.lib.utexas.edu/medicalresearch/" class="subject">Medical Research</a></td>
</tr>
<tr>
<td colspan="2" height="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="5" alt="" /></td>
</tr>
<tr>
<td><img src="/includes/rj_globnavimages/areas_mic.gif"  width="8" height="8" alt="" /></td>
<td><a href="http://www.nature.com.ezproxy.lib.utexas.edu/micro/" class="subject">Microbiology</a></td>
</tr>
<tr>
<td colspan="2" height="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="5" alt="" /></td>
</tr>
<tr>
<td><img src="/includes/rj_globnavimages/areas_mol.gif"  width="8" height="8" alt="" /></td>
<td><a href="http://www.nature.com.ezproxy.lib.utexas.edu/molcellbio/" class="subject">Molecular Cell
Biology</a></td>
</tr>
<tr>
<td colspan="2" height="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="5" alt="" /></td>
</tr>
<tr>
<td><img src="/includes/rj_globnavimages/areas_neu.gif"  width="8" height="8" alt="" /></td>
<td><a href="http://www.nature.com.ezproxy.lib.utexas.edu/neurosci/" class="subject">Neuroscience</a></td>
</tr>
<tr>
<td colspan="2" height="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="5" alt="" /></td>
</tr>
<tr>
<td><img src="/includes/rj_globnavimages/areas_pha.gif"  width="8" height="8" alt="" /></td>
<td><a href="http://www.nature.com.ezproxy.lib.utexas.edu/pharma/" class="subject">Pharmacology</a></td>
</tr>
<tr>
<td colspan="2" height="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="5" alt="" /></td>
</tr>
<tr>
<td><img src="/includes/rj_globnavimages/areas_phy.gif"  width="8" height="8" alt="" /></td>
<td><a href="http://www.nature.com.ezproxy.lib.utexas.edu/physics/" class="subject">Physics</a></td>
</tr>
<tr>
<td colspan="2" height="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="5" alt="" /></td>
</tr>
<tr>
<td colspan="2" height="6">
<table width="130" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="5"><img src="/includes/rj_globnavimages/arrow_red.gif" width="3" height="5" alt="" /></td>
<td><a href="http://npg.nature.com.ezproxy.lib.utexas.edu/npg/forms/04_cat.jsp" class="subjectred">Browse
all publications</a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" height="5"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="5" alt="" /></td>
</tr>
<tr>
<td colspan="2" height="1"><img src="/includes/rj_globnavimages/spacer.gif" width="5" height="1" alt="" /></td>
</tr>
</table>
		
	</td><td width="15"><img alt="" height="1" width="15" src="/images/spacer.gif"/></td><td width="470" valign="top"><table cellpadding="0" cellspacing="0" border="0" width="470"><tr xmlns=""><td valign="top" height="21"><img alt="" height="21" width="1" src="/images/spacer.gif"></td></tr><tr xmlns=""><td valign="top" height="22"><span class="categ_large">News and Views</span></td></tr><tr xmlns=""><td><img alt="" height="1" width="470" src="/nmeth/images/spacer_dotted.gif"></td></tr><tr xmlns=""><td height="14"><img alt="" height="14" width="1" src="/images/spacer.gif"></td></tr><tr><td><span xmlns="" class="blacksml"><i>Nature Methods</i> 
		- <b>5</b>, 293 - 295 (2008)
 <br>doi:10.1038/nmeth0408-293
				
			</span>
<h2 xmlns="">Expanding the toolbox for remote control of neuronal circuits</h2><p xmlns=""><span class="author">Thomas Kn&ouml;pfel<p class="blacksml">
Thomas Kn&ouml;pfel is at the Laboratory for Neuronal Circuit Dynamics, RIKEN Brain Science Institute, 2-1 Hirosawa, Wako-shi, Saitama, 351-0198, Japan. <a href="mailto:tknopfel@brain.riken.jp">tknopfel@brain.riken.jp</a>
</p></span></p><table xmlns="" cellpadding="0" cellspacing="0" border="0" width="450"><tr><td height="20"><img alt="" height="20" width="1" src="/images/spacer.gif"></td></tr><tr><td height="1"><img alt="" height="1" width="450" src="/nmeth/images/spacer_dotted.gif"></td></tr><tr><td height="20"><img alt="" height="20" width="1" src="/images/spacer.gif"></td></tr></table><a xmlns="" name="abstract"></a><span xmlns="" class="articletext"><b>Advances in methods that allow targeted remote control of neuronal activity open new possibilities for investigating and manipulating the function of neuronal circuits <i>in vivo</i>.</b></span><table xmlns="" cellpadding="0" cellspacing="0" border="0" width="450"><tr><td height="20"><img alt="" height="20" width="1" src="/images/spacer.gif"></td></tr><tr><td height="1"><img alt="" height="1" width="450" src="/nmeth/images/spacer_dotted.gif"></td></tr><tr><td height="20"><img alt="" height="20" width="1" src="/images/spacer.gif"></td></tr></table><br/>

	
	<!-- generated by Nature-branded standard table template --><div id="more-like-this"> <h3>MORE ARTICLES LIKE THIS</h3> <p class="explain">These links to content published by NPG are automatically generated.</p><div class="wrapper"><h4 class="area">NEWS AND VIEWS</h4><a href="http://www.nature.com.ezproxy.lib.utexas.edu/doifinder/10.1038/nmeth0408-293" class="article">Expanding the toolbox for remote control of neuronal circuits</a><p class="journal">Nature Methods <span>News and Views (01 Apr 2008)</span></p></div></div>
	
	<table xmlns="" cellpadding="0" cellspacing="0" border="0" width="470"><tr><td rowspan="2" height="20"><img alt="" height="20" width="1" src="/images/spacer.gif"></td><td align="right"><img alt="" height="3" width="5" src="/nmeth/images/arrow_black_up.gif">&nbsp;<a class="top" href="#top">Top</a></td></tr><tr><td height="7" align="right"><img alt="" height="7" width="1" src="/images/spacer.gif"></td></tr></table></td></tr></table></td><td width="25"><img alt="" height="1" width="25" src="/images/spacer.gif"/></td><td valign="top" width="140"><table xmlns="" cellpadding="0" cellspacing="0" border="0" width="140"><tr><td height="21"><img alt="" height="21" width="1" src="/images/spacer.gif"></td></tr></table><table xmlns="" cellpadding="0" cellspacing="0" border="0" width="130"><tr><td><img alt="" height="13" width="1" src="/images/spacer.gif"></td></tr><tr><td colspan="2" height="22"><img alt="" height="22" width="1" src="/images/spacer.gif"></td></tr></table>
<!-- Molecular cloning ad at top of right nav -->


<table border="0" width="130" cellspacing="0" cellpadding="0" border="0" style="margin-bottom:8px; margin-top:0px; margin-left:0px; margin-right:0px">
<tr>
<td class="sponsors-td" valign="top" align="left">
<a href="http://ad.doubleclick.net/clk;16138647;8858766;f?http://www.molecularcloning.com/members" target="_blank">
<img src="/nmeth/images/molecular_cloning.gif" width="130" height="54" alt="Molecularcloning.com" style="border:0px;"/>
</a>
</td>
</tr>
</table>

<!-- end Molecular cloning ad -->
<table xmlns="" cellpadding="0" cellspacing="0" border="0" width="130"><tr><td colspan="2" class="whitesml" height="20" bgcolor="#6E83A0" align="center"><b>Abstract</b></td></tr><tr><td valign="middle" colspan="2" bgcolor="#D1E1EA" height="17" align="center" class="blacksml2"><table cellpadding="1" cellspacing="0" border="0" width="106"><tr><td width="3"><img border="0" alt="" height="5" width="3" src="/nmeth/images/arrow_black_prev.gif"></td><td width="100" align="center"><a class="breadcrumblink" href="/nmeth/journal/v5/n4/abs/nmeth0408-291.html">
									Previous							
								</a><a class="breadcrumblink" href="/nmeth/journal/v5/n4/abs/nmeth0408-295.html">
										 | 
									
									Next							
								</a></td><td height="10" width="3"><img alt="" height="5" width="3" src="/nmeth/images/arrow_black.gif"></td></tr></table></td></tr><tr><td colspan="2"><img alt="" height="1" width="130" src="/ni/images/spacer.gif"></td></tr><tr><td width="15" bgcolor="#D1E1EA" height="15" align="center" class="blacksml2"><img alt="" border="0" height="5" width="3" src="/nmeth/images/arrow_black.gif"></td><td width="115" bgcolor="#D1E1EA" height="17" class="blacksml2"><a href="/nmeth/journal/v5/n4/index.html" class="breadcrumblink">Table of contents</a></td></tr><tr><td colspan="2" height="15" align="center" class="blacksml2"><table cellpadding="1" cellspacing="0" border="0" width="130"><tr><td bgcolor="#D1E1EA"><table cellpadding="0" cellspacing="0" border="0" width="128"><tr><td colspan="2" align="center" bgcolor="#FFFFFF"><img alt="" height="5" width="1" src="/images/spacer.gif"></td></tr><tr><td valign="middle" width="23" align="center" bgcolor="#FFFFFF"><img border="0" alt="Full text" height="13" width="11" src="/nmeth/images/fulltext_icon.gif"></td><td valign="middle" height="12" width="105" bgcolor="#FFFFFF"><a class="breadcrumblink" href="/nmeth/journal/v5/n4/full/nmeth0408-293.html">Full text</a></td></tr><tr><td colspan="2" align="center" bgcolor="#FFFFFF"><img alt="" height="5" width="1" src="/images/spacer.gif"></td></tr><tr><td width="23" align="center" bgcolor="#FFFFFF"><img alt="Download PDF" height="14" width="14" src="/nmeth/images/icon_pdf.gif"></td><td height="14" width="105" bgcolor="#FFFFFF"><a class="breadcrumblink" href="/nmeth/journal/v5/n4/pdf/nmeth0408-293.pdf">Download PDF</a></td></tr><tr><td valign="middle" colspan="2" align="center" bgcolor="#FFFFFF"><img alt="" height="6" width="1" src="/images/spacer.gif"></td></tr><tr><td valign="middle" width="23" align="center" bgcolor="#FFFFFF"><img alt="Send to a friend" height="10" width="13" src="/nmeth/images/icon_email.gif"></td><td valign="middle" height="12" width="105" bgcolor="#FFFFFF"><a class="breadcrumblink" onclick="window.open('/foxtrot/svc/mailform?file=/nmeth/journal/v5/n4/full/nmeth0408-293.html','mailafriend','width=600,height=600,resizable=yes,location=no,menubar=no,scrollbars=yes,personalbar=no,status=yes,top=10,left=10');" href="javascript:void(0)">Send to a friend</a></td></tr>
		
		




<tr><td valign="middle" colspan="2" align="center" bgcolor="#FFFFFF"><img alt="" height="5" width="1" src="/ni/images/spacer.gif"></td></tr>
<tr><td valign="middle" width="23" align="center" bgcolor="#FFFFFF"><img alt="rights and permissions" height="10" width="13" src="/common/images/icons/fff/permissions.gif"></td><td valign="middle" height="12" width="105" bgcolor="#FFFFFF"><a class="breadcrumblink" href="http://s100.copyright.com/AppDispatchServlet?publisherName=NPG&publication=Nature+Methods&title=Expanding the toolbox for remote control of neuronal circuits&author=					Thomas Kn&ouml;pfel 
	&contentID=10.1038/nmeth0408-293&publicationDate=04/01/2008&Vol=5&Issue=4">Rights and permissions</a></td></tr>
<tr id="ocr"><td valign="middle" width="23" align="center" bgcolor="#FFFFFF"><img alt="Order commercial reprints" height="10" width="13" src="/common/images/icons/fff/ocr.gif"></td><td valign="middle" height="12" width="105" bgcolor="#FFFFFF"><a class="breadcrumblink" href="https://s100.copyright.com/AppDispatchServlet?publisherName=NPGR&publication=Nature+Methods&title=Expanding the toolbox for remote control of neuronal circuits&author=					Thomas Kn&ouml;pfel 
	&contentID=10.1038/nmeth0408-293&publicationDate=04/01/2008&volumeNum=5&issueNum=4&numPages=3&pageNumbers=pp293-295&orderBeanReset=true">Order commercial reprints</a></td></tr>
<tr id="crossref"><td valign="middle" width="23" align="center" bgcolor="#FFFFFF"><img alt="CrossRef lists 1 article citing this article" src="/common/images/icons/cited.gif"></td><td valign="middle" height="12" width="105" bgcolor="#FFFFFF"><a class="breadcrumblink" href="/cited/cited.html?doi=10.1038/nmeth0408-293">CrossRef lists 1 article citing this article</a></td></tr>	<tr><td valign="middle" colspan="2" align="center" bgcolor="#FFFFFF"><img alt="" height="5" width="1" src="/ni/images/spacer.gif"></td></tr><tr><td valign="middle" width="23" align="center" bgcolor="#FFFFFF"><img alt="Save this link" height="10" width="13" src="/common/images/icons/fff/connotea.gif"></td><td valign="middle" height="12" width="105" bgcolor="#FFFFFF"><a class="breadcrumblink" href="http://www.connotea.org/add?uri=http://www.nature.com.ezproxy.lib.utexas.edu/nmeth/journal/v5/n4/abs/nmeth0408-293.html">Save this link</a></td></tr><tr><td valign="middle" colspan="2" align="center" bgcolor="#FFFFFF"><img alt="" height="5" width="1" src="/ni/images/spacer.gif"></td></tr></table></td></tr></table></td></tr><tr><td colspan="2"><table cellpadding="0" cellspacing="0" border="0" width="130"><tr><td height="10"><img alt="" height="1" width="15" src="/ni/images/spacer.gif"></td><td height="10"><img alt="" height="1" width="115" src="/ni/images/spacer.gif"></td></tr><tr><td align="center" width="15" class="blacksml2" valign="top"><img alt="" vspace="4" border="0" height="5" width="3" src="/nmeth/images/arrow_black.gif"></td><td height="15" width="115" class="blacksml2"><a class="breadcrumblink" href="javascript:void(0)" onClick="window.open('/nmeth/journal/v5/n4/fig_tab/nmeth0408-293_ft.html','fig_tab','width=600,height=400,scrollbars=yes')">Figures &amp; Tables</a></td></tr><tr><td height="10" align="center" colspan="2" class="blacksml2"><img alt="" height="10" width="1" src="/images/spacer.gif"></td></tr><tr><td height="10" align="center" colspan="2" class="blacksml2"><table cellpadding="1" cellspacing="0" border="0" width="130"><tr><td bgcolor="#D1E1EA"><table cellpadding="5" cellspacing="0" border="0" width="128"><tr><td bgcolor="#FFFFFF"><span class="redsml2"><b>See also:</b></span>&nbsp;<a class="linksml" href="/nmeth/journal/v5/n4/full/nmeth.1190.html">Brief Communication by Arenkiel et al. </a></td></tr><tr><td align="center" bgcolor="#FFFFFF"><img alt="" height="1" width="120" src="/nmeth/images/spacer_dotted.gif"></td></tr><tr><td bgcolor="#FFFFFF"><span class="redsml2"><b>See also:</b></span>&nbsp;<a class="linksml" href="/nmeth/journal/v5/n4/full/nmeth.1187.html">Article by Fortin et al. </a></td></tr><tr><td bgcolor="#FFFFFF" class="blacksml2" colspan="2" align="center"><img src="/images/spacer.gif" width="1" height="1" alt=""></td></tr></table></td></tr></table></td></tr><tr><td align="center" colspan="2" class="blacksml2"><img alt="" height="5" width="1" src="/images/spacer.gif"></td></tr><tr><td class="blacksml2" width="15" align="center"><img src="/images/arrow_black.gif" width="3" height="5" border="0" alt=""></td><td class="blacksml2" width="115" height="15"><a href="/nmeth/journal/v5/n4/ris/nmeth0408-293.ris" target="_blank" class="breadcrumblink">Export citation</a></td></tr></table></td></tr></table><table xmlns="" cellpadding="0" cellspacing="0" border="0" width="130"><tr><td>
<div id="natpav" class="box">
    <h2 class="natpav"><a href="/openinnovation" title="Visit the Nature.com Open Innovation Pavilion"><span class="first">Open Innovation Challenges</span></a></h2>
    
	<div class="box-item">
        <ul class="chal-list">
	
   			<li>
			                <h3><a href="/openinnovation" title="Corrosion Inhibitor">Corrosion Inhibitor</a></h3>
				<img src="/openinnovation/challenge/images/8466285.jpg" alt="" />
					<ul class="chal-meta">
						<li>Deadline: Aug 19 2009</li>
						<li>Reward: <span class="award">
                                                  						  $10,000 USD
						  </span></li>
					</ul>
				<p>
                              		                			           The Seeker is looking for inhibitors of corrosion.

This Challenge requires only a written descripti...
		                                           </p>
            </li>
   			<li>
			                <h3><a href="/openinnovation" title="Plant Mitotic Arrest Agent & Protocol">Plant Mitotic Arrest Agent &amp; Protocol</a></h3>
				<img src="/openinnovation/challenge/images/8166846.jpg" alt="" />
					<ul class="chal-meta">
						<li>Deadline: Jul 15 2009</li>
						<li>Reward: <span class="award">
                                                  						  $20,000 USD
						  </span></li>
					</ul>
				<p>
                              		                			           The Seeker is looking for an efficient chromosome doubling method in plants, particularly with respe...
		                                           </p>
            </li>
   
        </ul>
	    <ul class="more">
			<li><a href="/openinnovation" title="">More Challenges</a></li>
			<li class="powered"><div><span>Powered by:</span><a href="http://www.innocentive.com"><img src="/openinnovation/images/innocentive_logo_small.gif" alt="InnoCentive" /></a></div></li>
	   </ul>
		
    </div>
    

</div>
				
<div class="box" id="natjob">
<h2 class="natjob"><a href="/naturejobs/"><span class="first">nature</span><span class="hidden"> </span><span class="second">jobs</span></a></h2>

	<ul class="natjob">

	<li><h3 class="first"><a href="http://www.nature.com.ezproxy.lib.utexas.edu/naturejobs/science/jobs/99232-Senior-Scientist-Protein-Engineering">Senior Scientist - Protein Engineering</a></h3>
	<ul>
	<li>Genentech</li>
	<li>South San Francisco, California</li>
	</ul>
	</li>

			<li><h3><a href="http://www.nature.com.ezproxy.lib.utexas.edu/naturejobs/science/jobs/98493-Project-Leader-Natural-Food-Preservation">Project Leader - Natural Food Preservation</a></h3>
		<ul>
		<li>Nestle Research Center</li>
		<li>Lausanne 1026 Switzerland</li>
		</ul>
		</li>
	</ul>


<div class="natjobmore"><a href="/naturejobs/science/jobs">More science jobs</a></div>
<div class="natjobmore"><a href="/naturejobs/science/jobs/new">Post a job for free</a></div>
</div>

<form method="post" action="http://www.biocompare.com/nature/search.asp" name="search">
<table width="100%" cellpadding="1" cellspacing="0" border="0" bgcolor="#000000">
<tr><td valign="top">
<table width="100%" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
<tr><td colspan="3"><img src="/includes/prdct_img/spacer.gif" height="3" width="5" alt=""></td></tr>
<tr><td><img src="/includes/prdct_img/spacer.gif" height="1" width="5" alt=""></td>
<td valign="top"><img src="/includes/prdct_img/logo.gif" width="88" height="16" alt="natureproducts" border="0" /></td>
<td bgcolor="ffffff"><img src="/includes/prdct_img/spacer.gif" height="1" width="5" alt="" /></td></tr>
<tr><td colspan="3"><img src="/includes/prdct_img/spacer.gif" height="2" width="1" alt=""/></td></tr>
<tr><td colspan="3" bgcolor="#000000" valign="top"><img src="/includes/prdct_img/spacer.gif" height="1" width="1" alt="" border="0"></td></tr>
<tr><td colspan="3" bgcolor="#f3f2f2"><img src="/includes/prdct_img/spacer.gif" height="9" width="5" alt=""></td></tr>
<tr><td bgcolor="#f3f2f2"><img src="/includes/prdct_img/spacer.gif" height="1" width="5" alt=""></td>
<td valign="top" bgcolor="#f3f2f2">
<p class="prdnorm">Search buyers guide:<br /><br />
<input type="text" name="search" size="10">
<input type="image" src="/includes/prdct_img/go.gif"></td><td bgcolor="#f3f2f2"><img src="/includes/prdct_img/spacer.gif" height="1" width="5" alt=""></td></tr>
<tr><td colspan="3" bgcolor="#f3f2f2"><img src="/includes/prdct_img/spacer.gif" height="9" width="5" alt=""></td></tr>

</table>
</td></tr></table></form>


<style type="text/css">
</style>
<!-- skyscraper ad -->
<div class="ad-rh skyscraper narrow">
<p>ADVERTISEMENT</p>











		
<div class="adunit-skyscraper">
<script type="text/javascript"><!--//--><![CDATA[//><!--
	document.write ('<ilayer id="layer1" style="visibility:hidden;"></ilayer>');
	document.write ('<nolayer>');
	document.write ('<iframe src="http://ad.doubleclick.net/adi/nmeth.nature.com/article;type=nv;artid=nmeth0408-293;date=200804;issue=4;pos=right;sz=120x600;ptile=2;ord=' + ordval + '?" width="120" height="600" marginwidth="0" marginheight="0" frameborder="0" scrolling="no">');
	document.write ('<a href="http://ad.doubleclick.net/jump/nmeth.nature.com/article;abr=!ie4;abr=!ie5;type=nv;artid=nmeth0408-293;date=200804;issue=4;pos=right;sz=120x600;ptile=2;ord=' + ordval + '?">');
	document.write ('<img src="http://ad.doubleclick.net/ad/nmeth.nature.com/article;abr=!ie4;abr=!ie5;type=nv;artid=nmeth0408-293;date=200804;issue=4;pos=right;sz=120x600;ptile=2;ord=' + ordval + '?" alt="Advertisement" /></a></iframe>');
	document.write ('</nolayer>');
//--><!]]></script>

<noscript>
	<div><a href="http://ad.doubleclick.net/jump/nmeth.nature.com/article;abr=!NN2;tile=1;type=nv;artid=nmeth0408-293;date=200804;issue=4;pos=right;sz=120x600;ptile=2;ord=07893195?"><img src="http://ad.doubleclick.net/ad/nmeth.nature.com/article;abr=!NN2;tile=1;type=nv;artid=nmeth0408-293;date=200804;issue=4;pos=right;sz=120x600;ptile=2;ord=07893195?" alt="Advertisement" style="border:0" /></a></div>
</noscript>

<script type="text/javascript"><!--//--><![CDATA[//><!--
	document.writeln ('<layer src="http://ad.doubleclick.net/adl/nmeth.nature.com/article;abr=!NN2;type=nv;artid=nmeth0408-293;date=200804;issue=4;pos=right;sz=120x600;ptile=2;ord=' + ordval + '?" visibility="hidden" style="max-width:120px; height:600px;" onload="moveToAbsolute(layer1.pageX,layer1.pageY);clip.height=600;clip.width=120;visibility=\'show\';"></layer>');
//--><!]]></script>

</div>


</div>
<!-- end skyscraper ad -->
</td></tr></table></td></tr></table></td></tr></table><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="center">&nbsp;</td></tr>
<tr><td height="4" align="center" class="footerline"><img alt="" height="4" width="1" src="/images/spacer.gif"></td></tr><tr><td align="center"><table cellpadding="0" cellspacing="0" border="0" width="760"><tr><td valign="top"><img alt="" height="10" width="1" src="/nmeth/images/spacer.gif"></td></tr><tr><td class="norm" valign="top"><em><b>Nature Methods</b></em><br><span class="blacksmltext">
ISSN:&nbsp;1548-7091<br>
EISSN:&nbsp;1548-7105</span></td></tr><tr><td class="blacknorm" width="615" valign="top" align="left">
<a class="footer" href="/nmeth/index.html">Journal home</a> | <a class="footer" href="/nmeth/current_issue/index.html">
Current issue
</a> | <a class="footer" href="/nmeth/archive/index.html">Archive</a> | <a class="footer" href="/nmeth/press_release/index.html">Press releases</a> | </td></tr><tr><td valign="top"><img alt="" height="10" width="1" src="/nmeth/images/spacer.gif"></td></tr></table></td></tr><tr><td height="2" align="center" class="footerline"><img alt="" height="2" width="1" src="/images/spacer.gif"></td></tr><tr><td align="center"><table xmlns="" cellpadding="0" cellspacing="0" border="0" width=""><tr><td colspan="3" valign="top"><img alt="" height="10" width="1" src="/includes/rj_globnavimages/spacer.gif"></td></tr><tr><td align="right" width="130" valign="top"><a href="http://npg.nature.com.ezproxy.lib.utexas.edu/npg/servlet/Content?data=xml/02_welcome.xml&style=xml/02_welcome.xsl"><img border="0" alt="Nature Publishing Group, publisher of Nature, and other science journals and reference works" height="26" width="26" src="/includes/rj_globnavimages/npg_footer_logo.gif"></a></td><td align="right" width="15" valign="top"><img alt="" height="1" width="15" src="/includes/rj_globnavimages/spacer.gif"></td><td class="blacksmltext" width="615" valign="middle"><a href="/common/copyright_statement.html" onClick="window.open('/common/copyright_statement.html','copyright_window','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=450,height=280,top=380,left=20');return false;" class="copyright">&copy;2008&nbsp;Nature Publishing Group</a> | <a target="_blank" class="privacy" href="http://npg.nature.com.ezproxy.lib.utexas.edu/npg/servlet/Content?data=xml/08_privacy.xml&style=xml/08_privacy.xsl">Privacy policy</a></td></tr><tr><td colspan="3" valign="top"><img alt="" height="10" width="1" src="/includes/rj_globnavimages/spacer.gif"></td></tr></table></td></tr></table>
<!--extra code for 468 x 60 ad-->
<script language="JavaScript">
<!--
document.writeln ('<layer SRC="http://ad.doubleclick.net/adl/nmeth.nature.com/article;type=;artid=nmeth0408-293;date=200804;pos=right;' + adinf + 'sz=468x60;ord=' + ordval + '?" visibility="hidden" width=468 height=60 onload="moveToAbsolute(layer1.pageX,layer2.pageY);clip.height=60;clip.width=468;visibility=\'show\';"></layer>');
// -->
</script>
<!--end of extra code--><!-- super body bottom -->
<!-- super javascript -->
																		
																								
						<script type="text/javascript" src="/super/scripts/jquery.js"></script>
								<script type="text/javascript" src="/common/scripts/runOnLoad.js"></script>
								<script type="text/javascript" src="/rj/scripts/group.js"></script>
								<script type="text/javascript" src="/super/scripts/tsedge/tsedge_instr-min.js"></script>
			

<script type="text/javascript"><!--//--><![CDATA[//><!--
(function($) {
	$('a.popup-this').bind('click', function() {
		window.open(this.href);
		return false;
	});
})(jQuery);
//--><!]]></script>



																																																																																																																																																																																																																																								
<!--[if IE 6]>
<![endif]-->
																																																																																																																																																																																																																																																																																																																																																																																																																																																																																



						<!-- webtrends Version: 8.6.0 -->
	<script src="/super/scripts/webtrends/webtrends.js" type="text/javascript"></script>
	<script type="text/javascript"><!--//--><![CDATA[//><!--
		var _tag=new WebTrends();
		_tag.dcsGetId();
	//--><!]]></script>
	<script type="text/javascript"><!--//--><![CDATA[//><!--
		// Add custom parameters here.
		// _tag.DCSext.param_name=param_value;
		_tag.dcsCollect();
	//--><!]]></script>
	<noscript>
		<div><img alt="" id="DCSIMG" width="1" height="1" src="http://statse.webtrendslive.com/dcs0zztfg00000s969s37qoal_2f6z/njs.gif?dcsuri=/nojavascript&amp;WT.js=No&amp;WT.tv=8.6.0" /></div>
	</noscript>
	<script type="text/javascript"><!--//--><![CDATA[//><!--
	(function($) {
		$(function() {
			var applyParams = function(wt) {
				var params = [];
				for (var prop in wt) {
					params.push(prop);
					params.push(wt[prop]);
				}
				_tag.dcsMultiTrack.apply(_tag, params);
			};
			
			$('a[href*="/rss"]').each(function() {
				if (this.href.match(/\/rss\/?(\?.*)?$/)) {
					$(this).bind('click', function() {
						var wt = {};
						wt['DCS.dcsuri'] = this.pathname ? this.pathname.indexOf('/') !== 0 ? '/' + this.pathname : this.pathname : '/';
						wt['DCS.dcsqry'] = this.search ? this.search.substring(1) : '';
						wt['WT.ti'] = 'Download:' + (this.hostname ? this.hostname.split(':')[0] : '') + wt['DCS.dcsuri'] + (wt['DCS.dcsqry'] ? '?' + wt['DCS.dcsqry'] : '');
						wt['WT.dl'] = '20';
						applyParams(wt);
					});
				}
			});

			$('div[class*="adunit-"] a').bind('click', function() {
				var classes = $(this).parents('div[class*="adunit-"]:first').attr('class');
				if (classes) {
					var match = /(^|\s)adunit-([^\s]+)/.exec(classes);
					_tag.dcsMultiTrack('WT.ac', (match) ? match[2] : '');
				}
			});
		});	
	})(jQuery);
	//--><!]]></script>
	<!-- end webtrends Version: 8.6.0 -->
</body></html>