Workshop I. The files related to the two different parts of this workshop have been separated into two directories.

Size: px
Start display at page:

Download "Workshop I. The files related to the two different parts of this workshop have been separated into two directories."

Transcription

1 Introduction High Throughput Genome Sequencing Processing ChIP Seq Data In this workshop you will be taken through Workshop I Introduction 1. The typical steps you have to follow to identify a biosynthetic gene cluster of interest in the contigs resulting from the high throughput sequencing of a microbial genome. 2. Process and visualize data from a ChIP seq experiment to determine regions of the genome where a DNA binding protein binds. The computers in the computer room in the IUC are connected to a Linux server on which accounts have been created for you. All the software required for you to carry out the tasks of this workshop are installed on this server and is accessible to you. This is because some of the software you will be using in the workshop is not available for MS Windows. The files related to the two different parts of this workshop have been separated into two directories. 1. genome: In this directory you will be doing things related to the Next Generation Sequencing (NGS) data of a new bacterial genome. 2. ChIP Seq: Here you will be doing things related to the analysis of ChIP Seq data. To list files and directories in the current directory use the command. l List the file in the current working directory. List the files in the long format. In this output you can see, amongst other information, the sizes of the listed files. Same as l except that the file sizes are mentioned in lh human friendly format. The table below shows the commands you use for moving from one directory to another. pwd cd cd genome cd.. Display the current working directory Go to your home directory Go to the genome (sub)directory from your home (parent) directory. Go to the parent directory of your current directory. cd ChIP SeqGo to the ChIP Seq (sub)directory from your home (parent) directory. All files which will be used as input to different programs are plain text files. All output file produced by different programs, with the exception of BLAST database and Bowtie2 index files, are ao plain text files. You are encouraged to view both the input and output file to see what they really look like. You may use the file viewer lessto view files. You start less like below less file_to_view 1/10

2 less wraps long lines by default but sometimes it is better not to wrap them. While you are in less you may press " S" (dash followed by capital S) to prevent less from wrapping long lines. To move up and down the file you can use the arrow keys. You might find it faster to use the "Page Up" and "Page Down" keys to scroll through large files quickly. To exit from less just press "q". For very long files it might be better to just see the top and / or bottom of the files. You can use the programs head and tail for doing so. head file_to_view tail file_to view Use Putty to connect to this server. ec eu west 1.compute.amazonaws.com as the user mentioned on the label on your computer. We may have already done this for you. Note that the name of the server to connect to during the actual workshop will be different from the one mentioned above. The two screenshots below show approximately what you should get on your screen. 2/10

3 Unless otherwise mentioned, all the work listed below should be carried out in the terminal window shown in the screenshot above. Any commands given in this window will run on the remote Linux server. In the instructions below, commands that you have to type are shown in brown colour while output of commands is shown in green colour. Filenames are ao mentioned in blue colour. It is possbile to select and copy commands from here and paste (Control V) them into the terminal. You may have to press enter after you have pasted the command into the Putty terminal to set the command running. If you find that control v does not paste whatever you have copied then try right clicking in the Putty terminal. Right clicking should paste your copied command into the Putty terminal. Remember, Linux is case sensitive. "Ls" does not mean the same thing as "". In the commands mentioned below there is a blank line between two commands. Sometimes you will see commands like addseqtoprodigal.pl gbkfile prodigal_out.gbk\ fasta all_contigs.fna > prodigal_with_seq.gbk In such cases the back slash on the first line has been used to break the command over two lines. The back slash is important and it should be the last character on the first line. Cut and paste such commands exactly as they are written (i.e. both lines at the same time). Linux keeps a history of the commands you have typed at the terminal. So you can recall older commands by pressing the up arrow key. To run a recalled command simply press enter. You may edit the command before pressing enter to run a variation of the old command. Now we are ready to start the first part of this workshop. High throughput genome sequencing The sequencers produce reads which are then assembled into contigs by an assembler. Contigs vary in length and for a typical actinobacterial genome you might get 400 to 2000 contigs 3/10

4 depending upon the quality of reads and the quality of assembly. In this workshop we will 1. Use a GC frameplot based gene prediction tool to predict genes in all the contigs. 2. Make a BLAST database of the contigs and use it to identify those contigs which possibly have NRPS gene(s). 3. Process the output produced when we submit our collection of contigs to an automated annotation server (RAST). 4. Inspect the RAST annotation for a selected contig in Artemis. We start by changing to the appropriate directory. cd cd genome # to change to your home directory # to change to the genome directory # to list the files in the genome directory You should see the following three files listed. all_contigs.fna nrpsprobe.faa prodigal_rast.gbk Use the less command to view all_contigs.fna. less all_contigs.fna When you have finished viewing the file, press "q" to exit from less. The file all_contigs.fnais a fasta file containing the nucleotide sequences of all the contigs we have got from the assembler. This file is the starting material for this part of the workshop. Now we will use prodigal to identify the protein coding sequences in the contigs. prodigal i all_contigs.fna o prodigal_out.gbk Wait for the above command to finish then In addition to the other files, you should now have a file named prodigal_out.gbk. Have a look at this file using the text file viewer less. less prodigal_out.gbk In this file, Prodigal has written, in Genbank format, where it has predicted protein coding regions to be in all of our contigs. This file does not contain any nucleotide sequence but the Genbank file we want to submit to RAST must contain nucleotide sequence as well. So we have to add the respective nucleotide sequences to this file. To do so we use a Perl script addseqtoprodigal.pl. addseqtoprodigal.pl gbkfile prodigal_out.gbk \ fasta all_contigs.fna > prodigal_with_seq.gbk less prodigal_with_seq.gbk 4/10

