SELDI-TOF Mass Spectrometry Protein Data By Huong Thi Dieu La

Size: px
Start display at page:

Download "SELDI-TOF Mass Spectrometry Protein Data By Huong Thi Dieu La"

Transcription

1 SELDI-TOF Mass Spectrometry Protein Data By Huong Thi Dieu La

2 References Alejandro Cruz-Marcelo, Rudy Guerra, Marina Vannucci, Yiting Li, Ching C. Lau, and Tsz-Kwong Man. Comparison of algorithms for pre-processing of SELDI-TOF mass spectrometry data. Bioinformatics, 24(19): , Robert Gentleman, Vincent Carey, Wolfgang Huber, Rafael Irizarry, and Sandrine Dudoit. Bioinformatics and Computational Biology Solutions Using R and Bioconductor (Statistics for Biology and Health). Springer Science and Business Media, Inc, New York, first edition edition, Haleem J. Issaq, Timothy D. Veenstra, Thomas P. Conrads,, and Donna Felschow. The SELDI-TOF MS approach to proteomics: Protein profiling and biomarker identification. Biochemical and Biophysical Research Communications, 292: , 2002.

3 SELDI-TOF-MS Surface Enhanced Laser Desorption/Ionization Time-of-Flight Mass Spectrometry Used to profile protein markers from tissue or bodily fluids and thus identify biomarkers that can aid in diagnosis, prognosis or treatment. Application: psychiatric disease, renal function, cancer (pancreatic, prostate, ovarian, and breast)

4 SELDI-TOF-MS Components ProteinChip array Retain specific proteins from the sample Reader Measures the molecular weights of the retained proteins and generates a trace showing the relative abundance vs. the molecular weights of these proteins Software Identify differences in protein abundances between two samples

5 Source: re_issaq.pdf

6 Preparation Biological samples are processed via fractionation. Fractionation: the process of splitting the original sample into subsamples which contain proteins that are more homogeneous

7 EAM: Energy Absorbing Molecule Source:

8 Preprocessing of MS data Alignment of the spectra Filtering (Denoising) Baseline subtraction Normalization Peak Detection Clustering of peaks Peak quantification

9 SELDI-TOF-MS softwares ProteinChip Software 3.1 SpecAlign Cromwell PROcess MassSpecWAvelet

10 PROcess package Process a single spectrum Process a set of spectra

11 Process a single spectrum Baseline subtraction Peak detection

12 Baseline subtraction Purpose: To level off the elevated, non-constant baseline caused by the chemical noise in the EAM and by ion overload, thus, make different spectra compatible. Solution: Using local regression to estimate the bottom of a spectrum and then subtracting that estimate from a spectrum Two approaches: Fitting local regression to: The points below a certain quantile Local minima: yields better results when estimating the baseline.

13 Baseline Subtraction

14 Baseline subtraction: algorithm For each spectrum, find local minima by segmenting the m/z range. Fit a local regression to local minima for each spectrum Subtract the estimated baseline from each spectrum

15 ### Load libraries library(survival) library(icens) library(process) ### Read in the raw spectrum fdat <- system.file("test", package="process") fs <- list.files(fdat, pattern = "\\.*csv\\.*", full.names=true) f1 <- read.files(fs[1]) ### Plot the raw spectrum jpeg("f1.jpeg", width=480, height=480) plot(f1, type="l", xlab="m/z") title(basename(fs[1])) dev.off() ### Remove the baseline jpeg("f2.jpeg", width=480, height=480) bseoff <- bslnoff(f1, method="loess", bw=0.1, xlab="m/z", plot=true) title(basename(fs[1])) dev.off()

16 Peak detection Purpose: To detect peaks that represent the set of proteins that are differentially expressed between different samples.

17 Peak Detection: algorithm Smooth the spectrum using moving averages of k s nearest neighbors Compute local variability as the median of the absolute deviations of k v nearest neighbors. Identify local maxima of the smoothed spectrum using three thresholds: The signal to noise ratio: local smooth/local variability The detection threshold for the whole spectrum The shape ratio: the area under the curve within a small distance of a peak candidate/ maximum of all such peak areas of a spectrum

18 ### Peak detection jpeg("f3.jpeg", width=480, height=480) pkgobj <- ispeak(bseoff, span=81, sm.span=11, plot=true, zerothrsh=2, area.w=0.003, ratio=0.2) dev.off() ### Inspect peaks in a particular range of m/z values jpeg("f4.jpeg", width=480, height=480) speczoom(pkgobj, xlim=c(5000,10000)) dev.off()

19 Peak detection

20 Processing a set of calibration spectra Apply baseline subtraction Normalize spectra Cutoff selection Identify peaks Quality assessment Get proto-biomarkers

21 Example Data Set A set of 8 spectra from a calibration data set Same 5 proteins are present in the sample: 1084, 1638, 3496, 5807, 7034 amu

22 ### Read in the 8 spectra amu.cali <- c(1084,1638,3496,5807,7034) ### Plot 8 spectra and mark the protein positions by red vertical lines for each of them jpeg("f5.jpeg", width=1080, height=560) par(mfrow=c(2,4)) plotcali <- function(f, main, lab.cali){ x <- read.files(f) plot(x,main=main, ylim=c(0,max(x[,2])), type="n") abline(h=0, col="gray") abline(v=amu.cali, col="salmon") if(lab.cali) axis(3, at=amu.cali, labels=amu.cali, las=3, tick=false, col="salmon", cex.axis=0.94) lines(x) return(invisible(x)) } dir.cali <- system.file("calibration", package="process") files <- dir(dir.cali, full.names=true) i <- seq(along=files) mapply(plotcali, files, LETTERS[i], i <=2) dev.off()

23

24 Baseline subtraction Similar to baseline subtraction for a single spectra R code: Mcal <- rmbaseline(dir.cali, plot=true) head(mcal) peptidecalib_1_128.csv peptidecalib_1_16.csv

