Tutorial 5: Statistical analysis of DIA data

Size: px
Start display at page:

Download "Tutorial 5: Statistical analysis of DIA data"

Transcription

1 Tutrial 5: Statistical analysis f DIA data 1. Intrductin One f the mst frequently asked questins is: Hw t get a prtein matrix t answer a particular bilgical questin? Nwadays there are several nice sftware tls available that can help t reach this gal. Tw f them are quite advanced: a) MSstats which can als be used fr DDA and SRM analysis b) mapdia In this Tutrial, yu will learn hw t prcess yur utput f the OpenSWATH pyprphet TRIC alignment and hw t extract bilgical infrmatin. We will fcus n MSstats in R. In principle MSstats can als be used within Skyline as a plugin. MSstats is cmpsed f 4 individual parts: a) Data prcessing and Quality cntrl b) Grup cmparisn c) Prtein quantificatin d) Design sample size Tip! Fr mre detailed infrmatin abut functinality and ptins, visit msstats.rg In rder t feed ur data int MSstats we need t mdify and refrmat the utput f the TRIC alignment. This can easily be dne with the package SWATH2stats. SWATH2stats prvides functins t anntate the data with infrmatin abut bilgical replicate and cnditin and easily cnvert the data int the crrect frmat fr varius dwnstream sftwares as MSstats r mapdia. Additinally, it ffers multiple ways t filter the data, fr example t btain a specific FDR. Tip! Please find mre detailed infrmatin abut SWATH2stats at 1

2 2. Prepare data fr MSstats Start by pening Rstudi. G t File New File R Script. Nte! In the previus Tutrials we have used the Terminal in the lwer left crner. Make sure yu are using the R cnsle nw. R script list f variables plts/help/library R cnsle First define the wrking directry. This will avid lng paths when lading and saving data. G t Sessin Set wrking directry Chse directry and search fr yur flder Tutrial5_Statistics. Nte! Alternatively, yu can als set the directry directly in the cmmand line by cpying this cmmand in yur script and then run it: setwd('c:/dia_curse/tutrial5_statistics/') Nw lad in the required packages. Nte! Alternatively, yu can als search the respective packages in the lwer bx n the right side f R studi. library(swath2stats) library(msstats) Lad in the OpenSWATH utput. data <- read.delim2( 'C:/DIA_Curse/Tutrial4_OpenSWATH/aligned.tsv', dec='.', sep='\t', header=true, stringsasfactrs = FALSE) 2

3 Nte! If yu wrk n a UNIX envirnment yu can use fread() frm the package data.table which reads in the data similarly t read.delim2, but faster. The class f the data will be data.table instead f a data.frame. Therefre, yu need t cnvert it int the crrect class. data <- as.data.frame(data) sep defines the separatr between clumns, and dec the decimal separatr. The first line in the OpenSWATH utput cntains clumn names, therefre header=true. read.delim2 has the disadvantage t transfrm clumns int factrs, that are hard t wrk with. Therefre, we set stringsasfactrs = FALSE t avid this. Check the help f read.delim2() fr mre infrmatin by typing?read.delim2 Tip! Just start typing the beginning f the file name and then press the tab key and the name will be cmpleted autmatically. This will help t avid typs. Due t the new frmat f ur data, we need t adjust sme clumn names in rder t be recgnized in the fllwing prcedure. names(data)[names(data) == "FullUniMdPeptideName"] <- "FullPeptideName" names(data)[names(data) == "aggr_fragment_anntatin"] <- "aggr_fragment_anntatin" names(data)[names(data) == "aggr_peak_area"] <- "aggr_peak_area" Let s check the dimensins f ur data. dim(data) Nte! R always prints number f rws first and then number f clumns. Tip! Click n the variable data in the tp-right windw f R studi, t have a glance in the data. A windw will appear abve yur R cnsle. Explre the data structure and make yurself familiar with the numerus clumns. As yu can see n the R cnsle n the bttm left, the text View(data) appeared. This means that yu can als type View(data) t pen the viewing panel. Nte! Many clumns cntain variables frm the mdel built in OpenSWATH. We d nt need mst f them in ur further statistical analysis. Befre we apply this filter n the actual data, we reduce the number f clumns t the nes we really need fr the further analysis. data.reduced <- reduce_openswath_utput(data) View(data.reduced) Tip! Check hw the data lks nw by typing View(data.reduced) r by clicking n data.reduced in the tp right Envirnment panel. We als want t get rid f irt peptides that are still in the data, we nly needed them fr RT calibratin (as yu hpefully remember ). Additinally we will filter ut all nn-prtetypic peptides. 3

4 data.reduced <- data.reduced[grep( "irt", data.reduced$prteinname, invert = TRUE),] data.reduced <- data.reduced[grep( ";", data.reduced$prteinname, invert = TRUE),] Nte! The grep cmmand searches the expressin irt in the clumn data.reduced$prteinname and invert=true means that the hits are remved frm the table. We als need t anntate the data with additinal infrmatin. In yur flder Tutrial5_Statistics yu can find a file called DIA_curse_anntatin.txt Open this with Excel and investigate what infrmatin yu can find there. Then lad in the anntatin file int R studi. Nte! Remember t change the filename if yu have used the QE data. anntatin.file <- read.delim( file = 'DIA_Curse_antatin_TTOF.txt', sep='\t', header=true) Tip! Check if the data was crrectly laded by clicking n anntatin.file in the data verview again. Nw anntate the data: data.anntated <- sample_anntatin(data.reduced, anntatin.file) In SWATH2stats we can als have a quick lk fr the number f prteins and peptides in each sample. cunt_analytes(data.anntated) We can see that there are slight differences between the samples, but nthing wrrying. If yu wuld see here a sample that is shwing far less prteins than ther samples, yu might cnsider nt using this sample fr yur analysis. Cautin! The screenshts yu see are representing the results using the utput that was generated with the DDA library (Tutrial 1). If yu used the DIA-UMPIRE library yu will have different numbers. We can nw filter ur data set. We want t make sure that we just use cmplete bservatins. 4