5 The file prodigal_with_seq.gbk is fit for submission to the RAST annotation server. RAST usually takes about one day to return the results. So the output which comes back from RAST has been placed in the file prodigal_rast.gbkin the current directory. Have a look at this file. less prodigal_rast.gbk We ao want to be able to check whether proteins similar to proteins of our interest are encoded in the genome we have just sequenced. To do this, we make a BLAST database of all the contigs and then search this database using our proteins of interest (from other organisms) as the query. To make a BLAST database we use the command makeblastdb. makeblastdb in all_contigs.fna dbtype nucl \ title "Summer School 2012 example" out example The above command makes a BLAST database named example. all_contigs.fna example.nin nrpsprobe.faa prodigal_rast.gbk example.nhr example.nsq prodigal_out.gbk prodigal_with_seq.gbk The BLAST database consists of three files example.nhr, example.ninand, example.nsq. To search the database just made with a nucleotide query we can use the command blastn. But our query is a protein sequence so we will use the command tblastn. Our query sequence is the amino acid sequence of an NRPS (SCO3230 from Streptomyces coelicolor). tblastn query nrpsprobe.faa db example evalue 1e 10 out blast.out tblastn query nrpsprobe.faa db example evalue 1e 10 \ outfmt 7 out tabular.out Both the above commands run tblastn but they produce output in the normal BLAST format and in the tabular format respectively. less blast.out less tabular.out The tabular output above does not show the lengths of the hits which is something we might be interested in. So we will use the script blasttable.plto make a table from blast.out which contains the lengths of hits. This script ao sorts the hits in descending order by hit lengths. blasttable.pl in blast.out > blast_sorted less blast_sorted From the contents of the file blast_sorted we can see that contig_546, contig_43 and, contig_83 are three long contigs encoding containing NRPS like proteins. We now extract them from the large Genbank contig file for viewing in Artemis. 5/10

6 onegbk.pl in prodigal_rast.gbk wanted contig_546 > contig_546_rast.gbk onegbk.pl in prodigal_rast.gbk wanted contig_43 > contig_43_rast.gbk onegbk.pl in prodigal_rast.gbk wanted contig_83 > contig_83_rast.gbk You will be running Artemis not on the Linux server, where you have been doing all the work until now, but on the Windows computer you are using here. To download the three Genbank files to your local computer, right click on the three links below and save the files locally. Windows will try to save these files as.html files. Make sure you save them as.gbk files. 1. contig_546_rast.gbk 2. contig_43_rast.gbk 3. contig_83_rast.gbk For the purpose of this workshop we will focus on contig_83_rast.gbkif time permits, you can ao view the other two files in the same way Now start Artemis by clicking here and open contig_83_rast.gbkin Artemis. In the menu, click on "View" then "CDS Genes And Products". A new window will open. Double clicking on a gene in the new window shows that gene in the main window. Can you find the gene which was picked up in the BLAST with the NRPS probe? Ao make sure you try the GC Frameplot found in the Graphs menu. What do you think the product of this gene cluster is? 6/10

7 Artemis main window Artemis CDS Genes and Products windows ChIP seq ChIP seq data comes in the form of reads from the sequencer and usually you have more than one set of reads because you want to to make a comparison between two (or more) strains. In the example we are doing today we have used the antibody against the BldM protein of S. venezuelae for the chromatin immunoprecipitation of DNA from two strains. 1. Wild type strain of Streptomyces venezuelae 2. bldm deletion mutant of Streptomyces venezuelae The reads are in the form of fastq files. These reads are aligned to the reference genome using an aligner software. Usually we get a lot of reads, therefore the alignment takes a long time and significant computing power. The tool we use for alignment is known as Bowtie2. Alignment too take both the sequence of the reads and the quality of reads into account when doing the alignment. Before we can use bowtie to align our reads to our reference genome we need to make a bowtie index for the reference genome using the command bowtie2 build. bowtie2 build reads fasta files not genbank files so we need to convert our genbank file to a fasta file before calling bowtie2 build. gbk2fasta.pl in SvSection.gbk out sven.fna bowtie2 build sven.fna sven In addition to other files, you should see the following 6 files listed. Together these six files make up the bowtie2 index which bowtie2 uses to carry out alignments of reads. 7/10

8 sven.1.bt2 sven.2.bt2 sven.3.bt2 sven.4.bt2 sven.rev.1.bt2 sven.rev.2.bt2 Now that we have built the index of the reference genome we can align the two sets of reads to reference genome using "bowtie2". bowtie2 phred64 x sven U bldm.fastq S bldm_bowtie2 bowtie2 phred64 x sven U dbldm.fastq S dbldm_bowtie2 Now you should have two more files in your directory. bldm_bowtie2 dbldm_bowtie2 head bldm_bowtie2 The output of bowtie2 is in Sequence Alignment/Map (SAM) format which is a standard format for storing the alignment of large numbers of reads to reference nucleotide databases. Now we process the SAM format files produced above to get graph files which can be used to view the coverage in the Integrated Genome Browser (IGB). bowtie2track.pl in bldm_bowtie2 out bldm.gr bowtie2track.pl in dbldm_bowtie2 out dbldm.gr Inspect the tops of the two graph files produced. head bldm.gr head dbldm.gr We will use Integrated Genome Browser (IGB) to view the graph files produced above. We ao need to see the reference genome in IGB at the same time so that we can see where the peaks of binding are in relation to the features in the genome. For this, we need to produce a BED file containing the features of the genome. gbk2bed.pl in SvSection.gbk out sven.bed The above will produce sven.bedwhich can be read by IGB. Now we have a BED file and two graph files. We are ready to start IGB. You will be running IGB on the local machine so the BED and graph files have to be downloaded to your local machine. To download the files to your local computer, right click on the four links below and save the files locally. Remember where you save them. If windows tries to save them as.html files, make sure you save them with the extensions shown below otherwise IGB will fail to recognize them. 1. sven.bed 2. sven.fa 3. bldm.gr 8/10

