Login  Register

Colocalization analysis using JACoP or Fiji

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
9 messages Options Options
Embed post
Permalink
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Colocalization analysis using JACoP or Fiji

Aldo Vacaflores
2 posts
Hello,

I am looking at colocalization of two proteins using TIRF. I would like to obtain the Pearson coefficient and M1 & M2 coefficients of only a region of interest (ROI) between the two images. Can you select ROI’s to obtain the different coefficients using JACoP?
Also, I tried using Coloc2 which has the option to select an ROI's but I can’t figure out what value to use when it asks for the PSF.  Thanks for your help.
Aldo
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: Colocalization analysis using JACoP or Fiji

Leonardo Guizzetti
11 posts
Hi Aldo,

Perhaps I can help and point you back toward the Coloc2 plugin in
Fiji/ImageJ. I am doing colocalization of proteins using confocal
microscopy and turned initialially to the Colocalization plugin within
ImageJ (using the MacMaster University biophotonics distribution which is
quite stale). Getting into it, the program did not truly handle ROI's, and
as well reported numerically incorrect values for Pearson's. I ended up
helping debug the Coloc2 plugin (which was also not properly handling
ROI's).

Long story short, the Fiji Coloc2 plugin does:
- correctly handle ROI's,binary masks, and full images for all parameters
- Pearson and Mander's coefficients (M1, M2)
- PSF is only needed for another of the calculated parameters, not these
two in particular.

Right now, the advantage that JaCoP plugin has is a prettier interface.

I will also advise using Pearson's over M1 and M2, as per the
recommendation of Parmryd & Adler. ( 1. Adler, J., and Parmryd, I. (2010)
Cytometry. Part A : the journal of the International Society for Analytical
Cytology 77, 733-42 [online] http://www.ncbi.nlm.nih.gov/pubmed/20653013. )

Enjoy. :)


On Tue, Jun 19, 2012 at 11:56 AM, Aldo Vacaflores <
[hidden email]> wrote:

> Hello,
>
> I am looking at colocalization of two proteins using TIRF. I would like to
> obtain the Pearson coefficient and M1 & M2 coefficients of only a region of
> interest (ROI) between the two images. Can you select ROI’s to obtain the
> different coefficients using JACoP?
> Also, I tried using Coloc2 which has the option to select an ROI's but I
> can’t figure out what value to use when it asks for the PSF.  Thanks for
> your help.
> Aldo
>
>
> --
> View this message in context:
> http://imagej.1557.n6.nabble.com/Colocalization-analysis-using-JACoP-or-Fiji-tp4999119.html
> Sent from the ImageJ mailing list archive at Nabble.com.
>
> --
> ImageJ mailing list: http://imagej.nih.gov/ij/list.html
>

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: Colocalization analysis using JACoP or Fiji

Tom Kazimiers
7 posts
In reply to this post by Aldo Vacaflores
Hello Aldo and Lenny

I, too, would suggest one more try of Coloc 2. If you find any problems,
please report them. Though, he plugin isn't really finished, yet.
However the calculations should be robust, only the user interface is
not as pretty as the JACoP one (yet) :-).

On 20.06.2012 06:01, Leonardo Guizzetti wrote:
> Perhaps I can help and point you back toward the Coloc2 plugin in
> Fiji/ImageJ. I am doing colocalization of proteins using confocal
> microscopy and turned initialially to the Colocalization plugin within
> ImageJ (using the MacMaster University biophotonics distribution which is
> quite stale). Getting into it, the program did not truly handle ROI's, and
> as well reported numerically incorrect values for Pearson's. I ended up
> helping debug the Coloc2 plugin (which was also not properly handling
> ROI's)

Indeed, there where some ROI and mask problems in the beginning of Coloc
2. However, these are fixed by now and the mask and ROI handling should
be working. (At least all the unit tests are green :-).)

You could also have a look on the wiki page on fiji.sc [1] for some
general notes on Coloc 2. JACoP and the other plugins. This page needs
some updates, though.

> Long story short, the Fiji Coloc2 plugin does:
> - correctly handle ROI's,binary masks, and full images for all parameters