5 data.filtered <- filter_mscre_cnditin( data.anntated, mscre=0.01, n.replica=3) Nte! This functin filters the data based n cmpleteness f the measured transitin grups amng samples. We use all 6 samples (1 = 100%) here that need t pass the mscre f The mscre crrespnds t the q-value, which means that filtering fr 0.01 results in a table with 1% FDR at the transitin level. R tells yu here again, that it is keeping 92 % f the data. In ttal it deletes 2180 transitin grups. Again we shuld check hw the number f peptides/prteins changed after filtering. cunt_analytes(data.filtered) T feed the data int MSstats (r mapdia) we need t split the transitin grups int single transitins. data.transitin <- disaggregate(data.filtered) In the last step the clumns are renamed t match the requirements fr MSstats. MSstats.input <- cnvert4msstats(data.transitin) Nte! Dn t wrry abut the warning messages at this stage. Save the prduced MSstats input and the intermediate data. save(data.anntated, data.reduced, data.filtered, data.transitin, file="swath2stats_wrkflw_ttof.rdata") save(msstats.input, file="msstats_input_ttof.rdata") 5

6 3. MSstats analysis 3.1. Data prcessing and Quality cntrl First run the prcessing functin t lg2-transfrm. We d nt nrmalize the data because we expect varying abundances fr the prteins, peptides and transitins f E.cli and yeast. We will later check fr equal intensity distributins and whether anther type f nrmalizatin is necessary in the QCplts. data.prcessed <- dataprcess(msstats.input, nrmalizatin = FALSE, summarymethd = "TMP", censredint = "NA", cutffcensred = "minfeature", MBimpute = FALSE) The summary methd "TMP" stands fr Tukey s median plish which is a rbust parameter estimatin methd with median acrss rws and clumns. censredint = "NA" assumes that missing values are censred, meaning belw the limit f detectin. Because MBimpute is false, missing values will get the minimum value fr each feature. Nte! The result f this functin will be a large list with several variables frm which data.prcessed$prcesseddata cntains ur prcessed data set. Nw we want t check fr ptential quality issues. Therefre, we will make a quality cntrl plt. dataprcessplts( data.prcessed, type = "QCPlt", legend.size = 4, which.prtein = "sp P06733 ENOA_HUMAN", address = FALSE) Nte! As we have data fr thusands f prteins, pltting all f them wuld exceed the time we have in this tutrial. Therefre, the ptin which.prtein defines which prteins shuld be pltted with either prtein number r prtein name. In this and the fllwing plts we fcus making the plt fr 1 randm example prtein. With the ptin address = FALSE, plts will be shwn in the graphical panel, but nt saved in a file. 6

7 As yu can see the distributins f the lg2 prtein intensities in the different samples are very similar. Fr the example human prtein this is als the case. We can g ahead with ur analysis. Questin: What d yu expect this plt t lk like fr a yeast r E.cli prtein? Nte! In RStudi yu can see the plts in the lwer right crner. Using the arrws at the tp left yu can navigate back and frth t lk at the generated plts. If yu want t save a plt, click n the drp-dwn Exprt buttn. Additinally, we can als plt the peptide prfiles. dataprcessplts( data.prcessed, type = "PrfilePlt", featurename = "Peptide", legend.size = 4, riginalplt= TRUE, summaryplt = TRUE, which.prtein = "sp P06733 ENOA_HUMAN", address = FALSE) In the first prfile plt yu can see the transitins f several peptides (black, red and green) f the human example prtein (yu will need t click the back arrw in the pltting windw t see this). The figure n the right shws the prfile plt where the dtted red line indicates the prtein summarizatin. The last plt summarizes mean f lg2-intensities with cnfidence interval fr each cnditin per prtein dataprcessplts( data.prcessed, type = "Cnditinplt", which.prtein = "sp P06733 ENOA_HUMAN", address = FALSE) 7

8 Here yu can see the cnditin plt f ur human example prtein. Des this lk as yu wuld expect? Select ther prteins r a few randm numbers and check hw the different plts yu generated abve lk fr different prteins frm different rganisms. Fr this, yu have t exchange which.prtein = "sp P06733 ENOA_HUMAN" by any ther name e.g. which.prtein = "tr C8ZBP1 C8ZBP1_YEAS8" r which.prtein = "sp P29745 PEPT_ECOLI" fr TTOF r "sp P25738 MSYB_ECOLI" fr QE Questins: Can yu already identify trends? D yu see what yu wuld expect frm ur sample? As usual, save the prcessed data: save(data.prcessed, file="msstats_prcessed_ttof.rdata") 3.2. Grup Cmparisn T perfrm a grup cmparisn, we first need t define what shuld cmpared. We wuld like t cmpare Mix A with Mix B. Fr each f these grups we have 3 samples. In rder t define the cmparisn matrix in the crrect rder we will check the rder f the grup levels, which R autmatically assigns alphanumerically. levels(data.prcessed$prcesseddata$group_original) Grups are A and B and we wuld like t calculate the changes in B vs. A Cautin! If yu have mre than 2 grups yu will need t design the cmparisn matrix differently. Fr this check the manual at msstats.rg cmparisn <- matrix(c(-1, 1), nrw=1) rwnames(cmparisn) <- "B vs. A" 8

9 Perfrm the grup cmparisn. result.grupcmparisn <- grupcmparisn( cntrast.matrix = cmparisn, data = data.prcessed) The result is a list cnsisting f several variables. T check the grup cmparisn utcme, we need result.grupcmparisn$cmparisnresult Nw we plt ur grup cmparisn result. MSstats als ffers an easy slutin fr this. grupcmparisnplts(result.grupcmparisn$cmparisnresult, type = "VlcanPlt", sig = 0.05, FCcutff = 2, PrteinName = FALSE, address = FALSE) Nte! With sig we define the significance level and with FCcutff the desired fld change. Questin! Can yu distinguish the different species? Des the significance level and fld change cutff make sense in ur case? 9