25 Normalize Spectra Purpose: reduce variation due to experimental noise Total ion normalization: Calculate each spectrum's area under the curve (AUC) for m/z values greater than the selected cutoff Scale all spectra to the median AUC Assumptions: The number of proteins being over-expressed is approximately equal to the number of proteins being under-expressed. The number of proteins whose expression levels change is small relative to the total number of proteins bound to the protein array surface

26 Cutoff selection Choose a cutoff point such that the magnitude of the noise is relatively stable above that point. Algorithm for a single cutoff point: Baseline-subtracted spectra within the group are normalized to the median of the sums of intensities of spectra The standard deviation of intensities at each m/z value is calculated The mean of those standard deviations is computed. Repeat for different cutoff points and Plot average standard deviations vs. cutoff points.

27 ### Cutoff selection cts <- round(10^(seq(2,4,length=14))) sdsfirst <- sapply(cts, avesd, Ma=Mcal) jpeg("f6.jpeg", width=480, height=480) par(mfrow=c(1,1)) plot(cts, sdsfirst, xlab="cutpoint", pch=21, bg="red", log="x", ylab="average sd") dev.off() ### Normalize spectra- cutoff point m/z=400 M.r <- renorm(mcal, cutoff=400)

28 Identify Peaks Similar to peak detection for a single baselineadjusted spectrum R Code ### Identify peaks peakfile <- "calipeak.csv" getpeaks(m.r, peakfile, ratio=0.1)

29 Quality Assessment Purpose: Identify and eliminate spectra of poor quality Based on 3 parameters: Quality: measure of separation of signal from noise Retain: the number of high peaks in a single spectrum Peak: the number of peaks in a spectrum relative to the average number of peaks of the whole set of spectra being considered Poor quality spectra: Quality < 0.4, Retain < 0.1, Peak <0.5.

30 Quality assessment: algorithm Estimate the noise by subtracting from each spectrum its moving average with a window size of 5 points. Calculate the noise envelope as 3 times the standard deviation of the noise in a 250 point window. Calculate the area under each spectrum A 0 Calculate the area after subtracting the noise envelope from the spectrum A 1 Obtain Quality, Retain, and Peak

31 Quality assessment: algorithm Quality: A1/A0 Retain: the number of points with height greater than 5 times noise envelope/ the total numbrer of points in the spectrum Peak: the number of peaks in each spectrum detected/ the average number of peaks for all spectra in a run

32 qualres <- quality(m.r, peakfile, cutoff=400) QualRes Quality Retain peak peptidecalib_1_128.csv peptidecalib_1_16.csv peptidecalib_1_2.csv peptidecalib_1_256.csv peptidecalib_1_32.csv peptidecalib_1_4.csv peptidecalib_1_64.csv peptidecalib_1_8.csv

33 Get Proto-biomarkers Peak alignment: peaks across spectra that are likely to represent the same protein. Proto-biomarkers: peaks aligned across spectra To obtain a proto-biomarker: Generate an interval around each peak that is centered at the m/z value for the peak (0.3%) Determine which actual peaks are represented by a proto-biomarker Use the maximum value as the height of that proto-biomarker

34 ### Get proto-biomarkers bmkfile <- "calibmk.csv" bmk1 <- pk2bmkr(peakfile, M.r, bmkfile, p.fltr=0.5) mk1 <- round(as.numeric(gsub("m", "", names(bmk1)))) mk1 ### [1] jpeg("f7.jpeg", width=1080, height=560) par(mfrow=c(2,4)) plotcali2 <- function(...){ x <- plotcali(...) lines(x[,1]*2, x[,2]+25, col="blue") } mapply(plotcali2, files, LETTERS[i], i <=2) dev.off()

35

36 Analyze the result 5 known proteins: 1084, 1638, 3496, 5807, 7034 Obtained 4 proto-biomarkers: 2906, 3498, 5812, and 7036 Within 0.3% of m/z values of known proteins: 3498, 5812, and 7036 Result of larger proteins with two charges: 2x2906 (5807) and 2x3496 (7034) Failed to detect peaks at m/z=1084 and 1638

37 Summary PROcess package: Process SELDI-TOF-MS data Advantage: produce more producible results regarding peak quantification Limitation: The results were not homogeneous across laser intensities

Preprocessing, Management, and Analysis of Mass Spectrometry Proteomics Data

Preprocessing, Management, and Analysis of Mass Spectrometry Proteomics Data Preprocessing, Management, and Analysis of Mass Spectrometry Proteomics Data M. Cannataro, P. H. Guzzi, T. Mazza, and P. Veltri Università Magna Græcia di Catanzaro, Italy 1 Introduction Mass Spectrometry

More information

Alignment and Preprocessing for Data Analysis

Alignment and Preprocessing for Data Analysis Alignment and Preprocessing for Data Analysis Preprocessing tools for chromatography Basics of alignment GC FID (D) data and issues PCA F Ratios GC MS (D) data and issues PCA F Ratios PARAFAC Piecewise

More information

Copyright 2007 Casa Software Ltd. www.casaxps.com. ToF Mass Calibration

Copyright 2007 Casa Software Ltd. www.casaxps.com. ToF Mass Calibration ToF Mass Calibration Essentially, the relationship between the mass m of an ion and the time taken for the ion of a given charge to travel a fixed distance is quadratic in the flight time t. For an ideal

More information

Using Ontologies in Proteus for Modeling Data Mining Analysis of Proteomics Experiments

Using Ontologies in Proteus for Modeling Data Mining Analysis of Proteomics Experiments Using Ontologies in Proteus for Modeling Data Mining Analysis of Proteomics Experiments Mario Cannataro, Pietro Hiram Guzzi, Tommaso Mazza, and Pierangelo Veltri University Magna Græcia of Catanzaro, 88100