True and to add some more words about these: ROI's can be any type of
ROI ImageJ/Fiji offers. However, they always will be the same for every
slice. If you want to have a variation in Z (for a Z stack) as well, you
can use the masks that Lenny mentioned. You just need to create an image
with the same extent as your original one. Then everything with a zero
value (back) will *not* be taken into account, everything else will.
Duplicating your stack and using thresholding and make it binary, could
support you in marking the structures you are interested in.

> - Pearson and Mander's coefficients (M1, M2)

Yep.

> On Tue, Jun 19, 2012 at 11:56 AM, Aldo Vacaflores  wrote:
>> Also, I tried using Coloc2 which has the option to select an ROI's
>> but I can’t figure out what value to use when it asks for the PSF.

> - PSF is only needed for another of the calculated parameters, not
> these two in particular.

Yes, but it might be useful to investigate it. The algorithm it is used
for is the Costes statistical significance test. It indicates whether
your Pearson coefficient is not better/more significant than one
obtained between your images if one of it was randomized/shuffled. That
in turn means that your Pearson coefficient is not significant. You can
find a link to the paper on the Fiji wiki. Now this shuffling is done by
randomizing blocks of the original image. The length of such a block's
edge is equal to the point spread function (PSF). So either you take the
PSF of your original image/microscope setting or you leave it with the
default (which is in most cases fine as well).

Also note that when choosing an irregular ROI or mask, our
implementation of Costes shuffles the bounding box around it. Of course,
image data is only used from within the ROI, but the remaining parts are
black and still shuffled around.

> Right now, the advantage that JaCoP plugin has is a prettier interface.

True. But one advantage of Coloc 2 is that it is tested (in terms Java
unit tests) . At least as far as I know is this not done with the JACoP
plugin. Unfortunately, we didn't find time yet to work on the user
interface.

> I will also advise using Pearson's over M1 and M2, as per the
> recommendation of Parmryd & Adler. ( 1. Adler, J., and Parmryd, I. (2010)
> Cytometry. Part A : the journal of the International Society for Analytical
> Cytology 77, 733-42 [online] http://www.ncbi.nlm.nih.gov/pubmed/20653013. )

Thanks for posting, I didn't know this publication.

Also, hopefully in a few days an update of the Coloc 2 plugin will be
available which includes some bugfixes (and is based on Imglib2). So
have your Fiji up to date :-).

Cheers,
Tom

[1] http://fiji.sc/wiki/index.php/Coloc_2

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: Colocalization analysis using JACoP or Fiji

Barlow, Andrew
1 post
In reply to this post by Leonardo Guizzetti
Hi All,
I'd just like to clarify the point about the Adler and Parmryd publication. They recommend the use of PCC over the Manders overlap coefficient (which is an emasculated version of PCC), not M1 and M2, which are a simple measure of overlap and not controversial.  I suggest that PCC should always be used in combination with M1 and M2.
Cheers,
Andy

Andrew Barlow PhD | Applications Specialist
PerkinElmer | For the Better
[hidden email]
Phone:  + 44 2476 692229|   Fax:  +44 2476 690091   |   Mobile:   +44 7799 795 999
Millburn Hill Road, Coventry, CV4 7HS, UK
www.perkinelmer.com
Please consider the environment before printing this e-mail.
This e-mail message and any attachments are confidential and proprietary to PerkinElmer, Inc.  If you are not the intended recipient of this message, please inform the sender by replying to this email or sending a message to the sender and destroy the message and any attachments.  Thank you.


