Dot Plot.

Slides:



Advertisements
Similar presentations
Spreadsheet Vocabulary
Advertisements

Spreadsheet Vocabulary Split the screen so you can see the words AND the crossword puzzle AND the quiz at the same time.
2 pt 3 pt 4 pt 5pt 1 pt 2 pt 3 pt 4 pt 5 pt 1 pt 2pt 3 pt 4pt 5 pt 1pt 2pt 3 pt 4 pt 5 pt 1 pt 2 pt 3 pt 4pt 5 pt 1pt E XCEL.
Spreadsheet Software lesson 14. This lesson includes the following sections: Spreadsheet Programs and Their Uses The Spreadsheet's Interface Entering.
Intermediate Formulas & Functions Instructor: Rachel Baltus.
Click the mouse to continue. Relative references Absolute referencesMixed references.
Dot Plot. Goal We will take two nucleotide base strings and look for common patterns – stretches where the bases match. GAATTCATACCAGATCACCGAAAACTGTCCTCCAA.
String and Lists Dr. Benito Mendoza. 2 Outline What is a string String operations Traversing strings String slices What is a list Traversing a list List.
T T02-06 Histogram (6 SD) Purpose Allows the analyst to analyze quantitative data by summarizing it in sorted format, scattergram by observation,
Visualizing Multiple Physician Office Locations Exercise 9 GIS in Planning and Public Health Wansoo Im, Ph.D.
T T02-04 Histogram (User Selected Classes) Purpose Allows the analyst to analyze quantitative data by summarizing it in sorted format, scattergram.
Physical Mapping II + Perl CIS 667 March 2, 2004.
T T02-02 Scattergram (by Observation) & Dot Plot (by Value) Purpose Allows the analyst to create line plots, bar graphs and pie charts from data,
REVIEW Excel Excel Absolute vs. Relative Address.
Matrix Mathematics in MATLAB and Excel
Relative and absolute addressing. Cell Referencing Cell referencing is the method by which you refer to a cell or series of cells in a formula Cell referencing.
1.
FIRST COURSE Excel Tutorial 1 Getting Started with Excel.
Excel – Lesson 1 Pasewark & PasewarkMicrosoft Office 2007: Introductory 1 Entering a Formula (continued) Formulas can include more than one operator. The.
Microsoft Office 2007 Excel Presented By: Steph Flatau.
Pairwise Alignment, Part I Constructing the Values and Directions Tables from 2 related DNA (or Protein) Sequences.
VOCAB REVIEW. letters at the top of the worksheet window that identify the vertical information in a worksheet column headings Click for the answer Next.
GIS 1 GIS Lecture 4 Geodatabases. GIS 2 Outline Administrative Data Example Data Tables Data Joins Common Datasets Spatial Joins ArcCatalog Geodatabases.
Lists in Python.
2/25: Using Microsoft Excel
CHAPTER 13 Creating a Workbook Part 1. Learning Objectives Understand spreadsheets and Excel Enter data in cells Edit cell content Work with columns and.
AGB 260: Agribusiness Information Technology Tables.
Active Cell Name Box Title Bar Formula Bar ColumnsMenu Bar Formatting Toolbar Standard Toolbar Rows Cell Fill Handle.
Definitions. Cell: Cell: Space in the intersection of a column (vertical division) and a row (horizontal division). Row: Row: A row runs horizontally.
Creating Charts for the Agency Budget Creating Budget Charts, Slide 1Copyright © 2004, Jim Schwab, University of Texas at Austin.
 Agenda: 4/24/13 o External Data o Discuss data manipulation tools and functions o Discuss data import and linking in Excel o Sorting Data o Date and.
