From 034e57151fbf6fe9591ed0828c1f0779c048a612 Mon Sep 17 00:00:00 2001 From: Laura Luebbert <56094636+lauraluebbert@users.noreply.github.com> Date: Fri, 21 Aug 2020 18:08:56 -0700 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 515f3b2..ad7e6b9 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ I compiled two notebooks to streamline two of the most commonly performed tasks 1. The first notebook ("TEMPLATE_max_projec") allows the user to generate and save maximum projection images with a variety of adjustable parameters, such as filters, channel colors, adjustable scale bar (position, size, and color), and more. These parameters are defined once at the beginning of the notebook, in addition to a directory containing the raw tif files. The notebook then automatically generates and saves maximum projections (the saving folder and data format of the generated images can be adjusted too). Remember that one time you spent hours changing the lookup table (LUT) and scale bar size in hundreds of images for a presentation or publication? All of that is just two clicks away now. -2. The second notebook ("TEMPLATE_analyze_fluorescence) is designed to aid you in the analysis of the pixel (or fluorescence) values in your images. For this purpose, it first generates sum projections from your z-stacks (the notebook includes the option to save these locally too). You can then manually draw regions of interest (ROIs) and define background (BG) areas to normalize against. From your manually drawn ROIs, the notebook will compute the raw integrated density (sum of all BG normalized pixel values in ROI) as well as the integrated density (product of ROI area (number of pixels in ROI) and mean BG normalized pixel value inside the ROI) for each sample and save them to a clean csv file for further analysis. The images, ROI coordinates, and pixel values are saved to a dictionary and continuously linked to their sample#, channel, condition, and original filename, so nothing ever gets confused. These dictionaries are also saved locally as pickle files, which you could import into a new notebook for further analysis. They also contain your ROIs, which means that you will never ever have to redraw ROIs again over and over in FIJI just to change that one parameter in your analysis. +2. The second notebook ("TEMPLATE_fluo_analysis) is designed to aid you in the analysis of the pixel (or fluorescence) values in your images. For this purpose, it first generates sum projections from your z-stacks (the notebook includes the option to save these locally too). You can then manually draw regions of interest (ROIs) and define background (BG) areas to normalize against. From your manually drawn ROIs, the notebook will compute the raw integrated density (sum of all BG normalized pixel values in ROI) as well as the integrated density (product of ROI area (number of pixels in ROI) and mean BG normalized pixel value inside the ROI) for each sample and save them to a clean csv file for further analysis. The images, ROI coordinates, and pixel values are saved to a dictionary and continuously linked to their sample#, channel, condition, and original filename, so nothing ever gets confused. These dictionaries are also saved locally as pickle files, which you could import into a new notebook for further analysis. They also contain your ROIs, which means that you will never ever have to redraw ROIs again over and over in FIJI just to change that one parameter in your analysis. A few ground rules: 1. Please read the text at the top of each notebook for instructions on how to use it.