Automated data analysis of Flow Cytometry (FCM) data

Size: px
Start display at page:

Download "Automated data analysis of Flow Cytometry (FCM) data"

Transcription

1 Automated data analysis of Flow Cytometry (FCM) data These exercises are divided into two parts: 1. Getting to know and be more comfortable with FCM data. 2. The automated analysis of some FCM data. Part 1: FCM data is stored in binary FCS files. We need to convert these files into ASCII text format that we can work with. We will use R (a free statistical software package) to do this, if you do not have R installed please visit this website to download it ( 1) Start up R On Windows/Mac you merely click the R icon. On UNIX/Linux, you start R by typing 'R' in a command terminal. 2) R: Install the flowcore package. If you have not already done this before, you need to install Bioconductor. source(" bioclite() provides a large range of tools (R packages) for the analysis and comprehension of high-throughput genomic data. Let s now install the flowcore package that we will be using: > source("

2 > bioclite("flowcore") 3) R: To use the flowcore package, use this command to load the package: > library("flowcore") Tip: if you are more curious about what the function library() actually does, then use?library to figure out 4) Download the FCS file (in a zipped folder, see course page). So now we re going to analyze some data: Peripheral blood mononuclear cells from a HIV infected individual and analyzed by Flow Cytometry. The cells were stained with 8 different fluorochrome-labelled antibodies. FCS name Cellular marker R780/60 CD3 V670/30 CD4 V585/42 CD8 B530/30 CD57 B695/40 CD28 V670/30 CD38 V450/50 PD- 1 V780/60 CD27 YG586/15 Tim- 3 YG620/14 CD45RO YG780/60 HLA- DR What s so interesting about these cellular markers? On CD4+ T-cells: Activation can be measured using CD38 and HLA-DR. Exhaustion can be measured using PD-1 and Tim-3. Senescence can be measured using CD28 and CD57. Memory can be measured using CD45RO and CD27.

3 5) R: Make new variable to store the file path to where the FCS file is stored. There are samples below. You can use your own path (e.g. ~/My/Lovely/Path/HIV.fcs) # For Mac/UNIX users: > fcs.filename <- "~/Desktop/HIV.fcs" # For Windows users: > fcs.filename <- "C:\\Data\\HIV.fcs" 6) R: Read in the FCS file into R and turns it into a format that we can read: > fcs <- read.fcs(file=fcs.filename) 7) R: Let s have a look at a snippet of what the FCM data looks like: > head(fcs) head is a function that returns a part of what is stored in the variable fcs. Question 1: Can you explain the column names? Question 2: What does each column represent? Question 3: What does each line represent? 8) R: Let s get a more general view of what the FCM data looks like: > summary(fcs) Summary is a function that returns a summary of what is stored in the variable fcs.

4 Question 4: Why are there negative values even though you are reading something? > dim(fcs) dim gives us the dimensions of our variable fcs. Question 5: How many events and parameters do you count? Question 6: What are those parameters (hint: look at the column names)? Question 7 (Bonus): Do you think every single event represent readings (parameters) from a single cell? Why/Why not? 9) R: Now that we ve looked at the numbers, let s have a look at a part of the data visually: > source(" > bioclite("flowviz") > library(flowviz) > plot(fcs[,grep("sc-",colnames(fcs),invert=t)]) Question 8: Take a screenshot of this. Question 9: What does the plot show? Did you notice that the plots looks like the events are squished up against towards the lower parts of the plot? This is because marker distributions are composed of mixtures of log-normal distributions. Which is why we need to transform the data. We will use logicle transformation in this case to give a more complete and readily interpretable representation of the data. To read more about this have a look at this article [ ]. 10) R: Transform the data: > fluorochromes <- grep("sc-",colnames(fcs),invert=t,value=t) > tr <- estimatelogicle(fcs, channels=fluorochromes)

5 > fcs <- transform(fcs,tr) Question 10: What are the ranges of values now for the measured fluorescent intensities of the fluorochromes? Hint: use summary. Question 11: What does the scatterplot of the transformed data look like? Hint: use the plot function. 11) R: Save the data to your computer: > write.table(exprs(fcs), file="~/desktop/hiv.csv", sep =",",col.names=t,row.names=f) If this does not work, you can use the same file in zipped folder.

6 Part 2: FLOCK Here we re going to automate this part by doing a different type of analysis: 1) Go to 2) First, sign up for free and log in using the username and password assigned to you (you should have gotten it in your ). 3) Go to the Flow Cytometry analysis overview page: 4) Get the file that we will work on: HIV.txt in your Data folder. 5) Upload the file HIV.txt:

7 6) Once it s uploaded you can change the fluorochrome names with User Assigned Name: 7) Then press Save Changes 8) Now you can start to analyze the uploaded FCM data with FLOCK: 9) Fill out the Name and Description:

8 10) Press Run FLOCK and wait until you ve gotten an that it works. 11) Have a look at the results. Question 12: How many populations does FLOCK find? 12) Click on results (under the status bar) and play around with the results by clicking and updating the colors. You should get something like this initially:

Cytometry Data Analysis in FlowJo V10. Timothy Quinn Crawford, PhD Application Scientist FlowJo, LLC