More information

Functional Data Analysis of MALDI TOF Protein Spectra

Functional Data Analysis of MALDI TOF Protein Spectra Functional Data Analysis of MALDI TOF Protein Spectra Dean Billheimer dean.billheimer@vanderbilt.edu. Department of Biostatistics Vanderbilt University Vanderbilt Ingram Cancer Center FDA for MALDI TOF

More information

Quality Assessment of Exon and Gene Arrays

Quality Assessment of Exon and Gene Arrays Quality Assessment of Exon and Gene Arrays I. Introduction In this white paper we describe some quality assessment procedures that are computed from CEL files from Whole Transcript (WT) based arrays such

More information

泛 用 蛋 白 質 體 學 之 質 譜 儀 資 料 分 析 平 台 的 建 立 與 應 用 Universal Mass Spectrometry Data Analysis Platform for Quantitative and Qualitative Proteomics

泛 用 蛋 白 質 體 學 之 質 譜 儀 資 料 分 析 平 台 的 建 立 與 應 用 Universal Mass Spectrometry Data Analysis Platform for Quantitative and Qualitative Proteomics 泛 用 蛋 白 質 體 學 之 質 譜 儀 資 料 分 析 平 台 的 建 立 與 應 用 Universal Mass Spectrometry Data Analysis Platform for Quantitative and Qualitative Proteomics 2014 Training Course Wei-Hung Chang ( 張 瑋 宏 ) ABRC, Academia

More information

Learning Objectives:

Learning Objectives: Proteomics Methodology for LC-MS/MS Data Analysis Methodology for LC-MS/MS Data Analysis Peptide mass spectrum data of individual protein obtained from LC-MS/MS has to be analyzed for identification of

More information

1 Genzyme Corp., Framingham, MA, 2 Positive Probability Ltd, Isleham, U.K.

1 Genzyme Corp., Framingham, MA, 2 Positive Probability Ltd, Isleham, U.K. Overview Fast and Quantitative Analysis of Data for Investigating the Heterogeneity of Intact Glycoproteins by ESI-MS Kate Zhang 1, Robert Alecio 2, Stuart Ray 2, John Thomas 1 and Tony Ferrige 2. 1 Genzyme

More information

Protein Prospector and Ways of Calculating Expectation Values

Protein Prospector and Ways of Calculating Expectation Values Protein Prospector and Ways of Calculating Expectation Values 1/16 Aenoch J. Lynn; Robert J. Chalkley; Peter R. Baker; Mark R. Segal; and Alma L. Burlingame University of California, San Francisco, San

More information

OplAnalyzer: A Toolbox for MALDI-TOF Mass Spectrometry Data Analysis

OplAnalyzer: A Toolbox for MALDI-TOF Mass Spectrometry Data Analysis OplAnalyzer: A Toolbox for MALDI-TOF Mass Spectrometry Data Analysis Thang V. Pham and Connie R. Jimenez OncoProteomics Laboratory, Cancer Center Amsterdam, VU University Medical Center De Boelelaan 1117,

More information

using ms based proteomics

using ms based proteomics quantification using ms based proteomics lennart martens Computational Omics and Systems Biology Group Department of Medical Protein Research, VIB Department of Biochemistry, Ghent University Ghent, Belgium

More information

Tutorial for Proteomics Data Submission. Katalin F. Medzihradszky Robert J. Chalkley UCSF

Tutorial for Proteomics Data Submission. Katalin F. Medzihradszky Robert J. Chalkley UCSF Tutorial for Proteomics Data Submission Katalin F. Medzihradszky Robert J. Chalkley UCSF Why Have Guidelines? Large-scale proteomics studies create huge amounts of data. It is impossible/impractical to

More information

Aiping Lu. Key Laboratory of System Biology Chinese Academic Society APLV@sibs.ac.cn

Aiping Lu. Key Laboratory of System Biology Chinese Academic Society APLV@sibs.ac.cn Aiping Lu Key Laboratory of System Biology Chinese Academic Society APLV@sibs.ac.cn Proteome and Proteomics PROTEin complement expressed by genome Marc Wilkins Electrophoresis. 1995. 16(7):1090-4. proteomics

More information

Medical Informatics II

Medical Informatics II Medical Informatics II Zlatko Trajanoski Institute for Genomics and Bioinformatics Graz University of Technology http://genome.tugraz.at zlatko.trajanoski@tugraz.at Medical Informatics II Introduction

More information

DeCyder Extended Data Analysis module Version 1.0

DeCyder Extended Data Analysis module Version 1.0 GE Healthcare DeCyder Extended Data Analysis module Version 1.0 Module for DeCyder 2D version 6.5 User Manual Contents 1 Introduction 1.1 Introduction... 7 1.2 The DeCyder EDA User Manual... 9 1.3 Getting

More information

Biomarker Discovery and Data Visualization Tool for Ovarian Cancer Screening

Biomarker Discovery and Data Visualization Tool for Ovarian Cancer Screening , pp.169-178 http://dx.doi.org/10.14257/ijbsbt.2014.6.2.17 Biomarker Discovery and Data Visualization Tool for Ovarian Cancer Screening Ki-Seok Cheong 2,3, Hye-Jeong Song 1,3, Chan-Young Park 1,3, Jong-Dae

More information

Introduction to mass spectrometry (MS) based proteomics and metabolomics

Introduction to mass spectrometry (MS) based proteomics and metabolomics Introduction to mass spectrometry (MS) based proteomics and metabolomics Tianwei Yu Department of Biostatistics and Bioinformatics Rollins School of Public Health Emory University September 10, 2015 Background

More information

Integrated Data Mining Strategy for Effective Metabolomic Data Analysis

