A data analysis toolkit for the KFW lab (Windows)
Project description
KFWY Data Analysis Toolkit
This is a toolkit for Windows that automatically analyzes data for assays.
- Installing KFWY
- Tools Available
- Using the Data Analysis Tools (Tools 1-3)
- Using the Merge Tools (Tools 4-6)
- Understanding the Output
Installing KFWY
- Ensure that Python 2.7 is installed (preferably the latest version).
- Open your Command prompt and run the command
python --version
. - If the response is
Python 2.7.XX
then you have the correct version of Python installed. Otherwise, you should download the latest Python 2.7 Windows installer, open the installer, and follow the installation instructions (Python 2.7.15 is the latest at this time) https://www.python.org/downloads/release/python-2715/. - NOTE: If you think Python is installed but the above command does not work, try the command
C:\Python27\python.exe --version
. If this command works but not the above command, then consider following these instructions to add python to your PATH environment variables.- Open the
Advanced System Settings
. - Click
Environment Variables
. - Select
New
. - Enter
python
as the Variable Name andC:\Python27
as the Variable Value. - Restart your Command prompt.
- Open the
- If you choose not to do this, then you must replace
python
withC:\Python27\python.exe
from here on out.
- Open your Command prompt and run the command
- Make sure that pip is installed. If you have the latest version of Python 2.7, then pip should already be installed.
- Run the command
pip --version
. - If the response is
pip XX.X from ... (python 2.7)
then you have the correct version of pip installed. Otherwise, you should follow the installation instructions at https://ehmatthes.github.io/pcc/chapter_12/installing_pip.html#pip-on-os-x. - NOTE: If you think pip is installed but the above command does not work, try the command
C:\Python27\Scripts\pip.exe --version
. If this command works but not the above command, then consider following these instructions to add pip to your PATH environment variables.- Open the
Advanced System Settings
. - Click
Environment Variables
. - Double click the
Path
variable. - Select
New
. - Enter
C:\Python27\Scripts
. - Restart your Command prompt.
- Open the
- If you choose not to do this, then you must replace
pip
withC:\Python27\Scripts\pip.exe
from here on out.
- Run the command
- Install kfwy from the Python Package Index with pip.
- Type the command
pip install kfwy
.
- Type the command
- You must have also some other Python modules installed.
- matplotlib
- pandas
- seaborn
- xlrd
- openpyxl
Use the command
pip install matplolib pandas seaborn xlrd openpyxl
. This may take a few minutes to finish.
Tools Available
- Membrane Potential
- NADH Redox
- H2O2
- Membrane Potential Merge
- NADH Redox Merge
- H2O2 Merge
Using the Data Analysis Tools (Tools 1-3)
- Place the raw data files (.txt) to be analyzed in a folder.
- Open the command line
- Navigate to the folder
- e.g. if folder path is users/data_analysis, then type the command
cd users/data_analysis
- e.g. if folder path is users/data_analysis, then type the command
- Type command
python -m kfwy
to run
Using the Merge Tools (Tools 4-6)
- Place the excel files (.xlsx) to be merged in a folder.
- Open the command line
- Navigate to the folder
- e.g. if folder path is users/data_analysis, then type the command "cd users/data_analysis" without quotations
- Type command
python -m kfwy
to run
Understanding the Output
This section explains in detail the significance of the results of the data analysis.
Membrane Potential
- Metadata Sheet - This sheet hosts information about the experiment itself
- ID - The experimental ID.
- Standard Curve - A true or false value indicating whether or not the standard curve calculation was used.
- Slope - The slope value entered by the researcher to be used in calculations.
- Y-Intercept - The y-intercept value entered by the researcher to be used in calculations.
- Substrates - A column containing the list of substrates used in the experiment.
- Additions - A column containing the list of additions used in the experiment.
- Date - The date the analysis was run in the form YYYY-MM-DD.
- Raw Data - The raw data taken from the lab tools.
- The data is in the form X | Y | X |...
- Averaged Raw Data - The average membrane potential for 3-minute (i.e., 180 seconds) increments in each data set. Each data set is annotated with the buffer conditions of the assay at that time.
- Corrected Raw Data - The same data as the Average Raw Data sheet, but with an additional correction calculation which divides each average membrane potential by the the average membrane potential for Ala.
- Standard Curve Data - The results of the standard curve calculation on the raw data.
- The data is in the form X | Y | X |...
- Averaged Standard Curve - The results of the standard curve calculation on the averaged data.
NADH Redox
- Metadata Sheet - This sheet hosts information about the experiment itself.
- ID - The experimental ID.
- Substrates - A column containing the list of substrates used in the experiment.
- Additions - A column containing the list of additions used in the experiment.
- Date - The date the analysis was run in the form YYYY-MM-DD.
- Raw Data - The raw data taken from the lab tools.
- The data is in the form X | Y | X |...
- Stripped Data - Contains only the columns that correspond to the NADH data points.
- The data is in the form X | Y | X |...
- Reduced Data - The same data as the Stripped Data sheet, but with an additional reduction calculation.
y_new = (y_old-min)/(max-min)*100
- Averaged Reduced Data - The averages of the reduced data for 3-minute (i.e., 180 seconds) increments in each data set. Each data set is annotated with the buffer conditions of the assay at that time.
H2O2
- Metadata Sheet - This sheet hosts information about the experiment itself
- ID - The experimental ID.
- Standard Curve - A true or false value indicating whether or not the standard curve calculation was used.
- Slope - The slope value entered by the researcher to be used in calculations.
- Y-Intercept - The y-intercept value entered by the researcher to be used in calculations.
- Substrates - A column containing the list of substrates used in the experiment.
- Additions - A column containing the list of additions used in the experiment.
- Mitochondria - The amount of mitochondria use (in milligrams).
- Date - The date the analysis was run in the form YYYY-MM-DD.
- Raw Data - The raw data taken from the lab tools.
- The data is in the form X | Y | X |...
- Slopes Data - The slope for 3-minute (i.e., 180 seconds) increments in each data set. Each data set is annotated with the buffer conditions of the assay at that time.
- Corrected Slopes - The same data as the Slopes sheet, but with an additional correction calculation which divides each slope value by the mg of mitochondria used.
- Standard Curve - The results of the standard curve calculation on the Raw Data.
- Standard Curve Slopes - The results of the standard curve calculation on the Slopes Data.
- Corrected Standard Curve Slopes - The results of the correction calculation on the Standard Curve Slopes data.
Membrane Potential Merge
Combines data from all of the Averaged Standard Curve sheets in the Membrane Potential data analysis Excel files. Each row corresponds to a substrate. The Mean and SEM is calculated for each row.
NADH Redox Merge
Combines data from all of the Averaged Reduced Data sheets in the NADH Redox data analysis Excel files. Each row corresponds to a substrate. The Mean and SEM is calculated for each row.
H2O2 Merge
Combines data from all of the Corrected Standard Curve Slopes sheets in the H2O2 data analysis Excel files. Each row corresponds to a substrate. The Mean and SEM is calculated for each row.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.