Tutorial 5: Statistical analysis of DIA data

Size: px
Start display at page:

Download "Tutorial 5: Statistical analysis of DIA data"

Transcription

1 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 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 anlignment 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 Sample anntatin SWATH2stats Filtering Data cnversin MSstats Data prcessing and quality cntrl Quantificatin Grup cmparisn Design sample size 1

2 DIA / SWATH Curse 2017 Tutrial 5 Statistical analysis f DIA data 2. Prepare data fr MSstats Start by pening Rstudi. Nte! If yu have never used R r Rstudi, please make yurself familiar with the interface. Yu will find a cnsle windw where yur R sessin is running n the left side. On the right side yu have a windw were yur stred variables/lists/tables will be displayed. In the windw belw varius things can be displayed, e.g. plts, installed packages, the help cntent f a functin. list f variables R cnsle plts/help/library 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 typing: 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/feature_alignment_pyp rphet_tric_lwess_lcalmst.tsv', dec='.', sep='\t', header=true, stringsasfactrs = FALSE) 2

3 DIA / SWATH Curse 2017 Tutrial 5 Statistical analysis f DIA data 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. 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. Nte! If yu scrll dwn in the data view, yu will recgnize a number f DECOY peptides. Remember, decy cunting is NOT valid in this apprach as lng as yu d nt crrect fr the fractin f false targets! 3