Integrated Data Mining Strategy for Effective Metabolomic Data Analysis The First International Symposium on Optimization and Systems Biology (OSB 07) Beijing, China, August 8 10, 2007 Copyright 2007 ORSC & APORC pp. 45 51 Integrated Data Mining Strategy for Effective Metabolomic

More information

MASCOT Search Results Interpretation

MASCOT Search Results Interpretation The Mascot protein identification program (Matrix Science, Ltd.) uses statistical methods to assess the validity of a match. MS/MS data is not ideal. That is, there are unassignable peaks (noise) and usually

More information

Mass Spectrometry Signal Calibration for Protein Quantitation

Mass Spectrometry Signal Calibration for Protein Quantitation Cambridge Isotope Laboratories, Inc. www.isotope.com Proteomics Mass Spectrometry Signal Calibration for Protein Quantitation Michael J. MacCoss, PhD Associate Professor of Genome Sciences University of

More information

Quantitative proteomics background

Quantitative proteomics background Proteomics data analysis seminar Quantitative proteomics and transcriptomics of anaerobic and aerobic yeast cultures reveals post transcriptional regulation of key cellular processes de Groot, M., Daran

More information

Introduction to Proteomics 1.0

Introduction to Proteomics 1.0 Introduction to Proteomics 1.0 CMSP Workshop Tim Griffin Associate Professor, BMBB Faculty Director, CMSP Objectives Why are we here? For participants: Learn basics of MS-based proteomics Learn what s

More information

[ Care and Use Manual ]

[ Care and Use Manual ] PREP Calibration Mix DIOS Low i. Introduction Pre-packaged PREP Calibration Mixtures eliminate the need to purchase and store large quantities of the component calibration reagents, simplifying sample

More information

Tutorial 9: SWATH data analysis in Skyline

Tutorial 9: SWATH data analysis in Skyline Tutorial 9: SWATH data analysis in Skyline In this tutorial we will learn how to perform targeted post-acquisition analysis for protein identification and quantitation using a data-independent dataset

More information

MarkerView Software 1.2.1 for Metabolomic and Biomarker Profiling Analysis

MarkerView Software 1.2.1 for Metabolomic and Biomarker Profiling Analysis MarkerView Software 1.2.1 for Metabolomic and Biomarker Profiling Analysis Overview MarkerView software is a novel program designed for metabolomics applications and biomarker profiling workflows 1. Using

More information

Software and Methods for the Analysis of Affymetrix GeneChip Data. Rafael A Irizarry Department of Biostatistics Johns Hopkins University

Software and Methods for the Analysis of Affymetrix GeneChip Data. Rafael A Irizarry Department of Biostatistics Johns Hopkins University Software and Methods for the Analysis of Affymetrix GeneChip Data Rafael A Irizarry Department of Biostatistics Johns Hopkins University Outline Overview Bioconductor Project Examples 1: Gene Annotation

More information

Pep-Miner: A Novel Technology for Mass Spectrometry-Based Proteomics

Pep-Miner: A Novel Technology for Mass Spectrometry-Based Proteomics Pep-Miner: A Novel Technology for Mass Spectrometry-Based Proteomics Ilan Beer Haifa Research Lab Dec 10, 2002 Pep-Miner s Location in the Life Sciences World The post-genome era - the age of proteome

More information

MEASURES OF VARIATION

MEASURES OF VARIATION NORMAL DISTRIBTIONS MEASURES OF VARIATION In statistics, it is important to measure the spread of data. A simple way to measure spread is to find the range. But statisticians want to know if the data are

More information

Gene Expression Analysis

Gene Expression Analysis Gene Expression Analysis Jie Peng Department of Statistics University of California, Davis May 2012 RNA expression technologies High-throughput technologies to measure the expression levels of thousands

More information

MRMPilot Software: Accelerating MRM Assay Development for Targeted Quantitative Proteomics

MRMPilot Software: Accelerating MRM Assay Development for Targeted Quantitative Proteomics MRMPilot Software: Accelerating MRM Assay Development for Targeted Quantitative Proteomics With Unique QTRAP and TripleTOF 5600 System Technology Targeted peptide quantification is a rapidly growing application

More information

ELECTRON SPIN RESONANCE Last Revised: July 2007

ELECTRON SPIN RESONANCE Last Revised: July 2007 QUESTION TO BE INVESTIGATED ELECTRON SPIN RESONANCE Last Revised: July 2007 How can we measure the Landé g factor for the free electron in DPPH as predicted by quantum mechanics? INTRODUCTION Electron

More information

HA Convention 2007 Service Priorities & Programmes 8

HA Convention 2007 Service Priorities & Programmes 8 HA Convention 2007 Service Priorities & Programmes 8 An Expenditure-saving Cluster-wide Cyclosporin A Service with Improved Analytical Performance Dr. Michael H. M. Chan MBChB FRCPA FHKCPath FHKAM(Pathology)

More information

Mass Spectrometry. Overview

Mass Spectrometry. Overview Mass Spectrometry Overview Mass Spectrometry is an analytic technique that utilizes the degree of deflection of charged particles by a magnetic field to find the relative masses of molecular ions and fragments.2

More information

Increasing the Multiplexing of High Resolution Targeted Peptide Quantification Assays

Increasing the Multiplexing of High Resolution Targeted Peptide Quantification Assays Increasing the Multiplexing of High Resolution Targeted Peptide Quantification Assays Scheduled MRM HR Workflow on the TripleTOF Systems Jenny Albanese, Christie Hunter AB SCIEX, USA Targeted quantitative

More information

ProteinPilot Report for ProteinPilot Software

ProteinPilot Report for ProteinPilot Software ProteinPilot Report for ProteinPilot Software Detailed Analysis of Protein Identification / Quantitation Results Automatically Sean L Seymour, Christie Hunter SCIEX, USA Pow erful mass spectrometers like

More information

MultiQuant Software 2.0 for Targeted Protein / Peptide Quantification