Cytometry Data Analysis in FlowJo V10. Timothy Quinn Crawford, PhD Application Scientist FlowJo, LLC Cytometry Data Analysis in FlowJo V10 Timothy Quinn Crawford, PhD Application Scientist FlowJo, LLC timc@flowjo.com Outline Part I Intro to FlowJo Navigating the V10 Workspace Customizing Ribbons Demo

More information

Joomla 2.5 Kunena Component Installation

Joomla 2.5 Kunena Component Installation Joomla 2.5 Kunena Component Installation For installing the Kunena component in Joomla 2.5, you have to first login through the administrative panel of joomla by simply entering the url_of_your_website/administrator

More information

Cytometry Data Analysis in FlowJo V10. Timothy Quinn Crawford, PhD Application Scientist FlowJo, LLC

Cytometry Data Analysis in FlowJo V10. Timothy Quinn Crawford, PhD Application Scientist FlowJo, LLC Cytometry Data Analysis in FlowJo V10 Timothy Quinn Crawford, PhD Application Scientist FlowJo, LLC timc@flowjo.com Outline Navigating the V10 Workspace Demo Data background Creating and editing Groups

More information

MERGE FILES TUTORIAL. Version 1.4

MERGE FILES TUTORIAL. Version 1.4 MERGE FILES TUTORIAL Version 1.4 1. INTRODUCTION The merge process consists on adding two or more sample data files from the same sample or from different samples. The file resulting from the merging will

More information

flowcore: data structures package for the analysis of flow cytometry data

flowcore: data structures package for the analysis of flow cytometry data flowcore: data structures package for the analysis of flow cytometry data N. Le Meur D. Sarkar F. Hahne E. Strain B. Ellis P. Haaland August 6, 2007 1 Introduction Traditionally, flow cytometry (FCM) has

More information

SCHEDULE AN APPOINTMENT

SCHEDULE AN APPOINTMENT SCHEDULE AN APPOINTMENT 1. Go to https://www.donorpoint.org/. You will be directed to this page. 2. Enter your login information. Enter your username and password. 3. From the login page, you will be directed

More information

Merging Mixture Components for Cell Population Identification in Flow Cytometry Data The flowmerge package

Merging Mixture Components for Cell Population Identification in Flow Cytometry Data The flowmerge package Merging Mixture Components for Cell Population Identification in Flow Cytometry Data The flowmerge package Greg Finak, Raphael Gottardo October 30, 2017 greg.finak@ircm.qc.ca, raphael.gottardo@ircm.qc.ca

More information

Log into the computer using your CU Denver username and password. Log into the DIVA software using your CU and Username and the password flow

Log into the computer using your CU Denver username and password. Log into the DIVA software using your CU and Username and the password flow Log into the computer using your CU Denver username and password Log into the DIVA software using your CU and Username and the password flow When DIVA opens, IF a CST Mismatch pop up box appears, then

More information

DIAplex. DIAplex Pro 1.0 Software. Instructions for use. Fast Track Your Research. For research use only

DIAplex. DIAplex Pro 1.0 Software. Instructions for use. Fast Track Your Research. For research use only DIAplex DIAplex Pro 1.0 Software Instructions for use For research use only Fast Track Your Research Table of Contents 1. Introduction... 2 2. DIAplex Pro 1.0 installation... 2 2.1. System Requirements...

More information

Package flowtype. R topics documented: November 27, Type Package Title Phenotyping Flow Cytometry Assays Version 2.16.

Package flowtype. R topics documented: November 27, Type Package Title Phenotyping Flow Cytometry Assays Version 2.16. Type Package Title Phenotyping Flow Cytometry Assays Version 2.16.0 Date 2014-11-26 Package flowtype November 27, 2017 Author Nima Aghaeepour, Kieran O'Neill, Adrin Jalali Maintainer Nima Aghaeepour

More information

Robust Model-based Clustering of Flow Cytometry Data The flowclust package

Robust Model-based Clustering of Flow Cytometry Data The flowclust package Robust Model-based Clustering of Flow Cytometry Data The flowclust package Raphael Gottardo, Kenneth Lo July 12, 2018 rgottard@fhcrc.org, c.lo@stat.ubc.ca Contents 1 Licensing 2 2 Overview 2 3 Installation

More information

BD Multiwell AutoSampler Additional Features Tutorial

BD Multiwell AutoSampler Additional Features Tutorial BD Multiwell AutoSampler Additional Features Tutorial Introduction This tutorial provides step-by-step instructions on how to use the additional features available in BD Multiwell Plate Manager (MPM) software

More information

SPADE: Spanning Tree Progression of Density Normalized Events

SPADE: Spanning Tree Progression of Density Normalized Events SPADE: Spanning Tree Progression of Density Normalized Events Michael Linderman, Erin Simonds, Zach Bjornson, Peng Qiu October 13, 2014 michael.d.linderman@gmail.com Contents 1 Licensing 2 2 Overview 2

More information

Human Peripheral Blood Phenotyping Panel Kit Cytobank Guide to SPADE Analysis v 1.0