9 4. dbldm.gr Start IGB by clicking here. It takes a while to start. Please be patient. Referring to figure 1 below, do the following. 1. First open the file sven.bed 2. Bring the horizontal zoom slider at the top of the window to about the middle of the scale. In the Data Access tab below change the Load Mode from Region to Chromosome. 3. Press the "Load Data" button in the lower right corner. 4. Then open the two graph files, bldm.grand dbldm.gr. You can open them at the same time. 5. For both the graph files, in the Data Access tab, change the load mode from Region to Chromosome and press the "Load Data" button. 6. Do the same for sven.fa. 7. You should now see something similar to the screen shot in Figure 1. Referring to figure 2 below, do the following. Figure 1 1. Select the two graph tracks by pressing shift and clicking on the boxes on the left of the tracks. Arrowheads should now appear to the right of the two boxes you clicked on. 2. With both tracks selected, go to the Graph Adjuster tab below then a. Change the style to Bar b. Change the Max value of the Y Axis Scale to 70 Now your IGB window should look something like the screen shot below. 9/10

10 Figure 2 Using the "Horizontal Scroll Slider", bring the gene SVEN_4453 into view. Can you tell why the track "dbldm" is completely blank where SVEN_4453 is? Try to use the search tab to search for the genes SVEN_4151 and SVEN_4210. SVEN_3937 is an example where a peak is present in both the wild type as well as the BldM deletion mutant. The region around the gene SVEN_3966 is difficult to interpret. See what other peaks (good and bad) you can find. 10/10

Bioinformatics Resources at a Glance

Bioinformatics Resources at a Glance Bioinformatics Resources at a Glance A Note about FASTA Format There are MANY free bioinformatics tools available online. Bioinformaticists have developed a standard format for nucleotide and protein sequences

More information

RETRIEVING SEQUENCE INFORMATION. Nucleotide sequence databases. Database search. Sequence alignment and comparison

RETRIEVING SEQUENCE INFORMATION. Nucleotide sequence databases. Database search. Sequence alignment and comparison RETRIEVING SEQUENCE INFORMATION Nucleotide sequence databases Database search Sequence alignment and comparison Biological sequence databases Originally just a storage place for sequences. Currently the

More information

Version 5.0 Release Notes

Version 5.0 Release Notes Version 5.0 Release Notes 2011 Gene Codes Corporation Gene Codes Corporation 775 Technology Drive, Ann Arbor, MI 48108 USA 1.800.497.4939 (USA) +1.734.769.7249 (elsewhere) +1.734.769.7074 (fax) www.genecodes.com

More information

Analysis of ChIP-seq data in Galaxy

Analysis of ChIP-seq data in Galaxy Analysis of ChIP-seq data in Galaxy November, 2012 Local copy: https://galaxy.wi.mit.edu/ Joint project between BaRC and IT Main site: http://main.g2.bx.psu.edu/ 1 Font Conventions Bold and blue refers

More information

Analyzing A DNA Sequence Chromatogram

Analyzing A DNA Sequence Chromatogram LESSON 9 HANDOUT Analyzing A DNA Sequence Chromatogram Student Researcher Background: DNA Analysis and FinchTV DNA sequence data can be used to answer many types of questions. Because DNA sequences differ

More information

Tutorial. Reference Genome Tracks. Sample to Insight. November 27, 2015

Tutorial. Reference Genome Tracks. Sample to Insight. November 27, 2015 Reference Genome Tracks November 27, 2015 Sample to Insight CLC bio, a QIAGEN Company Silkeborgvej 2 Prismet 8000 Aarhus C Denmark Telephone: +45 70 22 32 44 www.clcbio.com support-clcbio@qiagen.com Reference

More information

Merging Labels, Letters, and Envelopes Word 2013

Merging Labels, Letters, and Envelopes Word 2013 Merging Labels, Letters, and Envelopes Word 2013 Merging... 1 Types of Merges... 1 The Merging Process... 2 Labels - A Page of the Same... 2 Labels - A Blank Page... 3 Creating Custom Labels... 3 Merged

More information

UGENE Quick Start Guide

UGENE Quick Start Guide Quick Start Guide This document contains a quick introduction to UGENE. For more detailed information, you can find the UGENE User Manual and other special manuals in project website: http://ugene.unipro.ru.

More information

To Begin Customize Office

To Begin Customize Office To Begin Customize Office Each of us needs to set up a work environment that is comfortable and meets our individual needs. As you work with Office 2007, you may choose to modify the options that are available.

More information

Databases and mapping BWA. Samtools

Databases and mapping BWA. Samtools Databases and mapping BWA Samtools FASTQ, SFF, bax.h5 ACE, FASTG FASTA BAM/SAM GFF, BED GenBank/Embl/DDJB many more File formats FASTQ Output format from Illumina and IonTorrent sequencers. Quality scores:

More information

XRD CONVERSION USER S MANUAL

XRD CONVERSION USER S MANUAL XRD CONVERSION USER S MANUAL Table of Contents Document Layout........................................ 1 Starting XRD Conversion.................................. 2 XRD Conversion Main Window............................