MultiQuant Software 2.0 for Targeted Protein / Peptide Quantification MultiQuant Software 2.0 for Targeted Protein / Peptide Quantification Gold Standard for Quantitative Data Processing Because of the sensitivity, selectivity, speed and throughput at which MRM assays can

More information

Statistical issues in the analysis of microarray data

Statistical issues in the analysis of microarray data Statistical issues in the analysis of microarray data Daniel Gerhard Institute of Biostatistics Leibniz University of Hannover ESNATS Summerschool, Zermatt D. Gerhard (LUH) Analysis of microarray data

More information

Enhancing GCMS analysis of trace compounds using a new dynamic baseline compensation algorithm to reduce background interference

Enhancing GCMS analysis of trace compounds using a new dynamic baseline compensation algorithm to reduce background interference Enhancing GCMS analysis of trace compounds using a new dynamic baseline compensation algorithm to reduce background interference Abstract The advantages of mass spectrometry (MS) in combination with gas

More information

Beware that Low Urine Creatinine! by Vera F. Dolan MSPH FALU, Michael Fulks MD, Robert L. Stout PhD

Beware that Low Urine Creatinine! by Vera F. Dolan MSPH FALU, Michael Fulks MD, Robert L. Stout PhD 1 Beware that Low Urine Creatinine! by Vera F. Dolan MSPH FALU, Michael Fulks MD, Robert L. Stout PhD Executive Summary: The presence of low urine creatinine at insurance testing is associated with increased

More information

Signal, Noise, and Detection Limits in Mass Spectrometry

Signal, Noise, and Detection Limits in Mass Spectrometry Signal, Noise, and Detection Limits in Mass Spectrometry Technical Note Chemical Analysis Group Authors Greg Wells, Harry Prest, and Charles William Russ IV, Agilent Technologies, Inc. 2850 Centerville

More information

The Scheduled MRM Algorithm Enables Intelligent Use of Retention Time During Multiple Reaction Monitoring

The Scheduled MRM Algorithm Enables Intelligent Use of Retention Time During Multiple Reaction Monitoring The Scheduled MRM Algorithm Enables Intelligent Use of Retention Time During Multiple Reaction Monitoring Delivering up to 2500 MRM Transitions per LC Run Christie Hunter 1, Brigitte Simons 2 1 AB SCIEX,

More information

Background Information

Background Information 1 Gas Chromatography/Mass Spectroscopy (GC/MS/MS) Background Information Instructions for the Operation of the Varian CP-3800 Gas Chromatograph/ Varian Saturn 2200 GC/MS/MS See the Cary Eclipse Software

More information

Accurate Mass Screening Workflows for the Analysis of Novel Psychoactive Substances

Accurate Mass Screening Workflows for the Analysis of Novel Psychoactive Substances Accurate Mass Screening Workflows for the Analysis of Novel Psychoactive Substances TripleTOF 5600 + LC/MS/MS System with MasterView Software Adrian M. Taylor AB Sciex Concord, Ontario (Canada) Overview

More information

Data Exploration Data Visualization

Data Exploration Data Visualization Data Exploration Data Visualization What is data exploration? A preliminary exploration of the data to better understand its characteristics. Key motivations of data exploration include Helping to select

More information

Thermo Scientific PepFinder Software A New Paradigm for Peptide Mapping

Thermo Scientific PepFinder Software A New Paradigm for Peptide Mapping Thermo Scientific PepFinder Software A New Paradigm for Peptide Mapping For Conclusive Characterization of Biologics Deep Protein Characterization Is Crucial Pharmaceuticals have historically been small

More information

DYNAMIC LIGHT SCATTERING COMMON TERMS DEFINED

DYNAMIC LIGHT SCATTERING COMMON TERMS DEFINED DYNAMIC LIGHT SCATTERING COMMON TERMS DEFINED Abstract: There are a number of sources of information that give a mathematical description of the terms used in light scattering. However, these will not

More information

La Protéomique : Etat de l art et perspectives

La Protéomique : Etat de l art et perspectives La Protéomique : Etat de l art et perspectives Odile Schiltz Institut de Pharmacologie et de Biologie Structurale CNRS, Université de Toulouse, Odile.Schiltz@ipbs.fr Protéomique et Spectrométrie de Masse

More information

Brochure More information from http://www.researchandmarkets.com/reports/2172993/

Brochure More information from http://www.researchandmarkets.com/reports/2172993/ Brochure More information from http://www.researchandmarkets.com/reports/2172993/ Proteomics Today. Protein Assessment and Biomarkers Using Mass Spectrometry, 2D Electrophoresis,and Microarray Technology.

More information

F321 THE STRUCTURE OF ATOMS. ATOMS Atoms consist of a number of fundamental particles, the most important are... in the nucleus of an atom

F321 THE STRUCTURE OF ATOMS. ATOMS Atoms consist of a number of fundamental particles, the most important are... in the nucleus of an atom Atomic Structure F32 TE STRUCTURE OF ATOMS ATOMS Atoms consist of a number of fundamental particles, the most important are... Mass / kg Charge / C Relative mass Relative Charge PROTON NEUTRON ELECTRON

More information

Introduction to Proteomics

Introduction to Proteomics Introduction to Proteomics Åsa Wheelock, Ph.D. Division of Respiratory Medicine & Karolinska Biomics Center asa.wheelock@ki.se In: Systems Biology and the Omics Cascade, Karolinska Institutet, June 9-13,

More information

STATS8: Introduction to Biostatistics. Data Exploration. Babak Shahbaba Department of Statistics, UCI

STATS8: Introduction to Biostatistics. Data Exploration. Babak Shahbaba Department of Statistics, UCI STATS8: Introduction to Biostatistics Data Exploration Babak Shahbaba Department of Statistics, UCI Introduction After clearly defining the scientific problem, selecting a set of representative members