> -----Original Message-----
> From: ImageJ Interest Group [mailto:[hidden email]] On Behalf Of
> Leonardo Guizzetti
> Sent: 19 June 2012 23:24
> To: [hidden email]
> Subject: Re: Colocalization analysis using JACoP or Fiji
>
> Hi Aldo,
>
> Perhaps I can help and point you back toward the Coloc2 plugin in
> Fiji/ImageJ. I am doing colocalization of proteins using confocal
> microscopy and turned initialially to the Colocalization plugin within
> ImageJ (using the MacMaster University biophotonics distribution which
> is
> quite stale). Getting into it, the program did not truly handle ROI's,
> and
> as well reported numerically incorrect values for Pearson's. I ended up
> helping debug the Coloc2 plugin (which was also not properly handling
> ROI's).
>
> Long story short, the Fiji Coloc2 plugin does:
> - correctly handle ROI's,binary masks, and full images for all
> parameters
> - Pearson and Mander's coefficients (M1, M2)
> - PSF is only needed for another of the calculated parameters, not
> these
> two in particular.
>
> Right now, the advantage that JaCoP plugin has is a prettier interface.
>
> I will also advise using Pearson's over M1 and M2, as per the
> recommendation of Parmryd & Adler. ( 1. Adler, J., and Parmryd, I.
> (2010)
> Cytometry. Part A : the journal of the International Society for
> Analytical
> Cytology 77, 733-42 [online]
> http://www.ncbi.nlm.nih.gov/pubmed/20653013. )
>
> Enjoy. :)
>
>
> On Tue, Jun 19, 2012 at 11:56 AM, Aldo Vacaflores <
> [hidden email]> wrote:
>
> > Hello,
> >
> > I am looking at colocalization of two proteins using TIRF. I would
> like to
> > obtain the Pearson coefficient and M1 & M2 coefficients of only a
> region of
> > interest (ROI) between the two images. Can you select ROI's to obtain
> the
> > different coefficients using JACoP?
> > Also, I tried using Coloc2 which has the option to select an ROI's
> but I
> > can't figure out what value to use when it asks for the PSF.  Thanks
> for
> > your help.
> > Aldo
> >
> >
> > --
> > View this message in context:
> > http://imagej.1557.n6.nabble.com/Colocalization-analysis-using-JACoP-
> or-Fiji-tp4999119.html
> > Sent from the ImageJ mailing list archive at Nabble.com.
> >
> > --
> > ImageJ mailing list: http://imagej.nih.gov/ij/list.html
> >
>
> --
> ImageJ mailing list: http://imagej.nih.gov/ij/list.html

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: Colocalization analysis using JACoP or Fiji

Aldo Vacaflores
2 posts
In reply to this post by Aldo Vacaflores
Thanks everyone for the prompt response. Your feedback was very useful.

Aldo
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: Colocalization analysis using JACoP or Fiji

dscho
1631 posts
In reply to this post by Leonardo Guizzetti
Hi,

On Tue, 19 Jun 2012, Leonardo Guizzetti wrote:

> Right now, the advantage that JaCoP plugin has is a prettier interface.

If I am not mistaken, Coloc 2 has the advantage that it keeps ImageJ's UI
responsive while it runs (i.e. it does not run on the Event Dispatch
Thread which is a programming mistake that is way too easy to make).

Ciao,
Johannes

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: Colocalization analysis using JACoP or Fiji

Joel Sheffield
221 posts
Is there a source for the Coloc 2 plugin for ImageJ?

On Thu, Jun 21, 2012 at 7:39 PM, Johannes Schindelin <
[hidden email]> wrote:

> Hi,
>
> On Tue, 19 Jun 2012, Leonardo Guizzetti wrote:
>
> > Right now, the advantage that JaCoP plugin has is a prettier interface.
>
> If I am not mistaken, Coloc 2 has the advantage that it keeps ImageJ's UI
> responsive while it runs (i.e. it does not run on the Event Dispatch
> Thread which is a programming mistake that is way too easy to make).
>
> Ciao,
> Johannes
>
> --
> ImageJ mailing list: http://imagej.nih.gov/ij/list.html
>



--


Joel B. Sheffield, Ph.D
Department of Biology
Temple University
Philadelphia, PA 19122
Voice: 215 204 8839
e-mail: [hidden email]
URL:  http://astro.temple.edu/~jbs

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Coloc 2, was Re: Colocalization analysis using JACoP or Fiji

dscho
1631 posts
Hi Joel,

On Thu, 21 Jun 2012, Joel B. Sheffield wrote:

> Is there a source for the Coloc 2 plugin for ImageJ?

Of course. Just follow the "Source: on gitweb" link on the page
http://fiji.sc/Coloc_2.

Ciao,
Johannes

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: Coloc 2, was Re: Colocalization analysis using JACoP or Fiji

MattP
1 post
Hi,

I use ImageJ for colocalization. And I want to know if I can use coloc_2 for calculating colocalization on ROI?
My ROI is not a square but an undifined form.
Moreover, can you tell me where I can download coloc_2 on java format?
I try to use this link (http://fiji.sc/Coloc_2) but I don't suceed in. Does it exist another way? Or can you indicate how I have to do using this link?
Thank you for your help.

Matthieu