This repository has been archived by the owner on Feb 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexamples.html
1374 lines (1268 loc) · 62 KB
/
examples.html
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
---
redirect_from: "/examples.shtml"
---
<!DOCTYPE html>
<html>
<head>
<title>
CellProfiler example pipelines and utlities
</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<link rel="stylesheet" href="stylesheets/application.css">
<style media="all" type="text/css">
.style1 {
font-size: small
}
</style>
<link href=
'https://fonts.googleapis.com/css?family=Source+Code+Pro:400|Roboto:400,300,500'
rel='stylesheet' type='text/css'>
<script type="text/javascript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-4307992-1', 'auto');
ga('send', 'pageview');
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-4307992-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body onload=
"clientSideInclude('header','header.txt'); clientSideInclude('footer','footer.txt'); MM_preloadImages('http://d1zymp9ayga15t.cloudfront.net/images/HumanColorNucleism.jpg','http://d1zymp9ayga15t.cloudfront.net/images/Fruitfly-coded.jpg','http://d1zymp9ayga15t.cloudfront.net/images/ExampleTumorID.png','http://d1zymp9ayga15t.cloudfront.net/images/ExampleCometID.png','http://d1zymp9ayga15t.cloudfront.net/images/ExampleYeastPatchID.jpg','http://d1zymp9ayga15t.cloudfront.net/images/YeastCropID.jpg','http://d1zymp9ayga15t.cloudfront.net/images/Clones1colorneighbors.jpg','http://d1zymp9ayga15t.cloudfront.net/images/WOUND-ANALYSIS.gif','http://d1zymp9ayga15t.cloudfront.net/images/ExampleVitraID.png','http://d1zymp9ayga15t.cloudfront.net/images/ExampleSBSID.png','http://d1zymp9ayga15t.cloudfront.net/images/SpecklesCD.gif','http://d1zymp9ayga15t.cloudfront.net/images/TrackingExampleID.gif','http://d1zymp9ayga15t.cloudfront.net/images/InvertedExamples.gif','http://d1zymp9ayga15t.cloudfront.net/images/ExampleRGBSplit.gif','http://d1zymp9ayga15t.cloudfront.net/images/','http://d1zymp9ayga15t.cloudfront.net/images/ExampleIlluminationCorrection_Orig.png', 'http://d1zymp9ayga15t.cloudfront.net/images/ExamplePercentPosImg.png', 'http://d1zymp9ayga15t.cloudfront.net/images/ExampleCreateModelInput.gif', 'http://d1zymp9ayga15t.cloudfront.net/images/ExampleOROinput.gif', 'http://d1zymp9ayga15t.cloudfront.net/images/ExampleStraightenInput.gif', 'http://d1zymp9ayga15t.cloudfront.net/images/ExampleUntangleInput.gif','http://d1zymp9ayga15t.cloudfront.net/images/ExampleInSituSeqInput.jpg', 'http://d1zymp9ayga15t.cloudfront.net/images/ExampleColocalization_Orig.png'); document.getElementById('header_getting_started').id='current';">
<div id="mainwrapper">
<div id="header">
<div>
<a href="/"><img border="0" class="header1" src=
"http://d1zymp9ayga15t.cloudfront.net/images/cp_logo_smaller.png" width="400"></a> <a href=
"http://www.broadinstitute.org/"><img alt="Broad Institute logo"
border="0" class="header2" height="68" src=
"http://d1zymp9ayga15t.cloudfront.net/images/BroadInstituteLogo_smaller.png" width="220"></a>
<div id="navigation">
<hr>
<ul>
<li>
<a href="/" id="header_main">home</a>
</li>
<li>
<a href="#" id="header_getting_started" onclick=
"return false;">getting started</a>
<ul>
<li>
<a href="/faq.html">What is CellProfiler? FAQ</a>
</li>
<li>
<a href="/examples.html">examples</a>
</li>
<li>
<a href="/tutorials.html">tutorials</a>
</li>
<li>
<a href=
"http://d1zymp9ayga15t.cloudfront.net/content/CellProfilerSoftwareBrochure.pdf">brochure</a>
</li>
</ul>
</li>
<li>
<a href="#" id="header_download" onclick=
"return false;">download</a>
<ul>
<li>
<a href="/download.html">CellProfiler</a>
</li>
<li>
<a href="http://cellprofiler.org/releases/">CellProfiler Analyst</a>
</li>
</ul>
</li>
<li style="width:109px;text-align:center;">
<a href="#" id="header_help" onclick="return false;">help</a>
<ul>
<li>
<a href="http://forum.cellprofiler.org/">forum</a>
</li>
<li>
<a href="/supportplan.html">support plan</a>
</li>
<li>
<a href="http://www.broadinstitute.org/bbbc/">BBBC</a>
</li>
<li>
<a href=
"https://github.com/CellProfiler/CellProfiler/wiki">for
developers</a>
</li>
<li>
<a href="/manuals.html">manuals</a>
</li>
<li>
<a href="/wormtoolbox">WormToolbox</a>
</li>
<li>
<a href="/imagingflowcytometry">Imaging Flow Cytometry</a>
</li>
</ul>
</li>
<li>
<a href="#" id="header_aboutus" onclick="return false;">about
us</a>
<ul>
<li>
<a href="/about.html">CellProfiler Team</a>
</li>
<li>
<a href="/impact.html">impact</a>
</li>
<li>
<a href="/press.html">press</a>
</li>
<li>
<a href="/citations.html">citations</a>
</li>
<li>
<a href="/outreach.html">outreach</a>
</li>
<li>
<a href="/interfaces.html">interfaces</a>
</li>
<li>
<a href="/#CurrentNews">news</a>
</li>
</ul>
</li>
<li class="navsearch">
<form action="http://google.com/search" method="get" onsubmit=
"location.href = this.action + '?&q=%2Bsite:cellprofiler.org+' + this.query.value; return false;">
<input maxlength="255" name="query" size="20" type="text"
value=""> <input type="submit" value="search">
</form>
</li>
</ul>
<br>
<hr style="clear:left">
</div>
</div>
</div>
<div id="content">
<h1>
Examples
</h1>
<p>
The best way to learn how to use CellProfiler and CellProfiler
Analyst is to download our examples and try it out!
</p>
<h2>
<a id="cp_examples" name="cp_examples">CellProfiler example images
and pipelines</a> <span style="font-size:75%">(jump to <a href=
"#cpa_examples">CellProfiler Analyst example</a>)</span>
</h2>
<div style="margin-left:3em">
<h3>
How do I get started?
</h3>
<p style="clear:both">
Download example images along with pipelines so you can get
immediate hands-on experience in using CellProfiler.
</p>
<ol>
<li>Select an example from the pipeline list below where the cell
type (or object type) resembles yours. You can move your mouse over
an image below to see an example of the CellProfiler analysis, or
click to see an expanded view.
</li>
<li>Download the example images and pipeline from the list below
and run it in CellProfiler to see how it works.
</li>
<li>Try the pipeline on your own images.
</li>
<li>Adjust the pipeline to identify objects properly in your
images. This most often includes changing the size range of the
objects. See the <a href="tutorials.html">Tutorials</a> page for
step by step instructions.
</li>
<li>Still stuck? See if your question has been answered on the
<a href="http://forum.cellprofiler.org">forum</a>.
</li>
</ol>
Please note that each example links to a compressed ZIP file
containing the following:
<ol>
<li>CellProfiler pipelines, in the 2.1.0 version (.cppipe) formats.
</li>
<li>Example images which are to be used as input for the pipeline.
</li>
</ol>
</div>
<div style="margin-left:3em">
<h2>
Table of contents
</h2>
<table align="center" border="1">
<tr>
<th rowspan="4">
Basic Pipelines
</th>
<td>
<a href="#HumanCells">Human cells</a>
</td>
</tr>
<tr>
<td>
<a href="#FruitFlyCells">Fruit fly cells</a>
</td>
</tr>
<tr>
<td>
<a href="#Tumors">Tumors</a>
</td>
</tr>
<tr>
<td>
<a href="#Comet">Comet assay</a>
</td>
</tr>
<tr>
<th rowspan="7">
Specialized Pipelines
</th>
<td>
<a href="#PercentPositive">Cell/particle counting, and scoring
the percentage of stained objects</a>
</td>
</tr>
<tr>
<td>
<a href="#YeastColonies">Yeast colony classification</a>
</td>
</tr>
<tr>
<td>
<a href="#YeastPatch">Yeast patch identification</a>
</td>
</tr>
<tr>
<td>
<a href="#TissueNeighbors">Tissue Neighbors</a>
</td>
</tr>
<tr>
<td>
<a href="#Wound">Wound Healing</a>
</td>
</tr>
<tr>
<td>
<a href="#IlluminationCorrection">Illumination Correction</a>
</td>
</tr>
<tr>
<td>
<a href="#Colocalization">Colocalization</a>
</td>
</tr>
<tr>
<th rowspan="3">
Pipelines using the WormToolbox
</th>
<td>
<a href="#UntangleWorms">Untangle worms</a>
</td>
</tr>
<tr>
<td>
<a href="#StraightenWorms">Straighten worms and extract
intensity measurements using a low-resolution atlas</a>
</td>
</tr>
<tr>
<td>
<a href="#UntangleWormsBright-field">Untangle worms and make
measurements bright-field staining pattern phenotype</a>
</td>
</tr>
<tr>
<th rowspan="5">
More Advanced Pipelines
</th>
<td>
<a href="#SBS_Vitra_CNT">Human cytoplasm-nucleus translocation
assay (SBS Vitra)</a>
</td>
</tr>
<tr>
<td>
<a href="#SBS_Bioimage_CNT">Human cytoplasm-nucleus
translocation assay (SBS Bioimage)</a>
</td>
</tr>
<tr>
<td>
<a href="#Speckles">Speckle Counting</a>
</td>
</tr>
<tr>
<td>
<a href="#Tracking">Object Tracking and Metadata Management</a>
</td>
</tr>
<tr>
<td>
<a href="#InSitu">Sequencing RNA molecules <i>in situ</i>
combining CellProfiler with ImageJ plugins</a>
</td>
</tr>
<tr>
<th rowspan="3">
File Utilities
</th>
<td>
<a href="#InvertForPrinting">Invert For Printing</a>
</td>
</tr>
<tr>
<td>
<a href="#ColorToGray">Color To Gray</a>
</td>
</tr>
<tr>
<td>
<a href="#FileConvert">Convert Image File Format</a>
</td>
</tr>
<tr>
<th>
Published Pipelines
</th>
<td>
<a href="#PublishedPipelines">Published Pipelines</a>
</td>
</tr>
</table>
</div>
<div style="margin-left:3em">
<table border="0">
<tr>
<td colspan="2">
<h3>
Basic Pipelines
</h3>
These pipelines are made for simple cellular and tissue image
assays, and include some basic measurements.
</td>
</tr>
<!-- Example Human cells-->
<tr>
<td valign="top">
<ul>
<li>
<a id="HumanCells" name="HumanCells"><span style=
"font-weight:bold">Human cells:</span></a> Human HT29 cells
are fairly smooth and elliptical. This pipeline
demonstrates how to accurately identify these cells and how
to measurements cellular parameters such as morphology,
count, intensity and texture.<br>
<a href="http://d1zymp9ayga15t.cloudfront.net/content/Examplezips/ExampleHumanImages.zip"
onclick=
"ga('send', 'event', 'BasicPipeline', 'Downoad Human Cells')"
title="Human HT29 Cells Analysis">[Download]</a> (0.3 MB)
</li>
</ul>
</td>
<td valign="center">
<img alt="Basic CellProfiler pipeline Human HT29 Cell example"
border="0" class="exampleImage" height="128" id="HumanCells"
name="HumanCells" onclick=
"MM_openBrWindow('http://d1zymp9ayga15t.cloudfront.net/images/HumanNuclei.jpg','','width=512,height=512')"
onmouseout="MM_swapImgRestore()" onmouseover=
"MM_swapImage('HumanCells','','http://d1zymp9ayga15t.cloudfront.net/images/HumanColorNucleism.jpg',1)"
src="http://d1zymp9ayga15t.cloudfront.net/images/HumanNuclei.jpg" style="clear:left">
</td>
</tr>
<!-- Example fruit flies-->
<tr>
<td>
<ul>
<li>
<a id="FruitFlyCells" name="FruitFlyCells"><span style=
"font-weight:bold">Fruit fly cells:</span></a> In comtrast
to the HT29 cells, Drosophila Kc167 cells are a highly
textured and clumpy cell type. This pipeline demonstrates
how to identify these clumpy cells and obtain
morphological, intensity and texture measurements.<br>
<a href="http://d1zymp9ayga15t.cloudfront.net/content/Examplezips/ExampleFlyImages.zip"
onclick=
"ga('send', 'event', 'BasicPipeline', 'Downoad Fruit Flies')"
title=
"Fruit Fly Cell Biological Image Analysis">[Download]</a>
(4 MB)
</li>
</ul>
</td>
<td valign="center">
<img alt=
"Basic CellProfiler pipeline Fruit Fly Drosophilia Kc167 Cells example"
border="0" class="exampleImage" height="128" id="FruitFlyCells"
name="FruitFlyCells" onclick=
"MM_openBrWindow('http://d1zymp9ayga15t.cloudfront.net/images/FruitflyImg.jpg','','width=479,height=435')"
onmouseout="MM_swapImgRestore()" onmouseover=
"MM_swapImage('FruitFlyCells','','http://d1zymp9ayga15t.cloudfront.net/images/Fruitfly-coded.jpg',1)"
src="http://d1zymp9ayga15t.cloudfront.net/images/FruitflyImg.jpg">
</td>
</tr>
<!-- Example Tumor -->
<tr>
<td valign="top">
<ul>
<li>
<a id="Tumors" name="Tumors"><span style=
"font-weight:bold">Tumors:</span></a> A simple pipeline
that identifies and counts tumors in a mouse lung, and then
measures their size.<br>
<a href="http://d1zymp9ayga15t.cloudfront.net/content/Examplezips/ExampleTumorImages.zip"
onclick=
"ga('send', 'event', 'BasicPipeline', 'Downoad Tumor')"
title="Tumor Cell Analysis Mouse Lung">[Download]</a> (0.9
MB)
</li>
</ul>
</td>
<td valign="center">
<img alt=
"Basic Cellprofiler pipeline mouse lung Tumor Cell Example"
border="0" class="exampleImage" height="128" id="TumorCells"
name="TumorCells" onclick=
"MM_openBrWindow('http://d1zymp9ayga15t.cloudfront.net/images/ExampleTumorImg.png','','width=400,height=300')"
onmouseout="MM_swapImgRestore()" onmouseover=
"MM_swapImage('TumorCells','','http://d1zymp9ayga15t.cloudfront.net/images/ExampleTumorID.png',1)"
src="http://d1zymp9ayga15t.cloudfront.net/images/ExampleTumorImg.png" style="clear:left">
</td>
</tr>
<!-- Example Comet -->
<tr>
<td valign="top">
<ul>
<li>
<a id="Comet" name="Comet"><span style=
"font-weight:bold">Comet assay</span></a> This is a simple
example of a DNA damage assay using single cell gel
electrophoresis. Here, the measurement of interest is the
length and intensity of the comet tail. Also, illumination
correction is used to reduce background flourescence prior
to measurement. Also shown is a silver-stained comet
example in which the percentage of DNA contained in the
tail is calculated.<br>
<a href="http://d1zymp9ayga15t.cloudfront.net/content/Examplezips/ExampleCometAssay.zip"
onclick=
"ga('send', 'event', 'BasicPipeline', 'Downoad Comet')">[Download]</a>
(0.4 MB)
</li>
</ul>
</td>
<td valign="center">
<img alt=
"Basic CellProfiler pipeline Comet tail DNA damage assay example"
border="0" class="exampleImage" height="128" id="Comet" name=
"Comet" onclick=
"MM_openBrWindow('http://d1zymp9ayga15t.cloudfront.net/images/ExampleCometImg.png','','width=400,height=300')"
onmouseout="MM_swapImgRestore()" onmouseover=
"MM_swapImage('Comet','','http://d1zymp9ayga15t.cloudfront.net/images/ExampleCometID.png',1)" src=
"http://d1zymp9ayga15t.cloudfront.net/images/ExampleCometImg.png" style="clear:left">
</td>
</tr>
<tr>
<td colspan="2">
<h3>
Specialized pipelines
</h3>
In addition to cellular object and feature identification,
these pipelines include some of the more specialized modules in
CellProfiler for image pre-processing or measurement.
</td>
</tr>
<!-- Percent Positive -->
<tr>
<td valign="top">
<ul>
<li>
<a id="PercentPositive" name="PercentPositive"><span style=
"font-weight:bold">Cell/particle counting, and scoring the
percentage of stained objects:</span></a> CellProfiler is
commonly used to count cells or other objects as well as
percent-positives, by measuring the per-cell staining
intensity. This pipeline shows how to do both of these
tasks, and demonstrates how various modules may be used to
accomplish the same result.<br>
<a href=
"http://d1zymp9ayga15t.cloudfront.net/content/Examplezips/ExamplePercentPositive.zip"
onclick=
"ga('send', 'event', 'Special', 'Downoad PercentPositive')">
[Download]</a> (0.2 MB)<br>
</li>
</ul>
</td>
<td valign="center">
<img alt=
"Specialized CellProfiler pipeline Percent Positive count per-cell stain intensity example"
border="0" class="exampleImage" height="128" id=
"PercentPositive" name="PercentPositive" onclick=
"MM_openBrWindow('http://d1zymp9ayga15t.cloudfront.net/images/ExamplePercentPosImg.png','','width=235,height=235')"
onmouseout="MM_swapImgRestore()" onmouseover=
"MM_swapImage('PercentPositive','','http://d1zymp9ayga15t.cloudfront.net/images/ExamplePercentPosID.png',1)"
src="http://d1zymp9ayga15t.cloudfront.net/images/ExamplePercentPosImg.png" style="clear:left"><br>
</td>
</tr>
<!-- Example Colonies -->
<tr>
<td valign="top">
<ul>
<li>
<a id="YeastColonies" name="YeastColonies"><span style=
"font-weight:bold">Yeast colony classification:</span></a>
This pipeline demonstrates how to classify and count
objects on the basis of their measured features. The
example identifies uniformly round objects, in this case,
yeast colonies growing on a dish. The pipeline also shows
how to load a template and align it to a cropped image, as
well as how to use illumination correction to subtract for
background illumination.<br>
<a href=
"http://d1zymp9ayga15t.cloudfront.net/content/Examplezips/ExampleYeastColonies_BT_Images.zip"
onclick=
"ga('send', 'event', 'Special', 'Downoad YeastColony')">[Download]</a>
(0.2 MB)<br>
<a href=
"http://d1zymp9ayga15t.cloudfront.net/papers/85-Bray_CurrentProtocols_2015.pdf"
onclick=
"ga('send', 'event', 'Special', 'Download YeastColony PDF')">
[Tutorial]</a>
</li>
</ul>
</td>
<td valign="center">
<img alt=
"Specialized CellProfiler pipeline identify Yeast Colony Classification example"
border="0" class="exampleImage" height="128" id="YeastColonies"
name="YeastColonies" onclick=
"MM_openBrWindow('http://d1zymp9ayga15t.cloudfront.net/images/YeastCrop.jpg','','width=235,height=235')"
onmouseout="MM_swapImgRestore()" onmouseover=
"MM_swapImage('YeastColonies','','http://d1zymp9ayga15t.cloudfront.net/images/YeastCropID.jpg',1)"
src="http://d1zymp9ayga15t.cloudfront.net/images/YeastCrop.jpg" style="clear:left"><br>
</td>
</tr>
<!-- Example Yeast patch -->
<tr>
<td valign="top">
<ul>
<li>
<a id="YeastPatch" name="YeastPatch"><span style=
"font-weight:bold">Yeast patch identification:</span></a>
This pipeline identifies patches of yeast growing in a 96
well plate, serving as an introduction to the grid
defintion and identification modules.<br>
<a href=
"http://d1zymp9ayga15t.cloudfront.net/content/Examplezips/ExampleYeastPatchImages.zip"
onclick=
"ga('send', 'event', 'Special', 'Downoad YeastPatchImages')">
Download]</a> (0.4 MB)
</li>
</ul>
</td>
<td valign="center">
<img alt=
"Specialized CellProfiler pipeline identify Yeast Patch example"
border="0" class="exampleImage" height="128" id="YeastPatch"
name="YeastPatch" onclick=
"MM_openBrWindow('http://d1zymp9ayga15t.cloudfront.net/images/ExampleYeastPatch.png','','width=235,height=235')"
onmouseout="MM_swapImgRestore()" onmouseover=
"MM_swapImage('YeastPatch','','http://d1zymp9ayga15t.cloudfront.net/images/ExampleYeastPatchID.png',1)"
src="http://d1zymp9ayga15t.cloudfront.net/images/ExampleYeastPatch.png" style="clear:left"><br>
</td>
</tr>
<!--Grid of spots-->
<!--
<tr>
<td valign="top"">
<ul><li><span style="font-weight:bold">Annotation: </span>
Example labeling a cell microarray with an annotated grid.
<a href="http://d1zymp9ayga15t.cloudfront.net/content/Examplezips/ExampleGridImages.zip">[Download]</a></li></ul>
</td>
-->
<!-- Tissue neighbors-->
<tr>
<td valign="top">
<ul>
<li>
<a id="TissueNeighbors" name="TissueNeighbors"><span style=
"font-weight:bold">Tissue Neighbors:</span></a> Tissue
samples often have irregularly shaped cells with adjacent
edges. This pipeline shows how to input a color tissue
image, split it into its component channels, and then
identify individual cells from a particular stain and
record the number of neighbors that each cell has.<br>
<a href=
"http://d1zymp9ayga15t.cloudfront.net/content/Examplezips/ExampleNeighborsImages.zip"
onclick=
"ga('send', 'event', 'Special', 'Downoad TissueNeighbors')">
(0.1 MB)</a>
</li>
</ul>
</td>
<td valign="center">
<img alt=
"Specialized CellProfiler pipeline color Tissue image identify example"
border="0" class="exampleImage" height="128" id=
"TissueNeighbors" name="TissueNeighbors" onclick=
"MM_openBrWindow('http://d1zymp9ayga15t.cloudfront.net/images/TissueNeighbors.jpg','','width=531,height=426')"
onmouseout="MM_swapImgRestore()" onmouseover=
"MM_swapImage('TissueNeighbors','','http://d1zymp9ayga15t.cloudfront.net/images/Clones1colorneighbors.jpg',1)"
src="http://d1zymp9ayga15t.cloudfront.net/images/TissueNeighbors.jpg" style="clear:left">
</td>
</tr>
<!-- Wound healing-->
<tr>
<td valign="top">
<ul>
<li>
<a id="Wound" name="Wound"><span style=
"font-weight:bold">Wound Healing:</span></a> In this
example, cells are grown as a tissue monolayer. Rather than
identifying individual cells, this pipeline quantifies the
area occupied by the tissue sample.<br>
<a href=
"http://d1zymp9ayga15t.cloudfront.net/content/Examplezips/ExampleWoundHealingImages.zip"
onclick=
"ga('send', 'event', 'Special', 'Downoad Wound')">[Download]</a>
(1.1 MB)
</li>
</ul>
</td>
<td valign="center">
<img alt=
"Specialized Cellprofiler pipeline quantify area Tissue Monolayer example"
class="exampleImage" height="128" id="Wound" name="Wound"
onclick=
"MM_openBrWindow('http://d1zymp9ayga15t.cloudfront.net/images/WOUND-IMG.gif','','width=255,height=170')"
onmouseout="MM_swapImgRestore()" onmouseover=
"MM_swapImage('Wound','','http://d1zymp9ayga15t.cloudfront.net/images/WOUND-ANALYSIS.gif',1)" src=
"http://d1zymp9ayga15t.cloudfront.net/images/WOUND-IMG.gif">
</td>
</tr>
<!--Illumination correction-->
<tr>
<td valign="top">
<ul>
<li>
<a id="IlluminationCorrection" name=
"IlluminationCorrection"><span style=
"font-weight:bold">Illumination Correction:</span></a>
Illumination correction is often important for both
accurate segmentation and for intensity measurements. This
example shows how the CorrectIlluminationCalculate and
CorrectIlluminationApply modules are used to compensate for
the non-uniformities in illumination often present in
microscopy images.<br>
<a href=
"http://d1zymp9ayga15t.cloudfront.net/content/Examplezips/ExampleIlluminationCorrection.zip"
onclick=
"ga('send', 'event', 'Special', 'Downoad IlluminationCorrection')">
[Download]</a> (14.9 MB)
</li>
<li style="list-style: none">
<a href=
"http://d1zymp9ayga15t.cloudfront.net/content/ExampleIlluminationCorrection_Tutorial.pdf"
oonclick=
"ga('send', 'event', 'Special', 'Downoad IlluminationCorrectionPDF')">
[Tutorial]</a>
</li>
</ul>
</td>
<td valign="center">
<img alt=
"Specialized Cellprofiler pipeline Illumination Correction example"
class="exampleImage" height="128" id="IlluminationCorrection"
name="IlluminationCorrection" onclick=
"MM_openBrWindow('http://d1zymp9ayga15t.cloudfront.net/images/ExampleIlluminationCorrection_Orig.png','','width=170,height=170')"
onmouseout="MM_swapImgRestore()" onmouseover=
"MM_swapImage('IlluminationCorrection','','http://d1zymp9ayga15t.cloudfront.net/images/ExampleIlluminationCorrection_Corr.png',1)"
src="http://d1zymp9ayga15t.cloudfront.net/images/ExampleIlluminationCorrection_Orig.png">
</td>
</tr>
<!--Colocalization-->
<tr>
<td valign="top">
<ul>
<li>
<a id="Colocalization" name="Colocalization"><span style=
"font-weight:bold">Colocalization:</span></a> Measuring the
colocalization between fluorescently labeled molecules is a
widely used approach to measure the degree of spatial
coincidence and potential interactions among subcellular
species (e.g., proteins). This example shows how the object
identifcation and RelateObjects modules are used to measure
the degree of overlap between two fluorescent channels.<br>
<a href=
"http://d1zymp9ayga15t.cloudfront.net/content/Examplezips/ExampleColocalization__.zip"
onclick=
"_gaq.push(['_trackEvent', 'SpecialityPipeline', 'Download', 'ColocalizationDownload']);">
[Download]</a> (3.7 MB)
</li>
<li style="list-style: none">
<a href="http://d1zymp9ayga15t.cloudfront.net/content/Example_Colocalization_Tutorial.docx"
onclick=
"_gaq.push(['_trackEvent', 'SpecialityPDF', 'Download', 'ColocalizationPDF']);">
[Tutorial]</a>
</li>
</ul>
</td>
<td valign="center">
<img alt=
"Specialized CellProfiler Colocalization Spation Coincidence Subcellular example"
class="exampleImage" height="128" id="Colocalization" name=
"Colocalization" onclick=
"MM_openBrWindow('http://d1zymp9ayga15t.cloudfront.net/images/ExampleColocalization_Orig.png','','width=170,height=170')"
onmouseout="MM_swapImgRestore()" onmouseover=
"MM_swapImage('Colocalization','','http://d1zymp9ayga15t.cloudfront.net/images/ExampleColocalization_Masked.png',1)"
src="http://d1zymp9ayga15t.cloudfront.net/images/ExampleColocalization_Orig.png">
</td>
</tr>
<tr>
<td colspan="2">
<h3>
<a id="WormToolbox" name="WormToolbox">Pipelines using the
WormToolbox</a>
</h3>
These pipelines have been developed for high-throughput screens
on <i>C. elegans</i> and extract measurements on a per-worm
basis.<br>
<p style="font-size:small;font-style:italic;margin-left:27px;">
The <a href="http://www.cellprofiler.org/wormtoolbox/">Worm
Toolbox</a> page has further details on this workflow, as
well as video tutorials, pipelines and image data in addition
to those described below. (from C Wählby <i>et al.
<i>Methods</i>, 2014)<br>
The <a href="http://www.broadinstitute.org/bbbc">BBBC</a>
also has <i>C. elegans</i> sample images and information, as
well as assay "ground truth" of various kinds.</i>
</p>
</td>
</tr>
<!--Untangle worms-->
<tr>
<td valign="top">
<ul>
<li>
<a id="UntangleWorms" name="UntangleWorms"><span style=
"font-weight:bold">Untangle worms:</span></a> In this
pipeline, we identify individual worms and extract shape
and intensity measurements. Worm untangling requires a worm
model, which is provided together with the pipeline. If
adjusting the pipeline to fit your own data, worm detection
will likely improve by creating a new worm model based on
your own image data.<br>
<a href=
"http://d1zymp9ayga15t.cloudfront.net/content/Examplezips/ExamplePipelineUntangle.zip"
onclick=
"_gaq.push(['_trackEvent', 'WormPipeline', 'Download', 'UntangleDownload']);">
[Download]</a> (1.3 MB)
</li>
</ul>
</td>
<td valign="center">
<img alt=
"Worm Toolbox CellProfiler Shape Intensity Untangle Worms CellProfiler"
class="exampleImage" height="128" id="Untangle" name="Model"
onclick=
"MM_openBrWindow('http://d1zymp9ayga15t.cloudfront.net/images/ExampleUntangleInput.gif','','width=382,height=396')"
onmouseout="MM_swapImgRestore()" onmouseover=
"MM_swapImage('Untangle','','http://d1zymp9ayga15t.cloudfront.net/images/ExampleUntangleOutput.gif',1)"
src="http://d1zymp9ayga15t.cloudfront.net/images/ExampleUntangleInput.gif">
</td>
</tr>
<!--Straighten worms-->
<tr>
<td valign="top">
<ul>
<li>
<a id="StraightenWorms" name="StraightenWorms"><span style=
"font-weight:bold">Straighten worms and extract intensity
measurements using a low-resolution atlas:</span></a> Once
worms are untangled, this pipeline shows how they can be
straightened and aligned with a low-resolution worm atlas
to extract localized intensity measurements and compare
patterns of reporter signals. Included are steps for
identifying secondary objects (fluorescent marker signals)
and relating these objects to individual worms, enabling
count of signals on a per-worm basis.<br>
<a href=
"http://d1zymp9ayga15t.cloudfront.net/content/Examplezips/ExamplePipelineStraighten.zip"
onclick=
"_gaq.push(['_trackEvent', 'WormPipeline', 'Download', 'StraightenDownload']);">
[Download]</a> (968 KB)
</li>
</ul>
</td>
<td valign="center">
<img alt="Worm Toolbox CellProfiler Straighten Worms example"
class="exampleImage" height="128" id="Model" name="Straighten"
onclick=
"MM_openBrWindow('http://d1zymp9ayga15t.cloudfront.net/images/ExampleStraightenInput.gif','','width=530,height=384')"
onmouseout="MM_swapImgRestore()" onmouseover=
"MM_swapImage('Straighten','','http://d1zymp9ayga15t.cloudfront.net/images/ExampleStraightenOutput.gif',1)"
src="http://d1zymp9ayga15t.cloudfront.net/images/ExampleStraightenInput.gif">
</td>
</tr>
<!--Create worm model-->
<tr>
<td valign="top">
<ul>
<li>
<a id="CreateModel" name="CreateModel"><span style=
"font-weight:bold">Create your own worm model:</span></a>
The UntangleWorms module has an "Untangle" mode
and a "Train" mode. This pipeline describes how
the "Train" mode is used to create a worm model.
Training consists of providing a large number of images of
worms that are representative of the worm variation within
the population, and that do not touch or overlap. Note that
this example download includes only two images and will not
result in a good model, as it will not be representative of
all possible variations of the worm shapes. We recommend
using at least 60 worms to create a model.<br>
<a href=
"http://d1zymp9ayga15t.cloudfront.net/content/Examplezips/ExamplePipelineCreateModel.zip"
onclick=
"_gaq.push(['_trackEvent', 'WormPipeline', 'Download', 'CreateDownload']);">
[Download]</a> (1.6 MB)
</li>
</ul>
</td>
<td valign="center">
<img alt=
"Worm Toolbox Cellprofiler Create Untangle Train Model Worm example"
class="exampleImage" height="128" id="CreateModel" name="Model"
onclick=
"MM_openBrWindow('http://d1zymp9ayga15t.cloudfront.net/images/ExampleCreateModelInput.gif','','width=390,height=463')"
onmouseout="MM_swapImgRestore()" onmouseover=
"MM_swapImage('CreateModel','','http://d1zymp9ayga15t.cloudfront.net/images/ExampleCreateModelOutput.gif',1)"
src="http://d1zymp9ayga15t.cloudfront.net/images/ExampleCreateModelInput.gif">
</td>
</tr>
<!--Bright-field untangling-->
<tr>
<td valign="top">
<ul>
<li>
<a id="UntangleWormsBright-field" name=
"UntangleWormsBright-field"><span style=
"font-weight:bold">Untangle worms and make measurements
bright-field staining pattern phenotype:</span></a> This
pipeline detects individual worms by worm untangling and
finds sub-objects (fatty regions stained with oil red O)
within the worms. Using bright-field data only, it detects
fatty regions by intensity thresholding in a single image
channel and relates the fatty regions to individual worms.
This enables detection of rare phenotypes in heterogeneous
populations, phenotypes that would be missed if population
averages were observed. More data can be found on the
<a href="http://www.broadinstitute.org/bbbc">BBBC</a>.<br>
<a href=
"http://d1zymp9ayga15t.cloudfront.net/content/Examplezips/ExamplePipelineOilRedO.zip"
onclick=
"_gaq.push(['_trackEvent', 'WormPipeline', 'Download', 'UntangleDownload']);">
[Download]</a> (852 KB)
</li>
</ul>
</td>