More information

WAM Remote Wireless Asset Monitoring. Website User Guide

WAM Remote Wireless Asset Monitoring. Website User Guide WAM Remote Wireless Asset Monitoring Website User Guide Table of Contents Overview... 2 Login Page... 2 Quick Start Guide...3-4 Locations Page... 5 Devices Page... 5 Register Devices Page... 6 Temp or

More information

Apache Configuration

Apache Configuration Apache Configuration In this exercise, we are going to get Apache configured to handle a couple of different websites. We are just going to use localhost (the default address for a server), but the same

More information

Snagit 10. Getting Started Guide. March 2010. 2010 TechSmith Corporation. All rights reserved.

Snagit 10. Getting Started Guide. March 2010. 2010 TechSmith Corporation. All rights reserved. Snagit 10 Getting Started Guide March 2010 2010 TechSmith Corporation. All rights reserved. Introduction If you have just a few minutes or want to know just the basics, this is the place to start. This

More information

Command Line - Part 1

Command Line - Part 1 Command Line - Part 1 STAT 133 Gaston Sanchez Department of Statistics, UC Berkeley gastonsanchez.com github.com/gastonstat Course web: gastonsanchez.com/teaching/stat133 GUIs 2 Graphical User Interfaces

More information

Instructions for Formatting APA Style Papers in Microsoft Word 2010

Instructions for Formatting APA Style Papers in Microsoft Word 2010 Instructions for Formatting APA Style Papers in Microsoft Word 2010 To begin a Microsoft Word 2010 project, click on the Start bar in the lower left corner of the screen. Select All Programs and then find

More information

When you install Mascot, it includes a copy of the Swiss-Prot protein database. However, it is almost certain that you and your colleagues will want

When you install Mascot, it includes a copy of the Swiss-Prot protein database. However, it is almost certain that you and your colleagues will want 1 When you install Mascot, it includes a copy of the Swiss-Prot protein database. However, it is almost certain that you and your colleagues will want to search other databases as well. There are very

More information

Vector NTI Advance 11 Quick Start Guide

Vector NTI Advance 11 Quick Start Guide Vector NTI Advance 11 Quick Start Guide Catalog no. 12605050, 12605099, 12605103 Version 11.0 December 15, 2008 12605022 Published by: Invitrogen Corporation 5791 Van Allen Way Carlsbad, CA 92008 U.S.A.

More information

State of Michigan Data Exchange Gateway. Web-Interface Users Guide 12-07-2009

State of Michigan Data Exchange Gateway. Web-Interface Users Guide 12-07-2009 State of Michigan Data Exchange Gateway Web-Interface Users Guide 12-07-2009 Page 1 of 21 Revision History: Revision # Date Author Change: 1 8-14-2009 Mattingly Original Release 1.1 8-31-2009 MM Pgs 4,

More information

Introduction to the UNIX Operating System and Open Windows Desktop Environment

Introduction to the UNIX Operating System and Open Windows Desktop Environment Introduction to the UNIX Operating System and Open Windows Desktop Environment Welcome to the Unix world! And welcome to the Unity300. As you may have already noticed, there are three Sun Microsystems

More information

Geocortex HTML 5 Viewer Manual

Geocortex HTML 5 Viewer Manual 1 FAQ Nothing Happens When I Print? How Do I Search? How Do I Find Feature Information? How Do I Print? How can I Email A Map? How Do I See the Legend? How Do I Find the Coordinates of a Location? How

More information

CLC Sequence Viewer USER MANUAL

CLC Sequence Viewer USER MANUAL CLC Sequence Viewer USER MANUAL Manual for CLC Sequence Viewer 7.6.1 Windows, Mac OS X and Linux September 3, 2015 This software is for research purposes only. QIAGEN Aarhus A/S Silkeborgvej 2 Prismet

More information

Searching Nucleotide Databases

Searching Nucleotide Databases Searching Nucleotide Databases 1 When we search a nucleic acid databases, Mascot always performs a 6 frame translation on the fly. That is, 3 reading frames from the forward strand and 3 reading frames

More information

Tutorial for Windows and Macintosh. Preparing Your Data for NGS Alignment

Tutorial for Windows and Macintosh. Preparing Your Data for NGS Alignment Tutorial for Windows and Macintosh Preparing Your Data for NGS Alignment 2015 Gene Codes Corporation Gene Codes Corporation 775 Technology Drive, Ann Arbor, MI 48108 USA 1.800.497.4939 (USA) 1.734.769.7249

More information

CONFIGURING VIRTUAL TERMINAL: This is the screen you will see when you first open Virtual Terminal

CONFIGURING VIRTUAL TERMINAL: This is the screen you will see when you first open Virtual Terminal CONFIGURING VIRTUAL TERMINAL: This is the screen you will see when you first open Virtual Terminal Before you begin you must configure the Options for Virtual Terminal. Click on the Options drop down menu

More information

Excel 2003: Ringtones Task

Excel 2003: Ringtones Task Excel 2003: Ringtones Task 1. Open up a blank spreadsheet 2. Save the spreadsheet to your area and call it Ringtones.xls 3. Add the data as shown here, making sure you keep to the cells as shown Make sure

More information

Intermediate PowerPoint

Intermediate PowerPoint Intermediate PowerPoint Charts and Templates By: Jim Waddell Last modified: January 2002 Topics to be covered: Creating Charts 2 Creating the chart. 2 Line Charts and Scatter Plots 4 Making a Line Chart.