GIS 1 GIS Lecture 4 Geodatabases Copyright – Kristen S. Kurland, Carnegie Mellon University.
10/3: Using Microsoft Excel
The introduction of Microsoft Excel. Spreadsheet Basic.
1. First of all we opened up a spreadsheet and started adding the data. 2. To work out the total cost for platinum, you times cell b5*c5 3. To calculate.
Copying and Pasting Formulas and Functions Copying and Pasting Formulas and Functions, Slide 1Copyright © 2004, Jim Schwab, University of Texas at Austin.
T T03-01 Calculate Descriptive Statistics Purpose Allows the analyst to analyze quantitative data by summarizing it in sorted format, scattergram.
Microsoft Excel P.6 Computer Studies Chapter 1 – Introduction of Microsoft Excel What is Microsoft Excel? Microsoft Excel is a software for.
IFS Intro to Data Management Chapter 5 Getting More Than Simple Columns.
Jeopardy Template By Jeanne Whitmore & Brooke Blair.
Chapter 2:Excel. Determining Results with the if Function =IF(logical_test, value_if_true,value_if_false) The IF function has three arguments: – A condition.
ACIS Introduction to Data Analytics & Business Intelligence Text Mining Data Cleaning.
Spreadsheets COE 201- Computer Proficiency. Basic Interface Excel Book = Word Document Every book can contain up to 255 different sheets.
Vocabulary Basic Spreadsheet Formulas Copyright © Texas Education Agency, All rights reserved.
CS1100: Computer Science and Its Applications Text Parsing in Excel Martin Schedlbauer, Ph.D.
Processing Text Excel can not only be used to process numbers, but also text. This often involves taking apart (parsing) or putting together text values.
5.4 Third Order Determinants and Cramer’s Rule. Third Order Determinants To solve a linear system in three variables, we can use third order determinants.
T T03-02 Histogram (Empirical & Chebyshev) PurposeAllows the analyst to analyze quantitative data by summarizing it in sorted format, scattergram.
Office 2003 Introductory Concepts and Techniques M i c r o s o f t Excel Project 1 Creating a Worksheet and an Embedded Chart.
Excel Text Functions 1. LEFT(text, [num_chars])) Returns the number of characters specified starting from the beginning of the text string Syntax Text:
Do I Understand Spreadsheets? Assessment Game. Question 1 What is a spreadsheet?
By Martha Nelson Digital Learning Specialist Excel Basics.
String and Lists Dr. José M. Reyes Álamo. 2 Outline What is a string String operations Traversing strings String slices What is a list Traversing a list.
Click once to reveal the definition. Think of the answer. Then click to see if you were correct. Spreadsheet / Workbook A grid of rows and columns containing.
Creating a Workbook Part 1
String and Lists Dr. José M. Reyes Álamo.
Excel Adrressing and Linking
Creating and Formatting Tables
Using Excel to Graph Data
Sequence Alignment 11/24/2018.
The Mid Function.
Handling Data Using Spreadsheets
Objective: Today we will investigate the ‘magic’ in magic squares.
Point Question Point Question Point Question Point Question
String and Lists Dr. José M. Reyes Álamo.
Using Excel to Graph Data
© T Madas.
Lesson 14 Spreadsheet Software.
When you first open up in notepad, go to Edit and click Select All
Presentation transcript:

Dot Plot

Dot Plot

Goal We will take two nucleotide base strings and look for common patterns – stretches where the bases match. GAATTCATACCAGATCACCGAAAACTGTCCTCCAAATGTGTCCCCCTCACACTCCCAAAT TCGCGGGCTTCTGCTCTTAGACCACTCTACCCTATTCCCCACACTCACCGGAGCCAAAGC

Start by entering the two sequences in question in Excel

Use the LEN Function to determine the length of the string

Set up a grid – mine was 60-by-60 since the lengths were 60

Enter the length of match one is seeking – start with 1

Enter the formula to look for matches

Anatomy of the formula (Part 1) =IF(MID($B$1,E$3,$B$4)=MID($B$2,$D4,$B$4),1,0) Recall MID takes a string $B$1 is the first base sequence and $B$2 is the second base sequence Then MID takes a part of the string beginning at the “second argument”

Anatomy of the formula (Part 2) =IF(MID($B$1,E$3,$B$4)=MID($B$2,$D4,$B$4),1,0) The starting point varies. E$3 stays in the third row as the formula is copied and uses the various numbers 1 through 60 set up in row 3. $D4 stays in column D and uses the various numbers 1 through 60 set up in column D.

Anatomy of the formula (Part 3) The third argument is the length of the match we seek. They are both the same length. If the two “substrings” (base mini sequences) match, output a 1, otherwise a zero. Then copy the formula throughout the grid.

With formula copied

Next add some conditional formatting rules

Result of Conditional Formatting

We are we looking for? In dot plots, one looks for dots (for us colored cells) along diagonals. A “long” diagonal means that the mini base sequences within the longer sequence match.

Change the length to eliminate some of the “noise”

Increasing the length of the substring match

Question What is the longest match between these two sequences?

Problem We are looking for diagonal matches; however, increasing the length of the match only allows only one of the two diagonal types to survive.

New Sheet: Enter one string and also make column of descending numbers

Enter formula that takes one letter at designated position

Use the concatenate formula to create the reversed string

Use Copy/Paste Special/Values to enter reversed string

Repeat the analysis looking for matches between one original and one reversed string

Question What is the longest match between these: one of the original sequences and one of the reversed sequences?