4 DIA / SWATH Curse 2017 Tutrial 5 Statistical analysis f DIA data 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 J). data.reduced <- data.reduced[grep("irt", 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 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. anntatin.file <- read.delim2('dia_curse_antatin.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. 4

5 DIA / SWATH Curse 2017 Tutrial 5 Statistical analysis f DIA data We can nw filter ur data set. We want t make sure that we just use cmplete bservatins. data.filtered <- filter_mscre_freqbs(data.anntated, mscre=0.01, percentage=1) 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 peptides need t be quantified in all 6 samples, resulting in keeping 86 % f the data. In ttal it deletes 3457 transitin grups. Again we shuld check hw the number f peptides/prteins changed after filtering. cunt_analytes(data.filtered) Nw we have the same number f peptides and prteins in each sample, as we wished. In yur wn data, yu can use this step t reassure that yur filtering is nt t strict and yur nt lsing t many prteins here. As a last filtering step, we filter fr prtetypic peptides. data.filtered.prtetypic <- filter_prtetypic_peptides(data.filtered) The appearing message tells yu again hw many prteins there have been befre filtering and hw many are supprted by prtetypic peptides. T feed the data int MSstats (r mapdia) we need t split the transitin grups int single transitins. data.transitin <- disaggregate(data.filtered.prtetypic) 5

6 DIA / SWATH Curse 2017 Tutrial 5 Statistical analysis f DIA data 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.filtered.prtetypic, data.transitin, file="swath2stats_wrkflw.rdata") save(msstats.input, file="msstats_input.rdata") 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 = 200, 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. In this and the fllwing plts we fcus making the plt fr all prteins aggregated, and, n 1 randm example prtein (number 200). As bth plts are prduced sequentially yu will have click the back arrw in the pltting windw t see the All prteins plt. 6

7 DIA / SWATH Curse 2017 Tutrial 5 Statistical analysis f DIA data Here, yu can see the general QCplt acrss all prteins. 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 a prfile plt. dataprcessplts(data.prcessed, type = "PrfilePlt", featurename = "Peptide", legend.size = 4, riginalplt= TRUE, summaryplt = TRUE, which.prtein = 200, address = FALSE) In the first prfile plt yu can see the transitins f the three peptides (black, red and green) f the human example prtein 200 (again, 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. 7

8 DIA / SWATH Curse 2017 Tutrial 5 Statistical analysis f DIA data The last plt summarizes differences in the varius cnditins dataprcessplts(data.prcessed, type = "Cnditinplt", which.prtein = 200, address = FALSE) Here yu can see the cnditin plt f ur human example prtein. Des this lk as yu wuld expect? Select 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 = 200 by any ther number e.g. which.prtein = 111. 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.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 DIA / SWATH Curse 2017 Tutrial 5 Statistical analysis f DIA data 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 DIA / SWATH Curse 2017 Tutrial 5 Statistical analysis f DIA data 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(-2.5, 2.5))) 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("tpleft", 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 J 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: 10

11 DIA / SWATH Curse 2017 Tutrial 5 Statistical analysis f DIA data write.table(result.grupcmparisn$cmparisnresult, file = "grupcmparisn_result.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.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. 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 J 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 DIA / SWATH Curse

Tutorial 5: Statistical analysis of DIA data

Tutorial 5: Statistical analysis of 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 particular bilgical questin? Nwadays there are several nice sftware

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

FedVTE Training Advisor Guide

FedVTE Training Advisor Guide FedVTE Training Advisr Guide 2012 Carnegie Melln University Page 1 f 15 Cntents 1 Intrductin... 3 2 Training Advisr Hme page... 4 3 Reprting: Users... 6 4 Reprting: Curses... 8 5 Reprting: Cmmunity...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

STUDENTS/STAFF MANAGEMENT -SUMMATIVE

STUDENTS/STAFF MANAGEMENT -SUMMATIVE SUMMATIVE AND STATE-LEVEL TESTING STUDENTS/STAFF MANAGEMENT -SUMMATIVE This Students/Staff Management Guide is written fr leaders at schls r the district wh: Prepare and uplad a rster f students and staff

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

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

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

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

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

Copy your Course: Export and Import

Copy your Course: Export and Import Center f elearning The exprt curse feature creates a ZIP file f yur curse cntent yu will imprt t yur new curse. Exprt packages are dwnladed and imprted as cmpressed ZIP files. D nt unzip an exprt package

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

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

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

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

USER MANUAL. RoomWizard Administrative Console

USER MANUAL. RoomWizard Administrative Console USER MANUAL RmWizard Administrative Cnsle Cntents Welcme... 3 Administer yur RmWizards frm ne lcatin... 3 Abut This Manual... 4 Setup f the Administrative Cnsle... 4 Installatin... 4 The Cnsle Windw...

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

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

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

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

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

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

AvePoint Pipeline Pro 2.0 for Microsoft Dynamics CRM

AvePoint Pipeline Pro 2.0 for Microsoft Dynamics CRM AvePint Pipeline Pr 2.0 fr Micrsft Dynamics CRM Installatin and Cnfiguratin Guide Revisin E Issued April 2014 1 Table f Cntents Abut AvePint Pipeline Pr... 3 Required Permissins... 4 Overview f Installatin

More information

Getting Started with the Web Designer Suite

Getting Started with the Web Designer Suite Getting Started with the Web Designer Suite The Web Designer Suite prvides yu with a slew f Dreamweaver extensins that will assist yu in the design phase f creating a website. The tls prvided in this suite

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

Concentrix University Learning Portal FAQ Document

Concentrix University Learning Portal FAQ Document Cncentrix University Learning Prtal FAQ Dcument Belw are answers t sme cmmnly asked questins abut the Cncentrix University Learning Prtal. If yu d nt see an answer t yur questin, there are cntacts fr additinal

More information

Sircon User Guide A Guide to Using the Vertafore Sircon Self-Service Portal

Sircon User Guide A Guide to Using the Vertafore Sircon Self-Service Portal Sircn User Guide A Guide t Using the Vertafre Sircn Self-Service Prtal September 2016 Versin 16.8 Cntents Cntents Using the Vertafre Sircn Self-Service Prtal... 3 Lg In... 3 Hme Page... 4 Lg New Cases...

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

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

Assignment #5: Rootkit. ECE 650 Fall 2018

Assignment #5: Rootkit. ECE 650 Fall 2018 General Instructins Assignment #5: Rtkit ECE 650 Fall 2018 See curse site fr due date Updated 4/10/2018, changes nted in green 1. Yu will wrk individually n this assignment. 2. The cde fr this assignment

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

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

FAQ. Using the Thinkific Learning Platform

FAQ. Using the Thinkific Learning Platform FAQ Using the Thinkific Learning Platfrm General Infrmatin Thinkific is the curse building sftware we have chsen t use fr ur n-line classes. The fllwing sectins prvide infrmatin n issues that may arise

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

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

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

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

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

Gmail and Google Drive for Rutherford County Master Gardeners

Gmail and Google Drive for Rutherford County Master Gardeners Gmail and Ggle Drive fr Rutherfrd Cunty Master Gardeners Gmail Create a Ggle Gmail accunt. https://www.yutube.cm/watch?v=kxbii2dprmc&t=76s (Hw t Create a Gmail Accunt 2014 by Ansn Alexander is a great

More information

Qlucore Omics Explorer 3.3 feature overview

Qlucore Omics Explorer 3.3 feature overview Qlucre Omics Explrer 3.3 feature verview INTRODUCTION Qlucre Omics Explrer (QOE) is develped t supprt the user with fast, simple and visual analysis f measured data cnsidering publicly available infrmatin

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