More information

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9. Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format

More information

Instructions for Creating Silly Survey Database

Instructions for Creating Silly Survey Database Instructions for Creating Silly Survey Database Create a New Database 1. Find the shortcut or the file that starts MS Access and click it to activate the program. 2. In the Create a New Database Using

More information

Miami University RedHawk Cluster Connecting to the Cluster Using Windows

Miami University RedHawk Cluster Connecting to the Cluster Using Windows Miami University RedHawk Cluster Connecting to the Cluster Using Windows The RedHawk cluster is a general purpose research computing resource available to support the research community at Miami University.

More information

Introduction to Word 2007

Introduction to Word 2007 Introduction to Word 2007 You will notice some obvious changes immediately after starting Word 2007. For starters, the top bar has a completely new look, consisting of new features, buttons and naming

More information

Manual English KOI Desktop App 2.0.x

Manual English KOI Desktop App 2.0.x Manual English KOI Desktop App 2.0.x KOI Kommunikation, Organisation, Information Comm-Unity EDV GmbH 2010 Contents Introduction... 3 Information on how to use the documentation... 3 System requirements:...

More information

How do you use word processing software (MS Word)?

How do you use word processing software (MS Word)? How do you use word processing software (MS Word)? Page 1 How do you use word processing software (MS Word)? Lesson Length: 2 hours Lesson Plan: The following text will lead you (the instructor) through

More information

Model 288B Charge Plate Graphing Software Operators Guide

Model 288B Charge Plate Graphing Software Operators Guide Monroe Electronics, Inc. Model 288B Charge Plate Graphing Software Operators Guide P/N 0340175 288BGraph (80207) Software V2.01 100 Housel Ave PO Box 535 Lyndonville NY 14098 1-800-821-6001 585-765-2254

More information

WORDPAD TUTORIAL WINDOWS 7

WORDPAD TUTORIAL WINDOWS 7 WORDPAD TUTORIAL WINDOWS 7 Quick Access bar Home Tab Triangles = More Commands Groups on the Home tab Right paragraph margin Left paragraph Margin & Indent Paragraphs Ruler Hover the mouse pointer over

More information

Instructions for Formatting MLA Style Papers in Microsoft Word 2010

Instructions for Formatting MLA Style Papers in Microsoft Word 2010 Instructions for Formatting MLA Style Papers in Microsoft Word 2010 To begin a Microsoft Word 2010 project, click on the Start bar in the lower left corner of the screen. Select All Programs and then find

More information

Microsoft PowerPoint Tutorial

Microsoft PowerPoint Tutorial Microsoft PowerPoint Tutorial Contents Starting MS PowerPoint... 1 The MS PowerPoint Window... 2 Title Bar...2 Office Button...3 Saving Your Work... 3 For the first time... 3 While you work... 3 Backing

More information

DNA Sequencing Overview

DNA Sequencing Overview DNA Sequencing Overview DNA sequencing involves the determination of the sequence of nucleotides in a sample of DNA. It is presently conducted using a modified PCR reaction where both normal and labeled

More information

NCBI resources III: GEO and ftp site. Yanbin Yin Spring 2013

NCBI resources III: GEO and ftp site. Yanbin Yin Spring 2013 NCBI resources III: GEO and ftp site Yanbin Yin Spring 2013 1 Homework assignment 2 Search colon cancer at GEO and find a data Series and perform a GEO2R analysis Write a report (in word or ppt) to include

More information

TYPING IN ARABIC (WINDOWS XP)

TYPING IN ARABIC (WINDOWS XP) TYPING IN ARABIC (WINDOWS XP) There are two steps involved in setting up your Windows XP computer for Arabic. You must first install support for right-to-left languages; then you must enable Arabic input.

More information

ID of alternative translational initiation events. Description of gene function Reference of NCBI database access and relative literatures

ID of alternative translational initiation events. Description of gene function Reference of NCBI database access and relative literatures Data resource: In this database, 650 alternatively translated variants assigned to a total of 300 genes are contained. These database records of alternative translational initiation have been collected

More information

Rational Software. Getting Started with Rational Customer Service Online Case Management. Release 1.0

Rational Software. Getting Started with Rational Customer Service Online Case Management. Release 1.0 Rational Software Getting Started with Rational Customer Service Online Case Management Release 1.0 Table of Contents 1. Introduction 1 2. Site Capabilities 1 2.1 Service Requests 1 2.2 Solutions Knowledge

More information

A Short Introduction to Transcribing with ELAN. Ingrid Rosenfelder Linguistics Lab University of Pennsylvania

A Short Introduction to Transcribing with ELAN. Ingrid Rosenfelder Linguistics Lab University of Pennsylvania A Short Introduction to Transcribing with ELAN Ingrid Rosenfelder Linguistics Lab University of Pennsylvania January 2011 Contents 1 Source 2 2 Opening files for annotation 2 2.1 Starting a new transcription.....................

More information

Performance and Contract Management System Data Submission Guide

Performance and Contract Management System Data Submission Guide This guide is a review of how to submit data into the Performance and Contract Management System (PCMS). Contents Logging in... 2 Performance Reporting - Accessing Contract Deliverables... 2 Deliverable

More information

Welcome to Bridgit @ CSU The Software Used To Data Conference.

Welcome to Bridgit @ CSU The Software Used To Data Conference. Welcome to Bridgit @ CSU The Software Used To Data Conference. Overview SMART Bridgit software is a client/server application that lets you share programs and information with anyone, anywhere in the world.

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1 Migrating to Excel 2010 - Excel - Microsoft Office 1 of 1 In This Guide Microsoft Excel 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key