More information

In-Depth Qualitative Analysis of Complex Proteomic Samples Using High Quality MS/MS at Fast Acquisition Rates

In-Depth Qualitative Analysis of Complex Proteomic Samples Using High Quality MS/MS at Fast Acquisition Rates In-Depth Qualitative Analysis of Complex Proteomic Samples Using High Quality MS/MS at Fast Acquisition Rates Using the Explore Workflow on the AB SCIEX TripleTOF 5600 System A major challenge in proteomics

More information

Session 1. Course Presentation: Mass spectrometry-based proteomics for molecular and cellular biologists

Session 1. Course Presentation: Mass spectrometry-based proteomics for molecular and cellular biologists Program Overview Session 1. Course Presentation: Mass spectrometry-based proteomics for molecular and cellular biologists Session 2. Principles of Mass Spectrometry Session 3. Mass spectrometry based proteomics

More information

Using MATLAB: Bioinformatics Toolbox for Life Sciences

Using MATLAB: Bioinformatics Toolbox for Life Sciences Using MATLAB: Bioinformatics Toolbox for Life Sciences MR. SARAWUT WONGPHAYAK BIOINFORMATICS PROGRAM, SCHOOL OF BIORESOURCES AND TECHNOLOGY, AND SCHOOL OF INFORMATION TECHNOLOGY, KING MONGKUT S UNIVERSITY

More information

Statistical Analysis. NBAF-B Metabolomics Masterclass. Mark Viant

Statistical Analysis. NBAF-B Metabolomics Masterclass. Mark Viant Statistical Analysis NBAF-B Metabolomics Masterclass Mark Viant 1. Introduction 2. Univariate analysis Overview of lecture 3. Unsupervised multivariate analysis Principal components analysis (PCA) Interpreting

More information

An Introduction to Point Pattern Analysis using CrimeStat

An Introduction to Point Pattern Analysis using CrimeStat Introduction An Introduction to Point Pattern Analysis using CrimeStat Luc Anselin Spatial Analysis Laboratory Department of Agricultural and Consumer Economics University of Illinois, Urbana-Champaign

More information

PeptidomicsDB: a new platform for sharing MS/MS data.

PeptidomicsDB: a new platform for sharing MS/MS data. PeptidomicsDB: a new platform for sharing MS/MS data. Federica Viti, Ivan Merelli, Dario Di Silvestre, Pietro Brunetti, Luciano Milanesi, Pierluigi Mauri NETTAB2010 Napoli, 01/12/2010 Mass Spectrometry

More information

The Open2Dprot Proteomics Project for n-dimensional Protein Expression Data Analysis

The Open2Dprot Proteomics Project for n-dimensional Protein Expression Data Analysis The Open2Dprot Proteomics Project for n-dimensional Protein Expression Data Analysis http://open2dprot.sourceforge.net/ Revised 2-05-2006 * (cf. 2D-LC) Introduction There is a need for integrated proteomics

More information

Un (bref) aperçu des méthodes et outils de fouilles et de visualisation de données «omics»

Un (bref) aperçu des méthodes et outils de fouilles et de visualisation de données «omics» Un (bref) aperçu des méthodes et outils de fouilles et de visualisation de données «omics» Workshop «Protéomique & Maladies rares» 25 th September 2012, Paris yves.vandenbrouck@cea.fr CEA Grenoble irtsv

More information

Analysis of Liquid Samples on the Agilent GC-MS