10 T make the bilgy behind ur data clearer we will make anther Vlcan plt with prteins clred by species. with( result.grupcmparisn$cmparisnresult, plt( lg2fc, -lg10(adj.pvalue), pch=20, main="mix B vs. Mix A", xlim=c(-3, 3), ylim=c(0,3))) with( subset(result.grupcmparisn$cmparisnresult, grepl("human", Prtein)), pints(lg2fc, -lg10(adj.pvalue), pch=20, cl="aquamarine4")) with( subset(result.grupcmparisn$cmparisnresult, grepl("yeas8", Prtein)), pints(lg2fc, -lg10(adj.pvalue), pch=20, cl="chclate3")) with( subset(result.grupcmparisn$cmparisnresult, grepl("ecoli", Prtein)), pints(lg2fc, -lg10(adj.pvalue), pch=20, cl="slateblue2")) legend("tpright", legend = c("human 1:1", "Yeast 2:1", "E.cli 1:4"), fill = c("aquamarine4", "chclate3", "slateblue2"), cl = NULL) Nte! Dn t wrry if yu dn t fully understand hw this secnd vlcan plt was created this is nly t make yu see the nice difference between the rganisms and is specific t ur exemplary dataset 10

11 Yu can always g back t the plts we prduced earlier, by clicking the little arrw abve the plt in the Plts tab. If yu want t save a plt, click Exprt in the Plts tab and save the plt in yur favrite frmat. If yu wuld like t further wrk n the grupcmparsin result utside f R, yu can als exprt the table: write.table(result.grupcmparisn$cmparisnresult, file = "grupcmparisn_result_ttof.tsv", qute = FALSE, rw.names = FALSE, sep = "\t") Nte! qute = FALSE will avid that all entries will be written in qutatin marks and rw.names = FALSE avids having the rwname-numbers being written in ur file Quantificatin In rder t perfrm ther dwnstream analysis, it is useful t have a matrix f prtein intensities fr each sample. Perfrm a prtein quantificatin. quantificatin.result <- quantificatin(data.prcessed, type = "Sample", frmat = "matrix") Again we can write the table int a file t use it utside the R envirnment. write.table(quantificatin.result, file = "quantificatin_result_ttof.tsv", qute = FALSE, rw.names = FALSE, sep = "\t") With this data, yu can nw perfrm ther dwnstream analyses, like classificatin r regressin analyses. In ur tutrial, this wuld exceed the time we have and wuld neither fit the specific needs yu will have with yur wn data Design sample size Fr future experiments it might be useful t estimate the required samples r t predict the pwer a specific analysis will have if yu are restricted in the number f replicates yu use. First perfrm an anlysis f the required sample size if yu wish fr a specific pwer and fld change f yur grup cmparisn. result.sample <- designsamplesize(result.grupcmparisn$fittedmdel, numsamples = TRUE, desiredfc = c(1.25, 3), FDR = 0.05, pwer = 0.8) 11

12 Nw visualize the result in a plt: designsamplesizeplts(result.sample) Nw d the same analysis the ther way arund and ask hw much pwer yur analysis will have fr a given sample size: result.pwer <- designsamplesize(result.grupcmparisn$fittedmdel, numsamples = 3, desiredfc = c(1.25, 3), FDR = 0.05, pwer = TRUE) Check again the result in a plt: designsamplesizeplts(result.pwer) 12

13 We are nw finished with the statistical data analysis f ur 6 SWATH runs. As yu culd see, we were able t very well separate the prteins cming frm the different species. Well dne! Yu managed t get thrugh all f the tutrials. We hpe that yu learned hw t build a library based n DDA and DIA data, perfrm an OpenSWATH analyses, fllwed by pyprphet scring and TRIC alignment and finally hw t use this utput t extract bilgical infrmatin. We als hpe yu can apply the new knwledge nw n yur wn data and wish yu a lt f fun with this. We wuld like t thank SystemsX fr supprting the Zurich. 13

Tutorial 5: Statistical analysis of DIA data

Tutorial 5: Statistical analysis of DIA data DIA / SWATH Curse 2017 Tutrial 5 Statistical analysis f DIA data Tutrial 5: Statistical analysis f DIA data 1. Intrductin One f the mst frequently asked questins is: Hw t get a prtein matrix t answer a

More information

Tutorial 5: Retention time scheduling

Tutorial 5: Retention time scheduling SRM Curse 2014 Tutrial 5 - Scheduling Tutrial 5: Retentin time scheduling The term scheduled SRM refers t measuring SRM transitins nt ver the whle chrmatgraphic gradient but nly fr a shrt time windw arund

More information

Tutorial 3: Library Generation with DIA-UMPIRE