More information

SICKLE CELL ANEMIA & THE HEMOGLOBIN GENE TEACHER S GUIDE

SICKLE CELL ANEMIA & THE HEMOGLOBIN GENE TEACHER S GUIDE AP Biology Date SICKLE CELL ANEMIA & THE HEMOGLOBIN GENE TEACHER S GUIDE LEARNING OBJECTIVES Students will gain an appreciation of the physical effects of sickle cell anemia, its prevalence in the population,

More information

Excel 2003 A Beginners Guide

Excel 2003 A Beginners Guide Excel 2003 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information

2Creating Reports: Basic Techniques. Chapter

2Creating Reports: Basic Techniques. Chapter 2Chapter 2Creating Reports: Chapter Basic Techniques Just as you must first determine the appropriate connection type before accessing your data, you will also want to determine the report type best suited

More information

STATGRAPHICS Online. Statistical Analysis and Data Visualization System. Revised 6/21/2012. Copyright 2012 by StatPoint Technologies, Inc.

STATGRAPHICS Online. Statistical Analysis and Data Visualization System. Revised 6/21/2012. Copyright 2012 by StatPoint Technologies, Inc. STATGRAPHICS Online Statistical Analysis and Data Visualization System Revised 6/21/2012 Copyright 2012 by StatPoint Technologies, Inc. All rights reserved. Table of Contents Introduction... 1 Chapter

More information

Manual. OIRE Escuela de Profesiones de la Salud. Power Point 2007

Manual. OIRE Escuela de Profesiones de la Salud. Power Point 2007 Power Point 2007 Manual OIRE Escuela de Profesiones de la Salud Power Point 2007 2008 The New Power Point Interface PowerPoint is currently the most common software used for making visual aids for presentations.

More information

8 CREATING FORM WITH FORM WIZARD AND FORM DESIGNER

8 CREATING FORM WITH FORM WIZARD AND FORM DESIGNER 8 CREATING FORM WITH FORM WIZARD AND FORM DESIGNER 8.1 INTRODUCTION Forms are very powerful tool embedded in almost all the Database Management System. It provides the basic means for inputting data for

More information

PHI Audit Us er Guide

PHI Audit Us er Guide PHI Audit Us er Guide Table Of Contents PHI Audit Overview... 1 Auditable Actions... 1 Navigating the PHI Audit Dashboard... 2 Access PHI Audit... 4 Create a Patient Audit... 6 Create a User Audit... 10

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

Appendix A How to create a data-sharing lab

Appendix A How to create a data-sharing lab Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,

More information

Microsoft Outlook Introduction

Microsoft Outlook Introduction Microsoft Outlook Introduction Division of Information Technology February 2016 Contents Document Management History... 3 Introduction... 4 Getting Started... 4 Using MS Outlook... 4 What MS Outlook looks

More information

Dreamweaver Tutorials Creating a Web Contact Form

Dreamweaver Tutorials Creating a Web Contact Form Dreamweaver Tutorials This tutorial will explain how to create an online contact form. There are two pages involved: the form and the confirmation page. When a user presses the submit button on the form,

More information

MICROSOFT ACCESS 2003 TUTORIAL

MICROSOFT ACCESS 2003 TUTORIAL MICROSOFT ACCESS 2003 TUTORIAL M I C R O S O F T A C C E S S 2 0 0 3 Microsoft Access is powerful software designed for PC. It allows you to create and manage databases. A database is an organized body

More information

WebSphere Business Monitor V7.0 Business space dashboards

WebSphere Business Monitor V7.0 Business space dashboards Copyright IBM Corporation 2010 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 7.0 LAB EXERCISE WebSphere Business Monitor V7.0 What this exercise is about... 2 Lab requirements... 2 What you should

More information

Microsoft Word 2010 Basics

Microsoft Word 2010 Basics Microsoft Word 2010 Basics 1. Start Word if the Word 2007 icon is not on the desktop: a. Click Start>Programs>Microsoft Office>Microsoft Word 2007 b. The Ribbon- seen across the top of Microsoft Word.

More information

FrontDesk Installation And Configuration

FrontDesk Installation And Configuration Chapter 2 FrontDesk Installation And Configuration FrontDesk v4.1.25 FrontDesk Software Install Online Software Activation Installing State Related Databases Setting up a Workstation Internet Transfer

More information

Creating a table of contents quickly in Word

Creating a table of contents quickly in Word Creating a table of contents quickly in Word This note shows you how to set up a table of contents that can be generated and updated quickly and easily, even for the longest and most complex documents.

More information

Excel 2007 A Beginners Guide

Excel 2007 A Beginners Guide Excel 2007 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information

AutoDWG DWGSee DWG Viewer. DWGSee User Guide

AutoDWG DWGSee DWG Viewer. DWGSee User Guide DWGSee User Guide DWGSee is comprehensive software for viewing, printing, marking and sharing DWG files. It is fast, powerful and easy-to-use for every expert and beginners. Starting DWGSee After you install

More information

Lab 2: MS ACCESS Tables

Lab 2: MS ACCESS Tables Lab 2: MS ACCESS Tables Summary Introduction to Tables and How to Build a New Database Creating Tables in Datasheet View and Design View Working with Data on Sorting and Filtering 1. Introduction Creating

More information

Oracle BIEE 11g Reports and Dashboard Hands On