Human Peripheral Blood Phenotyping Panel Kit Cytobank Guide to SPADE Analysis v 1.0 The Premier Platform for Single Cell Analysis Human Peripheral Blood Phenotyping Panel Kit Cytobank Guide to SPADE Analysis v 1.0 Cytobank guide for the identification of cell types from the Human Peripheral

More information

Science is hard. Flow cytometry should be easy.

Science is hard. Flow cytometry should be easy. Science is hard. Flow cytometry should be easy. CFlow User Guide TABLE OF CONTENTS 1 INTRODUCTION TO CFLOW... 1 1.1 Installing CFlow... 1 1.2 Starting CFlow... 1 1.3 CFlow Workspace... 2 1.4 Opening a

More information

6 th International Conference on Applied Informatics Eger, Hungary, January 27 31, MMA Technology. Robert Tornai

6 th International Conference on Applied Informatics Eger, Hungary, January 27 31, MMA Technology. Robert Tornai 6 th International Conference on Applied Informatics Eger, Hungary, January 27 31, 2004. MMA Technology Robert Tornai Department of Computer Graphics, University of Debrecen e-mail: rtornai@inf.unideb.hu

More information

Unscrew and remove the cap from the waste tank

Unscrew and remove the cap from the waste tank Stanford Cytoflex HTS User Guide 11232015 Starting up 1. Check the sheath fluid level every time you use the cytometer. This ensures that you do not run out of sheath fluid during an experiment. Replenish

More information

Near UV Laser System Performance on the CytoFLEX S

Near UV Laser System Performance on the CytoFLEX S Near UV Laser System Performance on the CytoFLEX S APPLICATION NOTE Authors: Jeffrey Cobb James Tung Affiliation: Life Science, Beckman Coulter, Inc., Miami, FL, United States Introduction Material and

More information

Poet Image Description Tool: Step-by-step Guide

Poet Image Description Tool: Step-by-step Guide Poet Image Description Tool: Step-by-step Guide Introduction This guide is designed to help you use the Poet image description tool to add image descriptions to DAISY books. The tool assumes you have access

More information

1. Enable FTP download: To configure this feature the setting needs to be set to Yes.