Analysis of Liquid Samples on the Agilent GC-MS Analysis of Liquid Samples on the Agilent GC-MS I. Sample Preparation A. Solvent selection. 1. Boiling point. Low boiling solvents (i.e. b.p. < 30 o C) may be problematic. High boiling solvents (b.p. >

More information

Mass Spectra Alignments and their Significance

Mass Spectra Alignments and their Significance Mass Spectra Alignments and their Significance Sebastian Böcker 1, Hans-Michael altenbach 2 1 Technische Fakultät, Universität Bielefeld 2 NRW Int l Graduate School in Bioinformatics and Genome Research,

More information

Section 1.3 Exercises (Solutions)

Section 1.3 Exercises (Solutions) Section 1.3 Exercises (s) 1.109, 1.110, 1.111, 1.114*, 1.115, 1.119*, 1.122, 1.125, 1.127*, 1.128*, 1.131*, 1.133*, 1.135*, 1.137*, 1.139*, 1.145*, 1.146-148. 1.109 Sketch some normal curves. (a) Sketch

More information

Pesticide Analysis by Mass Spectrometry

Pesticide Analysis by Mass Spectrometry Pesticide Analysis by Mass Spectrometry Purpose: The purpose of this assignment is to introduce concepts of mass spectrometry (MS) as they pertain to the qualitative and quantitative analysis of organochlorine

More information

The accurate calibration of all detectors is crucial for the subsequent data

The accurate calibration of all detectors is crucial for the subsequent data Chapter 4 Calibration The accurate calibration of all detectors is crucial for the subsequent data analysis. The stability of the gain and offset for energy and time calibration of all detectors involved

More information

Comparative genomic hybridization Because arrays are more than just a tool for expression analysis

Comparative genomic hybridization Because arrays are more than just a tool for expression analysis Microarray Data Analysis Workshop MedVetNet Workshop, DTU 2008 Comparative genomic hybridization Because arrays are more than just a tool for expression analysis Carsten Friis ( with several slides from

More information

Protein Protein Interaction Networks

Protein Protein Interaction Networks Functional Pattern Mining from Genome Scale Protein Protein Interaction Networks Young-Rae Cho, Ph.D. Assistant Professor Department of Computer Science Baylor University it My Definition of Bioinformatics

More information

Signal to Noise Instrumental Excel Assignment

Signal to Noise Instrumental Excel Assignment Signal to Noise Instrumental Excel Assignment Instrumental methods, as all techniques involved in physical measurements, are limited by both the precision and accuracy. The precision and accuracy of a

More information

Introduction to Pattern Recognition

Introduction to Pattern Recognition Introduction to Pattern Recognition Selim Aksoy Department of Computer Engineering Bilkent University saksoy@cs.bilkent.edu.tr CS 551, Spring 2009 CS 551, Spring 2009 c 2009, Selim Aksoy (Bilkent University)

More information

Choices, choices, choices... Which sequence database? Which modifications? What mass tolerance?

Choices, choices, choices... Which sequence database? Which modifications? What mass tolerance? Optimization 1 Choices, choices, choices... Which sequence database? Which modifications? What mass tolerance? Where to begin? 2 Sequence Databases Swiss-prot MSDB, NCBI nr dbest Species specific ORFS

More information

Correlation of the Mass Spectrometric Analysis of Heat-Treated Glutaraldehyde Preparations to Their 235nm / 280 nm UV Absorbance Ratio

Correlation of the Mass Spectrometric Analysis of Heat-Treated Glutaraldehyde Preparations to Their 235nm / 280 nm UV Absorbance Ratio an ABC Laboratories white paper Correlation of the Mass Spectrometric Analysis of Heat-Treated Glutaraldehyde Preparations to Their 235nm / 280 nm UV Absorbance Ratio A. Sen, R. Dunphy, L. Rosik Analytical

More information

Statistical Analysis Strategies for Shotgun Proteomics Data

Statistical Analysis Strategies for Shotgun Proteomics Data Statistical Analysis Strategies for Shotgun Proteomics Data Ming Li, Ph.D. Cancer Biostatistics Center Vanderbilt University Medical Center Ayers Institute Biomarker Pipeline normal shotgun proteome analysis

More information

DESCRIPTIVE STATISTICS. The purpose of statistics is to condense raw data to make it easier to answer specific questions; test hypotheses.

DESCRIPTIVE STATISTICS. The purpose of statistics is to condense raw data to make it easier to answer specific questions; test hypotheses. DESCRIPTIVE STATISTICS The purpose of statistics is to condense raw data to make it easier to answer specific questions; test hypotheses. DESCRIPTIVE VS. INFERENTIAL STATISTICS Descriptive To organize,

More information

HISTOGRAMS, CUMULATIVE FREQUENCY AND BOX PLOTS

HISTOGRAMS, CUMULATIVE FREQUENCY AND BOX PLOTS Mathematics Revision Guides Histograms, Cumulative Frequency and Box Plots Page 1 of 25 M.K. HOME TUITION Mathematics Revision Guides Level: GCSE Higher Tier HISTOGRAMS, CUMULATIVE FREQUENCY AND BOX PLOTS

More information

Supporting Information

Supporting Information Supporting Information Wiley-VCH 27 69451 Weinheim, Germany Blockage of sirna Binding to a p19 Viral Suppressor of RNA Silencing by Cysteine Alkylation Selena M. Sagan, Roger Koukiekolo, Elisabeth Rodgers,

More information

Tutorial for proteome data analysis using the Perseus software platform

Tutorial for proteome data analysis using the Perseus software platform Tutorial for proteome data analysis using the Perseus software platform Laboratory of Mass Spectrometry, LNBio, CNPEM Tutorial version 1.0, January 2014. Note: This tutorial was written based on the information

More information

13C NMR Spectroscopy

13C NMR Spectroscopy 13 C NMR Spectroscopy Introduction Nuclear magnetic resonance spectroscopy (NMR) is the most powerful tool available for structural determination. A nucleus with an odd number of protons, an odd number

More information

What Do We Learn about Hepatotoxicity Using Coumarin-Treated Rat Model?

What Do We Learn about Hepatotoxicity Using Coumarin-Treated Rat Model? What Do We Learn about Hepatotoxicity Using Coumarin-Treated Rat Model? authors M. David Ho 1, Bob Xiong 1, S. Stellar 2, J. Proctor 2, J. Silva 2, H.K. Lim 2, Patrick Bennett 1, and Lily Li 1 Tandem Labs,

More information

AMD Analysis & Technology AG

AMD Analysis & Technology AG AMD Analysis & Technology AG Application Note 120419 Author: Karl-Heinz Maurer APCI-MS Trace Analysis of volatile organic compounds in ambient air A) Introduction Trace analysis of volatile organic compounds

More information

Chapter 13 Spectroscopy NMR, IR, MS, UV-Vis

Chapter 13 Spectroscopy NMR, IR, MS, UV-Vis Chapter 13 Spectroscopy NMR, IR, MS, UV-Vis Main points of the chapter 1. Hydrogen Nuclear Magnetic Resonance a. Splitting or coupling (what s next to what) b. Chemical shifts (what type is it) c. Integration

More information

Accurate calibration of on-line Time of Flight Mass Spectrometer (TOF-MS) for high molecular weight combustion product analysis

Accurate calibration of on-line Time of Flight Mass Spectrometer (TOF-MS) for high molecular weight combustion product analysis Accurate calibration of on-line Time of Flight Mass Spectrometer (TOF-MS) for high molecular weight combustion product analysis B. Apicella*, M. Passaro**, X. Wang***, N. Spinelli**** mariadellarcopassaro@gmail.com

More information

Segmentation and Automatic Descreening of Scanned Documents

Segmentation and Automatic Descreening of Scanned Documents Segmentation and Automatic Descreening of Scanned Documents Alejandro Jaimes a, Frederick Mintzer b, A. Ravishankar Rao b and Gerhard Thompson b a Columbia University b IBM T.J. Watson Research Center

More information

Proteomics in Practice

Proteomics in Practice Reiner Westermeier, Torn Naven Hans-Rudolf Höpker Proteomics in Practice A Guide to Successful Experimental Design 2008 Wiley-VCH Verlag- Weinheim 978-3-527-31941-1 Preface Foreword XI XIII Abbreviations,

More information

OpenMS A Framework for Quantitative HPLC/MS-Based Proteomics

OpenMS A Framework for Quantitative HPLC/MS-Based Proteomics OpenMS A Framework for Quantitative HPLC/MS-Based Proteomics Knut Reinert 1, Oliver Kohlbacher 2,Clemens Gröpl 1, Eva Lange 1, Ole Schulz-Trieglaff 1,Marc Sturm 2 and Nico Pfeifer 2 1 Algorithmische Bioinformatik,

More information

0 10 20 30 40 50 60 70 m/z

0 10 20 30 40 50 60 70 m/z Mass spectrum for the ionization of acetone MS of Acetone + Relative Abundance CH 3 H 3 C O + M 15 (loss of methyl) + O H 3 C CH 3 43 58 0 10 20 30 40 50 60 70 m/z It is difficult to identify the ions

More information

Tuning & Mass Calibration

Tuning & Mass Calibration Tuning & Mass Calibration 1 1 The Sample List Sample List Name Project Name 2 The sample list is the top level screen in the TurboMass Gold Software. Data storage is set up in PROJECT files and within

More information

Analyst 1.6 Software. Software Reference Guide

Analyst 1.6 Software. Software Reference Guide Analyst 1.6 Software Software Reference Guide Release Date: August 2011 This document is provided to customers who have purchased AB SCIEX equipment to use in the operation of such AB SCIEX equipment.

More information

Supplemental Online Material for:

Supplemental Online Material for: Supplemental Online Material for: Fluorescent biological aerosol particle concentrations and size distributions measured with an ultraviolet aerodynamic particle sizer (UV-APS) in central Europe J. A.

More information

Appendix 5 Overview of requirements in English

Appendix 5 Overview of requirements in English Appendix 5 Overview of requirements in English This document is a translation of Appendix 4 (Bilag 4) section 2. This translation is meant as a service for the bidder and in case of any differences between

More information

Secondary Ion Mass Spectrometry

Secondary Ion Mass Spectrometry Secondary Ion Mass Spectrometry A PRACTICAL HANDBOOK FOR DEPTH PROFILING AND BULK IMPURITY ANALYSIS R. G. Wilson Hughes Research Laboratories Malibu, California F. A. Stevie AT&T Bell Laboratories Allentown,

More information

How To Use An Ionsonic Microscope

How To Use An Ionsonic Microscope Sample Analysis Design Element2 - Basic Software Concepts Scan Modes Magnetic Scan (BScan): the electric field is kept constant and the magnetic field is varied as a function of time the BScan is suitable

More information

Application Report. Propeller Blade Inspection Station

Application Report. Propeller Blade Inspection Station 34935 SE Douglas Street, Suite, Snoqualmie, WA 9874 Ph: 425-396-5577 Fax: 425-396-586 Application Report Propeller Blade Inspection Station Prepared By Kyle Johnston, Ph. D. Metron Systems Inc.5.5 3 2.5

More information

Metabolomics Software Tools. Xiuxia Du, Paul Benton, Stephen Barnes

Metabolomics Software Tools. Xiuxia Du, Paul Benton, Stephen Barnes Metabolomics Software Tools Xiuxia Du, Paul Benton, Stephen Barnes Outline 2 Introduction Software Tools for LC-MS metabolomics Software Tools for GC-MS metabolomics Software Tools for Statistical Analysis

More information

Jitter Measurements in Serial Data Signals

Jitter Measurements in Serial Data Signals Jitter Measurements in Serial Data Signals Michael Schnecker, Product Manager LeCroy Corporation Introduction The increasing speed of serial data transmission systems places greater importance on measuring

More information

SSO Transmission Grating Spectrograph (TGS) User s Guide

SSO Transmission Grating Spectrograph (TGS) User s Guide SSO Transmission Grating Spectrograph (TGS) User s Guide The Rigel TGS User s Guide available online explains how a transmission grating spectrograph (TGS) works and how efficient they are. Please refer

More information

Mass Frontier Version 7.0

Mass Frontier Version 7.0 Mass Frontier Version 7.0 User Guide XCALI-97349 Revision A February 2011 2011 Thermo Fisher Scientific Inc. All rights reserved. Mass Frontier, Mass Frontier Server Manager, Fragmentation Library, Spectral

More information

Tools for Viewing and Quality Checking ARM Data

Tools for Viewing and Quality Checking ARM Data Tools for Viewing and Quality Checking ARM Data S. Bottone and S. Moore Mission Research Corporation Santa Barbara, California Introduction Mission Research Corporation (MRC) is developing software tools

More information

Nonlinear Iterative Partial Least Squares Method

Nonlinear Iterative Partial Least Squares Method Numerical Methods for Determining Principal Component Analysis Abstract Factors Béchu, S., Richard-Plouet, M., Fernandez, V., Walton, J., and Fairley, N. (2016) Developments in numerical treatments for

More information

Application of Automated Data Collection to Surface-Enhanced Raman Scattering (SERS)

Application of Automated Data Collection to Surface-Enhanced Raman Scattering (SERS) Application Note: 52020 Application of Automated Data Collection to Surface-Enhanced Raman Scattering (SERS) Timothy O. Deschaines, Ph.D., Thermo Fisher Scientific, Madison, WI, USA Key Words Array Automation

More information

Challenges in Computational Analysis of Mass Spectrometry Data for Proteomics

Challenges in Computational Analysis of Mass Spectrometry Data for Proteomics Ma B. Challenges in computational analysis of mass spectrometry data for proteomics. SCIENCE AND TECHNOLOGY 25(1): 1 Jan. 2010 JOURNAL OF COMPUTER Challenges in Computational Analysis of Mass Spectrometry

More information