Oracle BIEE 11g Reports and Dashboard Hands On Username: student Oracle BIEE 11g Reports and Dashboard Hands On Vlamis Software Solutions is one of the most respected training organizations in the Oracle Business Intelligence community because our

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 Screen Elements Quick Access Toolbar The Ribbon Formula Bar Expand Formula Bar Button File Menu Vertical Scroll Worksheet Navigation Tabs Horizontal Scroll Bar Zoom

More information

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL

More information

SECTION 2-1: OVERVIEW SECTION 2-2: FREQUENCY DISTRIBUTIONS

SECTION 2-1: OVERVIEW SECTION 2-2: FREQUENCY DISTRIBUTIONS SECTION 2-1: OVERVIEW Chapter 2 Describing, Exploring and Comparing Data 19 In this chapter, we will use the capabilities of Excel to help us look more carefully at sets of data. We can do this by re-organizing

More information

Microsoft Word 2010. Quick Reference Guide. Union Institute & University

Microsoft Word 2010. Quick Reference Guide. Union Institute & University Microsoft Word 2010 Quick Reference Guide Union Institute & University Contents Using Word Help (F1)... 4 Window Contents:... 4 File tab... 4 Quick Access Toolbar... 5 Backstage View... 5 The Ribbon...

More information

Microsoft Windows Overview Desktop Parts

Microsoft Windows Overview Desktop Parts Microsoft Windows Overview Desktop Parts Icon Shortcut Icon Window Title Bar Menu Bar Program name Scroll Bar File Wallpaper Folder Start Button Quick Launch Task Bar or Start Bar Time/Date function 1

More information

Virtual Office Remote Installation Guide

Virtual Office Remote Installation Guide Virtual Office Remote Installation Guide Table of Contents VIRTUAL OFFICE REMOTE INSTALLATION GUIDE... 3 UNIVERSAL PRINTER CONFIGURATION INSTRUCTIONS... 12 CHANGING DEFAULT PRINTERS ON LOCAL SYSTEM...

More information

Notepad++ The COMPSCI 101 Text Editor for Windows. What is a text editor? Install Python 3

Notepad++ The COMPSCI 101 Text Editor for Windows. What is a text editor? Install Python 3 Notepad++ The COMPSCI 101 Text Editor for Windows The text editor that we will be using in the Computer Science labs for creating our Python programs is called Notepad++ and http://notepad-plus-plus.org

More information

PuTTY/Cygwin Tutorial. By Ben Meister Written for CS 23, Winter 2007

PuTTY/Cygwin Tutorial. By Ben Meister Written for CS 23, Winter 2007 PuTTY/Cygwin Tutorial By Ben Meister Written for CS 23, Winter 2007 This tutorial will show you how to set up and use PuTTY to connect to CS Department computers using SSH, and how to install and use the

More information

MyOra 3.5. User Guide. SQL Tool for Oracle. Kris Murthy

MyOra 3.5. User Guide. SQL Tool for Oracle. Kris Murthy MyOra 3.5 SQL Tool for Oracle User Guide Kris Murthy Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL Editor...

More information

GYM PLANNER. User Guide. Copyright Powerzone. All Rights Reserved. Software & User Guide produced by Sharp Horizon. www.sharphorizon.com.

GYM PLANNER. User Guide. Copyright Powerzone. All Rights Reserved. Software & User Guide produced by Sharp Horizon. www.sharphorizon.com. GYM PLANNER User Guide Copyright Powerzone. All Rights Reserved. Software & User Guide produced by Sharp Horizon. www.sharphorizon.com. Installing the Software The Powerzone gym Planner is a piece of software

More information

Linux command line. An introduction to the Linux command line for genomics. Susan Fairley

Linux command line. An introduction to the Linux command line for genomics. Susan Fairley Linux command line An introduction to the Linux command line for genomics Susan Fairley Aims Introduce the command line Provide an awareness of basic functionality Illustrate with some examples Provide

More information

Introduction to Microsoft Excel 2007/2010

Introduction to Microsoft Excel 2007/2010 to Microsoft Excel 2007/2010 Abstract: Microsoft Excel is one of the most powerful and widely used spreadsheet applications available today. Excel's functionality and popularity have made it an essential

More information

HIT THE GROUND RUNNING MS WORD INTRODUCTION

HIT THE GROUND RUNNING MS WORD INTRODUCTION HIT THE GROUND RUNNING MS WORD INTRODUCTION MS Word is a word processing program. MS Word has many features and with it, a person can create reports, letters, faxes, memos, web pages, newsletters, and

More information

Microsoft PowerPoint 2010 Handout

Microsoft PowerPoint 2010 Handout Microsoft PowerPoint 2010 Handout PowerPoint is a presentation software program that is part of the Microsoft Office package. This program helps you to enhance your oral presentation and keep the audience

More information

Training Manual. Version 6

Training Manual. Version 6 Training Manual TABLE OF CONTENTS A. E-MAIL... 4 A.1 INBOX... 8 A.1.1 Create New Message... 8 A.1.1.1 Add Attachments to an E-mail Message... 11 A.1.1.2 Insert Picture into an E-mail Message... 12 A.1.1.3

More information

LOCKSS on LINUX. Installation Manual and the OpenBSD Transition 02/17/2011

LOCKSS on LINUX. Installation Manual and the OpenBSD Transition 02/17/2011 LOCKSS on LINUX Installation Manual and the OpenBSD Transition 02/17/2011 1 Table of Contents Overview... 3 LOCKSS Hardware... 5 Installation Checklist... 7 BIOS Settings... 10 Installation... 11 Firewall

More information

Adobe Acrobat 6.0 Professional