1. Enable FTP download: To configure this feature the setting needs to be set to Yes. Configuration Settings Explained: 1. Enable FTP download: To configure this feature the setting needs to be set to Yes. 2. Hosted by: Client decides who hosts the data (See step 2 Gather Necessary Client

More information

Using the EBP Toolkit

Using the EBP Toolkit Using the EBP Toolkit Getting Started: Let s begin an EBP project! These screenshots and instructions will guide you through the necessary need toknow basics of the EBP Toolkit. Note: You are limited to

More information

GETTING STARTED. A Step-by-Step Guide to Using MarketSight

GETTING STARTED. A Step-by-Step Guide to Using MarketSight GETTING STARTED A Step-by-Step Guide to Using MarketSight Analyze any dataset Run crosstabs Test statistical significance Create charts and dashboards Share results online Introduction MarketSight is a

More information

Projection-based Gating Strategy Optimization for Flow and Mass Cytometry

Projection-based Gating Strategy Optimization for Flow and Mass Cytometry Projection-based Gating Strategy Optimization for Flow and Mass Cytometry Nima Aghaeepour and Erin F. Simonds January 4, 2019 naghaeep@gmail.com and erin.simonds@gmail.com Contents 1 Licensing 1 2 Introduction

More information

Package flowqb. October 7, 2014

Package flowqb. October 7, 2014 Package flowqb October 7, 2014 Type Package Title Automated Quadratic Characterization of Flow Cytometer Instrument Sensitivity: Q, B and CVinstrinsic calculations. Version 1.6.0 Date 2011-11-15 Author

More information

From using an External Harddrive, to a Google Cloud Drive; there is no one way to backup data.

From using an External Harddrive, to a Google Cloud Drive; there is no one way to backup data. Mac (OS X): Data Backup Guide 6/14/2016 Why: Backing up data should be done on a regular basis, not just when you think it is necessary, as a failure can happen at any time. While there are no set intervals

More information

FACSLSRFortessa SORP QUICK REFERENCE GUIDE

FACSLSRFortessa SORP QUICK REFERENCE GUIDE FACSLSRFortessa SORP QUICK REFERENCE GUIDE INSTRUMENT: 1. The computer is left on at all times. Note: If not Username: Administrator Password: BDIS 2. Unlock the screen with your PPMS account (UTSW username

More information

flowmatch: Cell population matching and meta-clustering in Flow Cytometry

flowmatch: Cell population matching and meta-clustering in Flow Cytometry flowmatch: Cell population matching and meta-clustering in Flow Cytometry Ariful Azad, Alex Pothen October 30, 2017 aazad@purdue.edu Contents 1 Licensing 2 2 Overview 2 2.1 FC sample...............................

More information

BD CellQuest Pro Software Acquisition Tutorial

BD CellQuest Pro Software Acquisition Tutorial BD CellQuest Pro Software Acquisition Tutorial This tutorial guides you through a typical acquisition using BD CellQuest Pro software. If you are already familiar with previous versions of BD CellQuest

More information

Additional supplementary methods

Additional supplementary methods Additional supplementary methods t-distributed Stochastic Neighbor Embedding. t-distributed Stochastic Neighbor Embedding (t-sne) is a Nonlinear Dimensionality Reduction (NLDR) algorithm that projects

More information

New RefWorks Guide. Setting up New RefWorks Access RefWorks UTS: LIBRARY

New RefWorks Guide. Setting up New RefWorks Access RefWorks UTS: LIBRARY UTS: LIBRARY New RefWorks Guide Setting up New RefWorks Access RefWorks Go to the library homepage and search the catalogue for RefWorks Click on Available and select New RefWorks Login using your UTS

More information

Manual Calculation Definition Excel 2010 Vba Set

Manual Calculation Definition Excel 2010 Vba Set Manual Calculation Definition Excel 2010 Vba Set The default is to calculate them automatically, unless certain criteria are met. written for users of the following Microsoft Excel versions: 2007, 2010,

More information

SOLAR SA - MANAGING SERVICE INDICATORS - REFERENCE GUIDE

SOLAR SA - MANAGING SERVICE INDICATORS - REFERENCE GUIDE INTRODUCTION SOLAR SA - MANAGING SERVICE INDICATORS - REFERENCE GUIDE Service Indicators are used to grant or limit a student s access (example: Immunization requirement, financial obligation etc). Your

More information

Portal/Extranet User Guide for Clients

Portal/Extranet User Guide for Clients Portal/Extranet User Guide for Clients Welcome to the ichannel Portal/Extranet. This guide will walk you through logging into your personalized, secure portal/extranet site. It will also show you how to

More information

How to SFTP to nice.fas.harvard.edu from Windows

How to SFTP to nice.fas.harvard.edu from Windows How to SFTP to nice.fas.harvard.edu from Windows Recall that nice.fas.harvard.edu refers to a cluster of computers running Linux on which you have an account (your so-called FAS account). On this cluster

More information

MOBILE APPLICATION USERS: You will be required to update your password to meet the following format:

MOBILE APPLICATION USERS: You will be required to update your password to meet the following format: WEB CLOCK & PHYSICAL TIME CLOCK USERS: If you are using the web clock only OR a physical time clock (on the wall) and not logging into your account, you will NOT be forced to update your security information

More information

VoiceThread - Export Blackboard Voice Authoring Content into VOICETHREAD

VoiceThread - Export Blackboard Voice Authoring Content into VOICETHREAD VoiceThread - Export Blackboard Voice Authoring Content into VOICETHREAD Date Published: Oct 05,2017 Category: Product:Voice_Help_and_FAQs,VoiceThread; Version:Voice_Authoring,VoiceThread Article No.:

More information

Cytometry Data Analysis in FlowJo V10

Cytometry Data Analysis in FlowJo V10 Cytometry Data Analysis in FlowJo V10 產品專員蔣明涵 Michelle techsupport@gtbiotech.com.tw Outline-Part I What is FlowJo? Navigating the V10 Workspace Graphs, Gating and Ancestry The Table Editor The Layout Editor

More information

NENS 230 Assignment 4: Data Visualization

NENS 230 Assignment 4: Data Visualization NENS 230 Assignment 4: Data Visualization Due date: Tuesday, October 20, 2015 Goals Get comfortable manipulating figures Familiarize yourself with common 2D and 3D plots Understand how color and colormaps

More information

CELLQuest Acquisition Tutorial

CELLQuest Acquisition Tutorial CELLQuest Acquisition Tutorial Introduction This tutorial guides you through a CELLQuest Acquisition run like the one demonstrated in the CELLQuest Acquisition Movie on the FACStation Overview CD-ROM.

More information

flowtrans: A Package for Optimizing Data Transformations for Flow Cytometry

flowtrans: A Package for Optimizing Data Transformations for Flow Cytometry flowtrans: A Package for Optimizing Data Transformations for Flow Cytometry Greg Finak, Raphael Gottardo October 30, 2018 greg.finak@ircm.qc.ca, raphael.gottardo@ircm.qc.ca Contents 1 Licensing 2 2 Overview

More information

IT INFRASTRUCTURE PROJECT PHASE I INSTRUCTIONS

IT INFRASTRUCTURE PROJECT PHASE I INSTRUCTIONS Project Overview IT INFRASTRUCTURE PROJECT PHASE I INSTRUCTIONS This project along with the Phase II IT Infrastructure Project will help you understand how a network administrator improves network performance

More information

Hints for Working with Diva FCS 3.0 files in FlowJo Workspaces By Julie Yuan, SickKids-UHN Flow and Mass Cytometry Facility

Hints for Working with Diva FCS 3.0 files in FlowJo Workspaces By Julie Yuan, SickKids-UHN Flow and Mass Cytometry Facility Hints for Working with Diva FCS 3.0 files in FlowJo Workspaces By Julie Yuan, SickKids-UHN Flow and Mass Cytometry Facility Naming FCS Files in Diva Software If you are using FlowJo for data analysis it

More information

The Kindred Directory allows you to search for employees and locations across all of our lines of business.

The Kindred Directory allows you to search for employees and locations across all of our lines of business. Release 2.0 July 2017 1 GETTING STARTED The Kindred Directory allows you to search for employees and locations across all of our lines of business. The Kindred Directory can be accessed in a variety of

More information

Creating a multilingual site in WebPlus

Creating a multilingual site in WebPlus Creating a multilingual site in WebPlus One of the problems faced by a number of WebPlus users involves organizing a multilingual website. Ordinarily, the easiest way to do this is to create your primary

More information

User Guide. Mobile View. Publish. Professional Communication

User Guide. Mobile View. Publish. Professional Communication User Guide Mobile View Publish Professional Communication Introduction This guide covers how to publish to Mobile View and how to set recipients for your published messages. Before getting started make

More information

Lesson 7: Recipe Display Application Setup Workspace

Lesson 7: Recipe Display Application Setup Workspace Lesson 7: Recipe Display Application Setup Workspace Setup Workspace - 5 STEPS Step #1: Setup a new workspace in Cloud9 Step #2: Copy the files & folder to the local repository (Cloud9) Step #3: Create

More information

Package GateFinder. March 17, 2019

Package GateFinder. March 17, 2019 Type Package Package GateFinder March 17, 2019 Title Projection-based Gating Strategy Optimization for Flow and Mass Cytometry Version 1.3.2 Date 2018-03-28 Author Nima Aghaeepour ,

More information

Entering and Managing Data in EvaluationWeb for CDC Program Announcement PS

Entering and Managing Data in EvaluationWeb for CDC Program Announcement PS Entering and Managing Data in EvaluationWeb for CDC Program Announcement PS17-1704 User Guide Version 1.1 May 2017 All rights reserved Table of Contents Change History... iii Getting Help... iv Accessing

More information

Guidelines for uploading and downloading documents through Logicaldoc

Guidelines for uploading and downloading documents through Logicaldoc 1: Logging in into Logicaldoc 1.1 Use this URL for login: http://172.16.2.9:8080/logicaldoc/ 2.1 Enter login id and password and click on Sign In Following window will appear after logging in: 2: Creating

More information

How to Register your Institution with proposalcentral

How to Register your Institution with proposalcentral How to Register your Institution with proposalcentral CUSTOMER SUPPORT: The Institution Profile is created once by the appropriate institution official. The institution information is then available to

More information

Feature-based Comparison of Flow Cytometry Data

Feature-based Comparison of Flow Cytometry Data Feature-based Comparison of Flow Cytometry Data by Alice Yue B.Sc., University of Victoria, 2015 Thesis Submitted in Partial Fulfillment of the Requirements for the Degree of Master of Science in the School

More information

Kramer Electronics, Ltd. ETHERNET Configuration (FC-11) GUIDE

Kramer Electronics, Ltd. ETHERNET Configuration (FC-11) GUIDE Kramer Electronics, Ltd. ETHERNET Configuration (FC-11) GUIDE Contents Contents 1 Configuring the Ethernet Port 1 1.1 Setting a Virtual Port 3 1.2 Setting an Ethernet Connection 5 Figures Figure 1: The

More information

A guide to use the flowpeaks: a flow cytometry data clustering algorithm via K-means and density peak finding

A guide to use the flowpeaks: a flow cytometry data clustering algorithm via K-means and density peak finding A guide to use the flowpeaks: a flow cytometry data clustering algorithm via K-means and density peak finding Yongchao Ge October 30, 2018 yongchao.ge@gmail.com 1 Licensing Under the Artistic License,

More information

flowcore: data structures package for flow cytometry data

flowcore: data structures package for flow cytometry data flowcore: data structures package for flow cytometry data N. Le Meur F. Hahne B. Ellis P. Haaland May 1, 2010 Abstract Background The recent application of modern automation technologies to staining and

More information

CS/CIS 249 SP18 - Intro to Information Security

CS/CIS 249 SP18 - Intro to Information Security Lab assignment CS/CIS 249 SP18 - Intro to Information Security Lab #2 - UNIX/Linux Access Controls, version 1.2 A typed document is required for this assignment. You must type the questions and your responses

More information

Introduction to WHO s DHIS2 Data Quality Tool

Introduction to WHO s DHIS2 Data Quality Tool Introduction to WHO s DHIS2 Data Quality Tool 1. Log onto the DHIS2 instance: https://who.dhis2.net/dq Username: demo Password: UGANDA 2016 2. Click on the menu icon in the upper right of the screen (

More information

Statistical Bioinformatics (Biomedical Big Data) Notes 2: Installing and Using R

Statistical Bioinformatics (Biomedical Big Data) Notes 2: Installing and Using R Statistical Bioinformatics (Biomedical Big Data) Notes 2: Installing and Using R In this course we will be using R (for Windows) for most of our work. These notes are to help students install R and then

More information

Instant Content Creator. User Guide

Instant Content Creator. User Guide Instant Content Creator User Guide Table of contents: 1 INTRODUCTION...4 1.1 Installation Procedure...4 2 INSTANT CONTENT CREATOR INTERFACE...7 3 CREATING A NEW PROJECT...9 4 ENTERING THE NAME OF THE PRODUCT...10

More information

Getting Started with PsycTESTS on Ovid

Getting Started with PsycTESTS on Ovid Getting Started with PsycTESTS on Ovid APA DATABASES & ELECTRONIC RESOURCES What is PsycTESTS? What will I find in it? PsycTESTS is a research database that provides information on tests that originated

More information

IBM Rational SoDA Tutorial

IBM Rational SoDA Tutorial IBM Rational SoDA Tutorial Rational SoDA Version 2003.06.00 Section 4.7 Creating a Template to Gather RequisitePro and TestManager Data TABLE OF CONTENTS INTRODUCTION... 3 PRE-REQUISITE... 3 PC SETUP...

More information

w w w. d a c d b. c o m ( )

w w w. d a c d b. c o m ( ) Quick Start Guide Welcome to DACdb! This simple guide is designed to give you basic information and an overview of some of our key functions. As you become comfortable with the tasks, explore our further

More information

Fitting NMR peaks for N,N DMA

Fitting NMR peaks for N,N DMA Fitting NMR peaks for N,N DMA Importing the FID file to your local system Any ftp program may be used to transfer the FID file from the NMR computer. The description below will take you through the process

More information

INDEX. A. A Guide to use the INSETA SMS Offline Module... 2 B. ADD ASSESSMENTS TO A LEARNER... 9

INDEX. A. A Guide to use the INSETA SMS Offline Module... 2 B. ADD ASSESSMENTS TO A LEARNER... 9 INDEX A. A Guide to use the INSETA SMS Offline Module... 2 B. ADD ASSESSMENTS TO A LEARNER... 9 Copyright 2001, Deloitte & Touche, All rights reserved 1 A. A Guide to use the INSETA SMS Offline Module

More information

Getting Started with the HCA Plugin for Homebridge Updated 12-Nov-17

Getting Started with the HCA Plugin for Homebridge Updated 12-Nov-17 Getting Started with the HCA Plugin for Homebridge Updated 12-Nov-17 Table of Contents Introduction... 3 Getting Ready... 3 Step 1: Installing Bonjour... 5 Step 2: Installing Homebridge and the HCA Plugin...

More information

Using Multi-Factor authentication (MFA) for remote work access

Using Multi-Factor authentication (MFA) for remote work access Using Multi-Factor authentication (MFA) for remote work access Multi-Factor authentication (MFA) is a method of protecting your identity on the network by using: Something you know your password Something

More information

Setting Up A WordPress Blog

Setting Up A WordPress Blog Setting Up A WordPress Blog Introduction WordPress can be installed alongside an existing website to be used solely as the 'blog' element of a website, or it can be set up as the foundation for an entire

More information

Lab Install Windows 8

Lab Install Windows 8 Introduction In this lab, you will install Windows 8.1 and 8.0. Recommended Equipment A computer with a blank hard disk drive Windows 8.1 and 8.0 installation DVD or USB flash drive Step 1: Starting the

More information

Creating Web Pages Using Netscape Composer AGENDA FOR THIS WORKSHOP. 1. How does it all work? 2. What do I need to get started at Fairfield?

Creating Web Pages Using Netscape Composer AGENDA FOR THIS WORKSHOP. 1. How does it all work? 2. What do I need to get started at Fairfield? Creating Web Pages Using Netscape Composer AGENDA FOR THIS WORKSHOP 1. How does it all work? 2. What do I need to get started at Fairfield? 3. What is HTML coding? 4. The 10 HTML Tags that you should know.

More information

MILWAUKEE AREA TECHNICAL COLLEGE ONLINE APPLICATION INSTRUCTIONS

MILWAUKEE AREA TECHNICAL COLLEGE ONLINE APPLICATION INSTRUCTIONS MILWAUKEE AREA TECHNICAL COLLEGE ONLINE APPLICATION INSTRUCTIONS Thank you for your interest in employment opportunities at Milwaukee Area Technical College. **Please note the following when submitting

More information

Entering and Managing Data in EvaluationWeb for CDC Program Announcement PS

Entering and Managing Data in EvaluationWeb for CDC Program Announcement PS Entering and Managing Data in EvaluationWeb for CDC Program Announcement PS15-1502 User Guide Version 2.2 May 2017 All rights reserved Change History History The table below logs the changes that have

More information

How to Use Google. Sign in to your Chromebook. Let s get started: The sign-in screen. https://www.youtube.com/watch?v=ncnswv70qgg

How to Use Google. Sign in to your Chromebook. Let s get started: The sign-in screen. https://www.youtube.com/watch?v=ncnswv70qgg How to Use Google Sign in to your Chromebook https://www.youtube.com/watch?v=ncnswv70qgg Use a Google Account to sign in to your Chromebook. A Google Account lets you access all of Google s web services

More information

Job Aid INTRODUCTION ACTIVATING ACCOUNT. Academy Loan Center esign Borrower Process

Job Aid INTRODUCTION ACTIVATING ACCOUNT. Academy Loan Center esign Borrower Process INTRODUCTION Job Aid Academy Loan Center esign Borrower Process V 1.1 26OCT2017 The purpose of this article is to guide you, the borrower, through Academy Loan Center as well as troubleshoot any errors

More information

How to Sign Up for a Volunteer Activity

How to Sign Up for a Volunteer Activity How to Sign Up for a Volunteer Activity Visit www.catholiccharitiesdc.org/volunteer Click the One-Time volunteer button to see the upcoming volunteer activities On the Calendar, click the activity where

More information

SafeAssign Guide for Instructors

SafeAssign Guide for Instructors Last Updated 11/15/2012 SafeAssign Guide for Instructors MATC has access to an automated plagiarism detection service called SafeAssign that integrates with Blackboard. It can be used to prevent plagiarism

More information

TURNINGPOINT 5: STEPS TO SUCCESSFULLY RUN ANYWHERE POLLING

TURNINGPOINT 5: STEPS TO SUCCESSFULLY RUN ANYWHERE POLLING TURNINGPOINT 5: STEPS TO SUCCESSFULLY RUN ANYWHERE POLLING Plug in Receiver. Open TurningPoint. Verify Connection (Receiver and/or ResponseWare). Select Participant List (optional). Select Content (optional).

More information

USING JOOMLA LEVEL 3 (BACK END) OVERVIEW AUDIENCE LEVEL 3 USERS

USING JOOMLA LEVEL 3 (BACK END) OVERVIEW AUDIENCE LEVEL 3 USERS USING JOOMLA LEVEL 3 (BACK END) OVERVIEW This document is designed to provide guidance and training for incorporating your department s content into to the Joomla Content Management System (CMS). Each

More information

Alternate Submission Methods

Alternate Submission Methods Skydrive Access your SkyDrive account. 1. Go to https://mail.fullsail.edu/ and Log in. 2. Click on the More tab at the top center of the screen, and choose Sky Drive Upload files to SkyDrive. 1. Click

More information

Hacking FlowJo VX. 42 Time-Saving FlowJo Shortcuts To Help You Get Your Data Published No Matter What Flow Cytometer It Came From

Hacking FlowJo VX. 42 Time-Saving FlowJo Shortcuts To Help You Get Your Data Published No Matter What Flow Cytometer It Came From Hacking FlowJo VX 42 Time-Saving FlowJo Shortcuts To Help You Get Your Data Published No Matter What Flow Cytometer It Came From Contents 1. Change the default name of your files. 2. Edit your workspace

More information

GOOGLE APPS. GETTING STARTED Page 02 Prerequisites What You Will Learn. INTRODUCTION Page 03 What is Google? SETTING UP AN ACCOUNT Page 03 Gmail

GOOGLE APPS. GETTING STARTED Page 02 Prerequisites What You Will Learn. INTRODUCTION Page 03 What is Google? SETTING UP AN ACCOUNT Page 03 Gmail GOOGLE APPS GETTING STARTED Page 02 Prerequisites What You Will Learn INTRODUCTION Page 03 What is Google? SETTING UP AN ACCOUNT Page 03 Gmail DRIVE Page 07 Uploading Files to Google Drive Sharing/Unsharing

More information

User Guide. The Tufts University Transfer Agreement Form. September Step 1 Go to

User Guide. The Tufts University Transfer Agreement Form. September Step 1 Go to Digital Collections and Archives http://dca.tufts.edu archives@tufts.edu The Tufts University Transfer Agreement Form User Guide September 2011 Introduction This guide provides Tufts University employees

More information

BD Lyoplate Human Screen Analysis Instructions For analysis using FCS Express or FlowJo and heatmap representation in Excel 2007

BD Lyoplate Human Screen Analysis Instructions For analysis using FCS Express or FlowJo and heatmap representation in Excel 2007 BD Biosciences Technical Resources Page 1 For use with the BD Lyoplate Human Cell Surface Marker Screening Panel (Cat. No. 560747). Please check that your catalog numbers for the FCS Express Excel templates

More information

Quick Start Guide. Microinvest Barcode Printer Pro

Quick Start Guide. Microinvest Barcode Printer Pro Quick Start Guide Microinvest Barcode Printer Pro 2016 Microinvest Barcode Printer Pro provides barcode printing functionality specifically designed to account for new orders and existing entries in the

More information

TracDat Administrator Title III Reporting Guide TracDat Version 5 For Title III Funded Activities

TracDat Administrator Title III Reporting Guide TracDat Version 5 For Title III Funded Activities TracDat Administrator Title III Reporting Guide TracDat Version 5 OPAR OFFICE OF PLANNING, ASSESSMENT AND RESEARCH For Title III Funded Activities Table of Contents INTRODUCTION... 2 USE OF TRACDAT...

More information

FILEYE CASE MAINTENANCE (DOCUMENTS) fileye B I T E S I Z E D G U I DES P R O F E S S I O N A L I P D O C K E T I N G S O F T WA R E

FILEYE CASE MAINTENANCE (DOCUMENTS) fileye B I T E S I Z E D G U I DES P R O F E S S I O N A L I P D O C K E T I N G S O F T WA R E FILEYE CASE MAINTENANCE (DOCUMENTS) fileye B I T E S I Z E D G U I DES P R O F E S S I O N A L I P D O C K E T I N G S O F T WA R E PLEASE NOTE this guide relates specifically to the maintenance of case

More information

xmapbridge: Graphically Displaying Numeric Data in the X:Map Genome Browser

xmapbridge: Graphically Displaying Numeric Data in the X:Map Genome Browser xmapbridge: Graphically Displaying Numeric Data in the X:Map Genome Browser Tim Yates, Crispin J Miller April 30, 2018 Contents 1 Introduction 1 2 Quickstart 2 3 Plotting Graphs, the simple way 4 4 Multiple

More information

Hardware: Acquiring Data and Communicating with Instruments

Hardware: Acquiring Data and Communicating with Instruments Hardware: Acquiring Data and Communicating with Instruments 4 Acquiring a Signal This chapter introduces you to the Express VIs you use to acquire data and communicate with instruments on Windows. These

More information

Ryan Tal Fellers, Joseph Brent Greer, Bryan Patrick Early, AJ van Nispen

Ryan Tal Fellers, Joseph Brent Greer, Bryan Patrick Early, AJ van Nispen Ryan Tal Fellers, Joseph Brent Greer, Bryan Patrick Early, AJ van Nispen External User Guide for Performing High Throughput Searches on TDPortal Part 1: Transferring Project Files to TDPortal.Step 1 -

More information

Creating an Archive of your WC Google Account

Creating an Archive of your WC Google Account Creating an Archive of your WC Google Account All Seniors should archive or migrate any information or data that they wish to keep from their Google Apps for Education Account prior to July. All accounts

More information

FTP UPLOADS/DOWNLOADS

FTP UPLOADS/DOWNLOADS FileZilla Download and Installation Instructions FileZilla is a free software that uses SourceForge as an installation provider. SourceForge is bundling the FileZilla software with other products that

More information

Student User Guide for EconPortal Macroeconomics in Modules, Second Edition

Student User Guide for EconPortal Macroeconomics in Modules, Second Edition Student User Guide for EconPortal Macroeconomics in Modules, Second Edition Krugman/Wells Getting Started with EconPortal for Krugman/Wells Macroeconomics in Modules, 2e Table of Contents Overview... 1

More information

MA900 Multi-Application Cell Sorter

MA900 Multi-Application Cell Sorter MA9 Multi-Application Cell Sorter Sony Biotechnology Inc. MA9 Cell Sorter Sorting Made Simple The MA9 from Sony meets the needs of most sorting applications, supporting 12 fluorescence parameters and 4-way

More information

SAS Model Manager 15.1: Quick Start Tutorial

SAS Model Manager 15.1: Quick Start Tutorial SAS Model Manager 15.1: Quick Start Tutorial Overview This Quick Start Tutorial is an introduction to some of the primary features of SAS Model Manager. The tutorial covers basic tasks that are related

More information

COM110: Lab 2 Numeric expressions, strings, and some file processing (chapters 3 and 5)

COM110: Lab 2 Numeric expressions, strings, and some file processing (chapters 3 and 5) COM110: Lab 2 Numeric expressions, strings, and some file processing (chapters 3 and 5) 1) Practice submitting programming assignment 1. Take a few arbitrary modules (.py files) that you have written and

More information

Arizona Talking Book Library. BARD Submittal Process

Arizona Talking Book Library. BARD Submittal Process Arizona Talking Book Library BARD Submittal Process Maria Pina, Brian Blackwell & Mary Alyce Grube 1-30-2018 Contents Introduction... 1 Compress the Files... 1 Upload into BARD... 2 Verify Upload is Correct...

More information

EXERCISE 2: GETTING STARTED WITH FUSION

EXERCISE 2: GETTING STARTED WITH FUSION Document Updated: May, 2010 Fusion v2.8 Introduction In this exercise, you ll be using the fully-prepared example data to explore the basics of FUSION. Prerequisites Successful completion of Exercise 1

More information

How To Clone, Backup & Move Your WordPress Blog! Step By Step Guide by Marian Krajcovic

How To Clone, Backup & Move Your WordPress Blog! Step By Step Guide by Marian Krajcovic How To Clone, Backup & Move Your WordPress Blog! Step By Step Guide by Marian Krajcovic 2010 Marian Krajcovic You may NOT resell or giveaway this ebook! 1 If you have many WordPress blogs and especially

More information

RNA-Seq Analysis With the Tuxedo Suite

RNA-Seq Analysis With the Tuxedo Suite June 2016 RNA-Seq Analysis With the Tuxedo Suite Dena Leshkowitz Introduction In this exercise we will learn how to analyse RNA-Seq data using the Tuxedo Suite tools: Tophat, Cuffmerge, Cufflinks and Cuffdiff.

More information

CCIS 2.7 Troubleshooting

CCIS 2.7 Troubleshooting CCIS 2.7 Troubleshooting TSS AB Sweden Phone +46 (0)8 630 06 06 e-mail customer.service@tss.se web www.tss.se IMPORTANT To install the CCIS software, CCIS Assistant and TempTracer drivers, full administrator

More information

ArcGIS Online Tutorial

ArcGIS Online Tutorial ArcGIS Online Tutorial ArcGIS Online allows users to make interactive maps or applications and easily share them with others. The University of Minnesota has an organizational account that can be logged

More information