Tutorial 3: Library Generation with DIA-UMPIRE Tutrial 3: Library Generatin with DIA-UMPIRE In this tutrial, we will use the java-based tl DIA-Umpire t perfrm untargeted analysis f DIA data. We will take tw DIA files f the LFQbench dataset (see tutrial

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

INSTALLING CCRQINVOICE

INSTALLING CCRQINVOICE INSTALLING CCRQINVOICE Thank yu fr selecting CCRQInvice. This dcument prvides a quick review f hw t install CCRQInvice. Detailed instructins can be fund in the prgram manual. While this may seem like a

More information

Exercises: Plotting Complex Figures Using R

Exercises: Plotting Complex Figures Using R Exercises: Pltting Cmplex Figures Using R Versin 2017-11 Exercises: Pltting Cmplex Figures in R 2 Licence This manual is 2016-17, Simn Andrews. This manual is distributed under the creative cmmns Attributin-Nn-Cmmercial-Share

More information

Relius Documents ASP Checklist Entry

Relius Documents ASP Checklist Entry Relius Dcuments ASP Checklist Entry Overview Checklist Entry is the main data entry interface fr the Relius Dcuments ASP system. The data that is cllected within this prgram is used primarily t build dcuments,

More information

BI Publisher TEMPLATE Tutorial

BI Publisher TEMPLATE Tutorial PepleSft Campus Slutins 9.0 BI Publisher TEMPLATE Tutrial Lessn T2 Create, Frmat and View a Simple Reprt Using an Existing Query with Real Data This tutrial assumes that yu have cmpleted BI Publisher Tutrial:

More information

Access 2000 Queries Tips & Techniques

Access 2000 Queries Tips & Techniques Access 2000 Queries Tips & Techniques Query Basics The query is the basic tl that Access prvides fr retrieving infrmatin frm yur database. Each query functins like a questin that can be asked immediately

More information

Lesson 4 Advanced Transforms

Lesson 4 Advanced Transforms Lessn 4 Advanced Transfrms Chapter 4B Extract, Split and replace 10 Minutes Chapter Gals In this Chapter, yu will: Understand hw t use the fllwing transfrms: Replace Extract Split Chapter Instructins YOUR

More information

Exporting and Importing the Blackboard Vista Grade Book

Exporting and Importing the Blackboard Vista Grade Book Exprting and Imprting the Blackbard Vista Grade Bk Yu can use the Blackbard Vista Grade Bk with a spreadsheet prgram, such as Micrsft Excel, in a number f different ways. Many instructrs wh have used Excel

More information

Test Pilot User Guide

Test Pilot User Guide Test Pilt User Guide Adapted frm http://www.clearlearning.cm Accessing Assessments and Surveys Test Pilt assessments and surveys are designed t be delivered t anyne using a standard web brwser and thus

More information

Word 2007 The Ribbon, the Mini toolbar, and the Quick Access Toolbar

Word 2007 The Ribbon, the Mini toolbar, and the Quick Access Toolbar Wrd 2007 The Ribbn, the Mini tlbar, and the Quick Access Tlbar In this practice yu'll get the hang f using the new Ribbn, and yu'll als master the use f the helpful cmpanin tls, the Mini tlbar and the

More information

These tasks can now be performed by a special program called FTP clients.

These tasks can now be performed by a special program called FTP clients. FTP Cmmander FAQ: Intrductin FTP (File Transfer Prtcl) was first used in Unix systems a lng time ag t cpy and mve shared files. With the develpment f the Internet, FTP became widely used t uplad and dwnlad

More information

Exercise 4: Working with tabular data Exploring infant mortality in the 1900s

Exercise 4: Working with tabular data Exploring infant mortality in the 1900s Exercise 4: Wrking with tabular data Explring infant mrtality in the 1900s Backgrund Althugh peple tend t think abut GIS as being primarily cncerned with mapping. It is better thught f as a type f database

More information

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page Managing the News Page TABLE OF CONTENTS: The News Page Key Infrmatin Area fr Members... 2 Newsletter Articles... 3 Adding Newsletter as Individual Articles... 3 Adding a Newsletter Created Externally...

More information

Interfacing to MATLAB. You can download the interface developed in this tutorial. It exists as a collection of 3 MATLAB files.

Interfacing to MATLAB. You can download the interface developed in this tutorial. It exists as a collection of 3 MATLAB files. Interfacing t MATLAB Overview: Getting Started Basic Tutrial Interfacing with OCX Installatin GUI with MATLAB's GUIDE First Buttn & Image Mre ActiveX Cntrls Exting the GUI Advanced Tutrial MATLAB Cntrls

More information

Municode Website Instructions

Municode Website Instructions Municde Website instructins Municde Website Instructins The new and imprved Municde site allws yu t navigate t, print, save, e-mail and link t desired sectins f the Online Cde f Ordinances with greater

More information

VISITSCOTLAND - TOURS MANAGEMENT SYSTEM Manual for Tour Operators

VISITSCOTLAND - TOURS MANAGEMENT SYSTEM Manual for Tour Operators VISITSCOTLAND - TOURS MANAGEMENT SYSTEM Manual fr Tur Operatrs 1 CONTENTS GETTING STARTED... 3 REGISTER AND CREATE YOUR ACCOUNT... 3 OPERATOR PROFILE... 4 Create yur Operatr Prfile... 4 ADD A TOUR LISTING...

More information

Area Governors Module

Area Governors Module 1. General Overview Welcme t Assistant/Area Gvernrs Mdule, this well structured sectin f the District Organizatin Chart will assist yu in rganizing the club lists fr all yur Assistant/Area Gvernrs 2. Getting

More information

Knowledgeware Rule-based Clash

Knowledgeware Rule-based Clash Knwledgeware Rule-based Clash Clash rules written using knwledgeware capabilities can be used in a standalne clash prcess clash prcess, ensuring clash analyses take crprate practices int accunt. Multiple

More information

Managing Your Access To The Open Banking Directory How To Guide

Managing Your Access To The Open Banking Directory How To Guide Managing Yur Access T The Open Banking Directry Hw T Guide Date: June 2018 Versin: v2.0 Classificatin: PUBLIC OPEN BANKING LIMITED 2018 Page 1 f 32 Cntents 1. Intrductin 3 2. Signing Up 4 3. Lgging In

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questins Date f Last Update: FAQ SatView 0001 SatView is nt pening and hangs at the initial start-up splash screen This is mst likely an issue with ne f the dependency, SQL LcalDB, missing

More information

Simple Regression in Minitab 1

Simple Regression in Minitab 1 Simple Regressin in Minitab 1 Belw is a sample data set that we will be using fr tday s exercise. It lists the heights & weights fr 10 men and 12 wmen. Male Female Height (in) 69 70 65 72 76 70 70 66 68

More information

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash UiPath Autmatin Walkthrugh Walkthrugh Calculate Client Security Hash Walkthrugh Calculate Client Security Hash Start with the REFramewrk template. We start ff with a simple implementatin t demnstrate the

More information

Adverse Action Letters

Adverse Action Letters Adverse Actin Letters Setup and Usage Instructins The FRS Adverse Actin Letter mdule was designed t prvide yu with a very elabrate and sphisticated slutin t help autmate and handle all f yur Adverse Actin

More information

Stealing passwords via browser refresh

Stealing passwords via browser refresh Stealing passwrds via brwser refresh Authr: Karmendra Khli [karmendra.khli@paladin.net] Date: August 07, 2004 Versin: 1.1 The brwser s back and refresh features can be used t steal passwrds frm insecurely

More information

Scroll down to New and another menu will appear. Select Folder and a new

Scroll down to New and another menu will appear. Select Folder and a new Creating a New Flder Befre we begin with Micrsft Wrd, create a flder n yur Desktp named Summer PD. T d this, right click anywhere n yur Desktp and a menu will appear. Scrll dwn t New and anther menu will

More information

SmartPass User Guide Page 1 of 50

SmartPass User Guide Page 1 of 50 SmartPass User Guide Table f Cntents Table f Cntents... 2 1. Intrductin... 3 2. Register t SmartPass... 4 2.1 Citizen/Resident registratin... 4 2.1.1 Prerequisites fr Citizen/Resident registratin... 4

More information

ClassFlow Administrator User Guide

ClassFlow Administrator User Guide ClassFlw Administratr User Guide ClassFlw User Engagement Team April 2017 www.classflw.cm 1 Cntents Overview... 3 User Management... 3 Manual Entry via the User Management Page... 4 Creating Individual

More information

Integrating QuickBooks with TimePro

Integrating QuickBooks with TimePro Integrating QuickBks with TimePr With TimePr s QuickBks Integratin Mdule, yu can imprt and exprt data between TimePr and QuickBks. Imprting Data frm QuickBks The TimePr QuickBks Imprt Facility allws data

More information

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY Accessing RefWrks Access RefWrks frm a link in the Bibligraphy/Citatin sectin f the Hurst Library web page (http://library.nrthwestu.edu) Create

More information

TRAINING GUIDE. Lucity Mobile

TRAINING GUIDE. Lucity Mobile TRAINING GUIDE The Lucity mbile app gives users the pwer f the Lucity tls while in the field. They can lkup asset infrmatin, review and create wrk rders, create inspectins, and many mre things. This manual

More information

AudienceView How-To Guide: How to Run a Digital Behaviour Report? (Part 1)

AudienceView How-To Guide: How to Run a Digital Behaviour Report? (Part 1) AudienceView Hw-T Guide: Hw t Run a Digital Behaviur Reprt? (Part 1) What is a Digital Behaviur Reprt? A Digital Behaviur Reprt prvides detailed insight int the nline behaviur f yur audience. It allws

More information

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to:

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to: Summary This dcument is a guide intended t guide yu thrugh the prcess f installing and cnfiguring PepleTls 8.55.27 (r current versin) via Windws Remte Applicatin (App). Remte App allws the end user t run

More information

Systems & Operating Systems

Systems & Operating Systems McGill University COMP-206 Sftware Systems Due: Octber 1, 2011 n WEB CT at 23:55 (tw late days, -5% each day) Systems & Operating Systems Graphical user interfaces have advanced enugh t permit sftware

More information

Quick Start Guide for EAB Campus Advisors

Quick Start Guide for EAB Campus Advisors Student Success Cllabrative Quick Start Guide fr EAB Campus Advisrs Clemsn has launched the EAB Campus platfrm fr advisrs and thers, with the gal f helping students explre a path t timely graduatin cmpletin

More information

The Login Page Designer

The Login Page Designer The Lgin Page Designer A new Lgin Page tab is nw available when yu g t Site Cnfiguratin. The purpse f the Admin Lgin Page is t give fundatin staff the pprtunity t build a custm, yet simple, layut fr their

More information

UPGRADING TO DISCOVERY 2005

UPGRADING TO DISCOVERY 2005 Centennial Discvery 2005 Why Shuld I Upgrade? Discvery 2005 is the culminatin f ver 18 mnths wrth f research and develpment and represents a substantial leap frward in audit and decisin-supprt technlgy.

More information

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems Date: Octber 2018 User guide Integratin thrugh ONVIF driver. Prepared By: Devices & Integratins Team, Milestne Systems 2 Welcme t the User Guide fr Online Test Tl The aim f this dcument is t prvide guidance

More information

istartsmart 3.5 Upgrade - Installation Instructions

istartsmart 3.5 Upgrade - Installation Instructions istartsmart 3.5 Upgrade - Installatin Instructins Minimum System Requirements: Hatch All-In-One istartsmart Cmputer Learning Center v1.0 r v1.1 Internet access - either hard-wired r wireless cnnectin is

More information

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash UiPath Autmatin Walkthrugh Walkthrugh Calculate Client Security Hash Walkthrugh Calculate Client Security Hash Start with the REFramewrk template. We start ff with a simple implementatin t demnstrate the

More information

Faculty Textbook Adoption Instructions

Faculty Textbook Adoption Instructions Faculty Textbk Adptin Instructins The Bkstre has partnered with MBS Direct t prvide textbks t ur students. This partnership ffers ur students and parents mre chices while saving them mney, including ptins

More information

Qualtrics Instructions

Qualtrics Instructions Create a Survey/Prject G t the Ursinus Cllege hmepage and click n Faculty and Staff. Click n Qualtrics. Lgin t Qualtrics using yur Ursinus username and passwrd. Click n +Create Prject. Chse Research Cre.

More information

McGill University School of Computer Science COMP-206. Software Systems. Due: September 29, 2008 on WEB CT at 23:55.

McGill University School of Computer Science COMP-206. Software Systems. Due: September 29, 2008 on WEB CT at 23:55. Schl f Cmputer Science McGill University Schl f Cmputer Science COMP-206 Sftware Systems Due: September 29, 2008 n WEB CT at 23:55 Operating Systems This assignment explres the Unix perating system and

More information

Client Configurations

Client Configurations Email Client Cnfiguratins Chse ne f the links belw fr yur particular email client. Easy t use instructins will help yu change the settings n yur email client t ur settings. Recmmended Email Settings Incming

More information

Since its last production release there have been two main areas of work on DIPPlus, namely user interface simplification and barcode scanning.

Since its last production release there have been two main areas of work on DIPPlus, namely user interface simplification and barcode scanning. Summary f changes in DIPPlus v2.14 Since its last prductin release there have been tw main areas f wrk n DIPPlus, namely user interface simplificatin and barcde scanning. A. We are undertaking an extensive

More information

HOW TO live-stream softball on a minimal budget

HOW TO live-stream softball on a minimal budget HOW TO live-stream sftball n a minimal budget It s a ne-camera live-stream with the pssiblity f changing scre, uts, innings. Yu can als add additinal graphics r live cmmentary. WHAT DO YOU NEED A laptp

More information

Enabling Your Personal Web Page on the SacLink

Enabling Your Personal Web Page on the SacLink 53 Enabling Yur Persnal Web Page n the SacLink *Yu need t enable yur persnal web page nly ONCE. It will be available t yu until yu graduate frm CSUS. T enable yur Persnal Web Page, fllw the steps given

More information

Procurement Contract Portal. User Guide

Procurement Contract Portal. User Guide Prcurement Cntract Prtal User Guide Cntents Intrductin...2 Access the Prtal...2 Hme Page...2 End User My Cntracts...2 Buttns, Icns, and the Actin Bar...3 Create a New Cntract Request...5 Requester Infrmatin...5

More information

CLIC ADMIN USER S GUIDE

CLIC ADMIN USER S GUIDE With CLiC (Classrm In Cntext), teaching and classrm instructin becmes interactive, persnalized, and fcused. This digital-based curriculum, designed by Gale, is flexible allwing teachers t make their classrm

More information

Configuring Database & SQL Query Monitoring With Sentry-go Quick & Plus! monitors

Configuring Database & SQL Query Monitoring With Sentry-go Quick & Plus! monitors Cnfiguring Database & SQL Query Mnitring With Sentry-g Quick & Plus! mnitrs 3Ds (UK) Limited, Nvember, 2013 http://www.sentry-g.cm Be Practive, Nt Reactive! One f the best ways f ensuring a database is

More information

Chapter 2 Basic Operations

Chapter 2 Basic Operations Chapter 2 Basic Operatins Lessn B String Operatins 10 Minutes Lab Gals In this Lessn, yu will: Learn hw t use the fllwing Transfrmatins: Set Replace Extract Cuntpattern Split Learn hw t apply certain Transfrmatins

More information

The Reporting Tool. An Overview of HHAeXchange s Reporting Tool

The Reporting Tool. An Overview of HHAeXchange s Reporting Tool HHAeXchange The Reprting Tl An Overview f HHAeXchange s Reprting Tl Cpyright 2017 Hmecare Sftware Slutins, LLC One Curt Square 44th Flr Lng Island City, NY 11101 Phne: (718) 407-4633 Fax: (718) 679-9273

More information

6 Ways to Streamline Your Tasks in Outlook

6 Ways to Streamline Your Tasks in Outlook 6 Ways t Streamline Yur Tasks in Outlk Every jb requires a variety f tasks during a given day. Maybe yurs includes meeting with clients, preparing a presentatin, r cllabrating with team members n an imprtant

More information

INFocus Health Screenings Report

INFocus Health Screenings Report INFcus Health Screenings Reprt Abut This Reprt This reprt will shw health screenings by schl fr a selected schl(s) and screening(s) between a specified date ranges. Quick Reference Guide STI_0529131310

More information

Copyrights and Trademarks

Copyrights and Trademarks Cpyrights and Trademarks Sage One Accunting Cnversin Manual 1 Cpyrights and Trademarks Cpyrights and Trademarks Cpyrights and Trademarks Cpyright 2002-2014 by Us. We hereby acknwledge the cpyrights and

More information

State Assessment Program Indiana Released Items Repository Quick Guide

State Assessment Program Indiana Released Items Repository Quick Guide State Assessment Prgram Indiana Released Items Repsitry Quick Guide 2018 2019 Published December 10, 2018 Prepared by the American Institutes fr Research Released Items Repsitry Intrductin This guide prvides

More information

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Asset Template

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Asset Template Netwrk Rail ARMS - Asbests Risk Management System Training Guide fr use f the Imprt Asset Template The ARMS Imprt Asset Template New assets can be added t the Asbests Risk Management System (ARMS) using

More information

Outlook Web Application (OWA) Basic Training

Outlook Web Application (OWA) Basic Training Outlk Web Applicatin (OWA) Basic Training Requirements t use OWA Full Versin: Yu must use at least versin 7 f Internet Explrer, Safari n Mac, and Firefx 3.X. (Ggle Chrme r Internet Explrer versin 6, yu

More information

Installing and using QGIS

Installing and using QGIS Land Accunting Exercise Part 1 Installing QGIS 1 Installing and using QGIS Reginal Expert Wrkshp n Land Accunting, UNESCAP, 09-2017 UNESCAP - Reginal Expert Wrkshp n Land Accunting, Bangkk, Thailand, Sep.

More information

Ascii Art Capstone project in C

Ascii Art Capstone project in C Ascii Art Capstne prject in C CSSE 120 Intrductin t Sftware Develpment (Rbtics) Spring 2010-2011 Hw t begin the Ascii Art prject Page 1 Prceed as fllws, in the rder listed. 1. If yu have nt dne s already,

More information

STIQuery Basics. A second example is included at the end of this document.

STIQuery Basics. A second example is included at the end of this document. STIQuery Basics Using STIQuery A wide variety f reprts may be generated via STIQuery. With this tl, the use can retrieve data frm different areas f the prgram and cmbine the infrmatin tgether in ne reprt.

More information

COP2800 Homework #3 Assignment Spring 2013

COP2800 Homework #3 Assignment Spring 2013 YOUR NAME: DATE: LAST FOUR DIGITS OF YOUR UF-ID: Please Print Clearly (Blck Letters) YOUR PARTNER S NAME: DATE: LAST FOUR DIGITS OF PARTNER S UF-ID: Please Print Clearly Date Assigned: 15 February 2013

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9211 Upgrader User Guide (Mac) Rev 1.2 (6-Jul-17) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9211 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

Using MeetingSquared on your ipad or iphone

Using MeetingSquared on your ipad or iphone Using MeetingSquared n yur ipad r iphne Install the MeetingSquared app G t the App Stre n yur ipad r iphne and search fr MeetingSquared. If yu are viewing this dcument n yur ipad r iphne, tap the link

More information

INSERTING MEDIA AND OBJECTS

INSERTING MEDIA AND OBJECTS INSERTING MEDIA AND OBJECTS This sectin describes hw t insert media and bjects using the RS Stre Website Editr. Basic Insert features gruped n the tlbar. LINKS The Link feature f the Editr is a pwerful

More information

Lab 4. Name: Checked: Objectives:

Lab 4. Name: Checked: Objectives: Lab 4 Name: Checked: Objectives: Learn hw t test cde snippets interactively. Learn abut the Java API Practice using Randm, Math, and String methds and assrted ther methds frm the Java API Part A. Use jgrasp

More information

Exosoft Backup Manager

Exosoft Backup Manager Exsft Backup Manager 2018 Exsft Backup Manager Ensuring databases are backed up regularly is a critical part f any cmpany data recvery prcess. Mst mnth end as well as end f financial year prcesses shuld

More information

Using CppSim to Generate Neural Network Modules in Simulink using the simulink_neural_net_gen command

Using CppSim to Generate Neural Network Modules in Simulink using the simulink_neural_net_gen command Using CppSim t Generate Neural Netwrk Mdules in Simulink using the simulink_neural_net_gen cmmand Michael H. Perrtt http://www.cppsim.cm June 24, 2008 Cpyright 2008 by Michael H. Perrtt All rights reserved.

More information

Online Banking for Business USER GUIDE

Online Banking for Business USER GUIDE Online Banking fr Business estatements USER GUIDE Cntents Cntents... 1 Online Banking fr Business Getting Started... 2 Technical Requirements... 2 Supprted brwsers... 2 Minimum system requirements... 2

More information

PAGE NAMING STRATEGIES

PAGE NAMING STRATEGIES PAGE NAMING STRATEGIES Naming Yur Pages in SiteCatalyst May 14, 2007 Versin 1.1 CHAPTER 1 1 Page Naming The pagename variable is used t identify each page that will be tracked n the web site. If the pagename

More information

Xerox WorkCentre 7120/7125 Series User Instructions

Xerox WorkCentre 7120/7125 Series User Instructions Xerx WrkCentre 7120/7125 Series User Instructins Hw t Make a Cpy Using the Duplex Autmatic Dcument Feeder (DADF) NOTE: Use the DADF fr multiple r single pages. Use the Dcument Glass fr single cpies r paper

More information

Dashboard Extension for Enterprise Architect

Dashboard Extension for Enterprise Architect Dashbard Extensin fr Enterprise Architect Dashbard Extensin fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins f the free versin f the extensin... 3 Example Dashbard

More information

TRAINING GUIDE. Overview of Lucity Spatial

TRAINING GUIDE. Overview of Lucity Spatial TRAINING GUIDE Overview f Lucity Spatial Overview f Lucity Spatial In this sessin, we ll cver the key cmpnents f Lucity Spatial. Table f Cntents Lucity Spatial... 2 Requirements... 2 Setup... 3 Assign

More information

Quick Reference Guide User Permissions & Roles - Buyers. Table of Contents

Quick Reference Guide User Permissions & Roles - Buyers. Table of Contents User Permissins & Rles - Buyers Table f Cntents User Permissins & Rles... 2 Adding New Users... 2 Editing Existing Users... 3 Users Search Table... 3 Creating User Rles... 4 Editing Existing Rles... 6

More information

MOS Access 2013 Quick Reference

MOS Access 2013 Quick Reference MOS Access 2013 Quick Reference Exam 77-424: MOS Access 2013 Objectives http://www.micrsft.cm/learning/en-us/exam.aspx?id=77-424 Create and Manage a Database Create a New Database This bjective may include

More information

Chalkable Classroom Admin Portal

Chalkable Classroom Admin Portal Chalkable Classrm Admin Prtal Abut This Dcument This is an verview f the navigatin and primary features f the Admin Prtal fr Chalkable Classrm. Table f Cntents Chalkable Classrm Admin Prtal 1 Abut This

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9202 Upgrader User Guide (Mac) Rev 1.0 (23-Feb-12) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9202 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

Please contact technical support if you have questions about the directory that your organization uses for user management.

Please contact technical support if you have questions about the directory that your organization uses for user management. Overview ACTIVE DATA CALENDAR LDAP/AD IMPLEMENTATION GUIDE Active Data Calendar allws fr the use f single authenticatin fr users lgging int the administrative area f the applicatin thrugh LDAP/AD. LDAP

More information

Web of Science Institutional authored and cited papers

Web of Science Institutional authored and cited papers Web f Science Institutinal authred and cited papers Prcedures written by Diane Carrll Washingtn State University Libraries December, 2007, updated Nvember 2009 Annual review f paper s authred and cited

More information

Getting Started with the SDAccel Environment on Nimbix Cloud

Getting Started with the SDAccel Environment on Nimbix Cloud Getting Started with the SDAccel Envirnment n Nimbix Clud Revisin Histry The fllwing table shws the revisin histry fr this dcument. Date Versin Changes 09/17/2018 201809 Updated figures thrughut Updated

More information

RISKMAN REFERENCE GUIDE TO USER MANAGEMENT (Non-Network Logins)

RISKMAN REFERENCE GUIDE TO USER MANAGEMENT (Non-Network Logins) Intrductin This reference guide is aimed at managers wh will be respnsible fr managing users within RiskMan where RiskMan is nt cnfigured t use netwrk lgins. This guide is used in cnjunctin with the respective

More information

1on1 Sales Manager Tool. User Guide

1on1 Sales Manager Tool. User Guide 1n1 Sales Manager Tl User Guide Table f Cntents Install r Upgrade 1n1 Page 2 Setting up Security fr Dynamic Reprting Page 3 Installing ERA-IGNITE Page 4 Cnverting (Imprting) Queries int Dynamic Reprting

More information

Entering an NSERC CCV: Step by Step

Entering an NSERC CCV: Step by Step Entering an NSERC CCV: Step by Step - 2018 G t CCV Lgin Page Nte that usernames and passwrds frm ther NSERC sites wn t wrk n the CCV site. If this is yur first CCV, yu ll need t register: Click n Lgin,

More information

Reporting Requirements Specification

Reporting Requirements Specification Cmmunity Mental Health Cmmn Assessment Prject OCAN 2.0 - ing Requirements Specificatin May 4, 2010 Versin 2.0.2 SECURITY NOTICE This material and the infrmatin cntained herein are prprietary t Cmmunity

More information

User Guide. Document Version: 1.0. Solution Version:

User Guide. Document Version: 1.0. Solution Version: User Guide Dcument Versin: 1.0 Slutin Versin: 365.082017.3.1 Table f Cntents Prduct Overview... 3 Hw t Install and Activate Custmer Satisfactin Survey Slutin?... 4 Security Rles in Custmer Satisfactin

More information

How to use DCI Contract Alerts

How to use DCI Contract Alerts Hw t use DCI Cntract Alerts Welcme t the MyDCI Help Guide series Hw t use DCI Cntract Alerts In here, yu will find a lt f useful infrmatin abut hw t make the mst f yur DCI Alerts which will help yu t fully

More information

Lab 0: Compiling, Running, and Debugging

Lab 0: Compiling, Running, and Debugging UNIVERSITY OF CALIFORNIA, SANTA CRUZ BOARD OF STUDIES IN COMPUTER ENGINEERING CMPE13/L: INTRODUCTION TO PROGRAMMING IN C SPRING 2012 Lab 0: Cmpiling, Running, and Debugging Intrductin Reading This is the

More information

TL 9000 Quality Management System. Measurements Handbook. SFQ Examples

TL 9000 Quality Management System. Measurements Handbook. SFQ Examples Quality Excellence fr Suppliers f Telecmmunicatins Frum (QuEST Frum) TL 9000 Quality Management System Measurements Handbk Cpyright QuEST Frum Sftware Fix Quality (SFQ) Examples 8.1 8.1.1 SFQ Example The

More information

ClubRunner. Volunteers Module Guide

ClubRunner. Volunteers Module Guide ClubRunner Vlunteers Mdule Guide 2014 Vlunteer Mdule Guide TABLE OF CONTENTS Overview... 3 Basic vs. Enhanced Versins... 3 Navigatin... 4 Create New Vlunteer Signup List... 5 Manage Vlunteer Tasks... 7

More information

Because of security on the site, you cannot create a bookmark through the usual means. In order to create a bookmark that will work consistently:

Because of security on the site, you cannot create a bookmark through the usual means. In order to create a bookmark that will work consistently: The CllegeNet URL is: https://admit.applyweb.cm/admit/shibbleth/crnell Lg in with Crnell netid and Kerbers passwrd Because f security n the site, yu cannt create a bkmark thrugh the usual means. In rder

More information

Dear Milestone Customer,

Dear Milestone Customer, Dear Milestne Custmer, With the purchase f Milestne Xprtect Transact yu have chsen a very flexible ptin t yur Milestne Xprtect Business slutin. Milestne Xprtect Transact enables yu t stre a serial data

More information

Trimble Survey GNSS Firmware Version 4.81 (July 2013)

Trimble Survey GNSS Firmware Version 4.81 (July 2013) Handheld Integrated Mdular RELEASE NOTES TRIMBLE SURVEY GNSS FIRMWARE Trimble Survey GNSS Firmware Versin 4.81 (July 2013) Requirements This firmware versin includes imprvements t the Survey Receiver firmware.

More information

Studio Software Update 8.2 Release Notes

Studio Software Update 8.2 Release Notes Studi Sftware Update 8.2 Release Ntes Previus Studi Release: 8.1 Supprted Equipment PC: Z97, Z170 Offline Studi Operating System: Windws XP (Service Pack 3) r higher; extensive testing specifically perfrmed

More information

Focus University Training Document

Focus University Training Document Fcus University Training Dcument Fcus Training: Subjects and Curses Setup; Curse Requests Training Agenda: Setting up Subjects and Curses; Entering Curse Requests; Scheduling Reprts 2016 Subject and Curses

More information

Tips and Tricks in Word 2000 Part II. Presented by Carla Torgerson

Tips and Tricks in Word 2000 Part II. Presented by Carla Torgerson Tips and Tricks in Wrd 2000 Part II Presented by Carla Trgersn (cnt2@psu.edu) 1. using styles Styles are used t create frmatting shrtcuts s yu can create a dcument that has frmatting cnsistency. Fr example,

More information

Populate and Extract Data from Your Database

Populate and Extract Data from Your Database Ppulate and Extract Data frm Yur Database 1. Overview In this lab, yu will: 1. Check/revise yur data mdel and/r marketing material (hme page cntent) frm last week's lab. Yu will wrk with tw classmates

More information

Microsoft Excel Extensions for Enterprise Architect

Microsoft Excel Extensions for Enterprise Architect Excel Extensins User Guide Micrsft Excel Extensins fr Enterprise Architect Micrsft Excel Extensins fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Installatin... 4 Verifying

More information