Adobe Acrobat 6.0 Professional Adobe Acrobat 6.0 Professional Manual Adobe Acrobat 6.0 Professional Manual Purpose The will teach you to create, edit, save, and print PDF files. You will also learn some of Adobe s collaborative functions,

More information

A Complete Example of Next- Gen DNA Sequencing Read Alignment. Presentation Title Goes Here

A Complete Example of Next- Gen DNA Sequencing Read Alignment. Presentation Title Goes Here A Complete Example of Next- Gen DNA Sequencing Read Alignment Presentation Title Goes Here 1 FASTQ Format: The de- facto file format for sharing sequence read data Sequence and a per- base quality score

More information

Microsoft Access 2010 Overview of Basics

Microsoft Access 2010 Overview of Basics Opening Screen Access 2010 launches with a window allowing you to: create a new database from a template; create a new template from scratch; or open an existing database. Open existing Templates Create

More information

MAGPOWR Spyder Firmware Update Instruction Manual

MAGPOWR Spyder Firmware Update Instruction Manual MAGPOWR TENSION CONTROL MAGPOWR Spyder Firmware Update Instruction Manual EN Spyder and Spyder-Plus MI 850A324 B COPYRIGHT All of the information herein is the exclusive proprietary property of Maxcess

More information

Instructions for Accessing the Advanced Computing Facility Supercomputing Cluster at the University of Kansas

Instructions for Accessing the Advanced Computing Facility Supercomputing Cluster at the University of Kansas ACF Supercomputer Access Instructions 1 Instructions for Accessing the Advanced Computing Facility Supercomputing Cluster at the University of Kansas ACF Supercomputer Access Instructions 2 Contents Instructions

More information

TestManager Administration Guide

TestManager Administration Guide TestManager Administration Guide RedRat Ltd July 2015 For TestManager Version 4.57-1 - Contents 1. Introduction... 3 2. TestManager Setup Overview... 3 3. TestManager Roles... 4 4. Connection to the TestManager

More information

Microsoft Office Access 2007 Basics

Microsoft Office Access 2007 Basics Access(ing) A Database Project PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: TRAININGLAB@MONROE.LIB.MI.US MONROE COUNTY LIBRARY SYSTEM 734-241-5770 1 840 SOUTH ROESSLER

More information

CASHNet Secure File Transfer Instructions

CASHNet Secure File Transfer Instructions CASHNet Secure File Transfer Instructions Copyright 2009, 2010 Higher One Payments, Inc. CASHNet, CASHNet Business Office, CASHNet Commerce Center, CASHNet SMARTPAY and all related logos and designs are

More information

MET 306 Activity 6. Using Pro/MFG Milling Operations Creo 2.0. Machining a Mast Step

MET 306 Activity 6. Using Pro/MFG Milling Operations Creo 2.0. Machining a Mast Step Using Pro/MFG Milling Operations Creo 2.0 Machining a Mast Step If the Trim option is grayed out when trimming the mill volume, Save (making sure the.asm file is going to the correct subdirectory), Exit

More information

Install MS SQL Server 2012 Express Edition

Install MS SQL Server 2012 Express Edition Install MS SQL Server 2012 Express Edition Sohodox now works with SQL Server Express Edition. Earlier versions of Sohodox created and used a MS Access based database for storing indexing data and other

More information

McAfee Endpoint Encryption Reporting Tool

McAfee Endpoint Encryption Reporting Tool McAfee Endpoint Encryption Reporting Tool User Guide Version 5.2.13 McAfee, Inc. McAfee, Inc. 3965 Freedom Circle, Santa Clara, CA 95054, USA Tel: (+1) 888.847.8766 For more information regarding local

More information

CD-HIT User s Guide. Last updated: April 5, 2010. http://cd-hit.org http://bioinformatics.org/cd-hit/

CD-HIT User s Guide. Last updated: April 5, 2010. http://cd-hit.org http://bioinformatics.org/cd-hit/ CD-HIT User s Guide Last updated: April 5, 2010 http://cd-hit.org http://bioinformatics.org/cd-hit/ Program developed by Weizhong Li s lab at UCSD http://weizhong-lab.ucsd.edu liwz@sdsc.edu 1. Introduction

More information

Word Processing programs and their uses

Word Processing programs and their uses Word Processing programs and their uses An application that provides extensive tools for creating all kinds of text based programs. They are not limited to working with text and enable you to add images

More information

Draw pie charts in Excel

Draw pie charts in Excel This activity shows how to draw pie charts in Excel 2007. Open a new Excel workbook. Enter some data you can use your own data if you wish. This table gives the % of European holidays sold by a travel

More information

LOG MANAGEMENT Update Log Setup Screen Update Log Options Use Update Log to track edits, adds and deletes Accept List Cancel

LOG MANAGEMENT Update Log Setup Screen Update Log Options Use Update Log to track edits, adds and deletes Accept List Cancel Log Management - Page 22-1 LOG MANAGEMENT There are various log options throughout ZonePro. A log file is a file that store information about changes that have been made while using ZonePro. Log files

More information

H-ITT CRS V2 Quick Start Guide. Install the software and test the hardware

H-ITT CRS V2 Quick Start Guide. Install the software and test the hardware H-ITT CRS V2 Quick Start Guide Revision E Congratulations on acquiring what may come to be one of the most important technology tools in your classroom! The H-ITT Classroom Response System is quite easy

More information

Lab 1 Beginning C Program

Lab 1 Beginning C Program Lab 1 Beginning C Program Overview This lab covers the basics of compiling a basic C application program from a command line. Basic functions including printf() and scanf() are used. Simple command line

More information