Ecological Genomics GWAS point of view. Long term Goals Data conversation between different popular software in the field Develop scripts to qualitatively.

Slides:



Advertisements
Similar presentations
Usage of the memoQ web service API by LSP – a case study
Advertisements

GENOMICS TERM PROJECT Assessment of Significance in a SNP.
Artificial Neural Networks
PAG 2011 TASSEL Terry Casstevens 1, Peter Bradbury 2,3, Zhiwu Zhang 1, Yang Zhang 1, Edward Buckler 1,2,4 1 Institute.
Principal Components Analysis Babak Rasolzadeh Tuesday, 5th December 2006.
A NoC Generation and Evaluation Framework
FlightView: A flight information visualization Nicole Arksey CS 533.
Microarray analysis Algorithms in Computational Biology Spring 2006 Written by Itai Sharon.
Computers: Tools for an Information Age
© 2003, Educational Institute Chapter 11 System Selection Managing Technology in the Hospitality Industry Fourth Edition (469T or 469)
Principal Component Analysis. Consider a collection of points.
Building Information Systems lesson 26 This lesson includes the following sections: The Systems Development Life Cycle Phase 1: Needs Analysis Phase.
Database Design IST 7-10 Presented by Miss Egan and Miss Richards.
The Project AH Computing. Functional Requirements  What the product must do!  Examples attractive welcome screen all options available as clickable.
Mean as Fair Share and Balance Point
Copyright © 2003 by Prentice Hall Computers: Tools for an Information Age Chapter 14 Systems Analysis and Design: The Big Picture.
Systems Analysis and Design: The Big Picture
The Tutorial of Principal Component Analysis, Hierarchical Clustering, and Multidimensional Scaling Wenshan Wang.
Chapter 2 Dimensionality Reduction. Linear Methods
1 Software Testing (Part-II) Lecture Software Testing Software Testing is the process of finding the bugs in a software. It helps in Verifying and.
Warm UP Problem Use graphic calculator or website What is the monthly payment and finance charge on the following loan? $3,500 – NO Down Payment 12% 30.
RUP Implementation and Testing
Usability Issues Documentation J. Apostolakis for Geant4 16 January 2009.
Internet and Distributed Representation of Agent Based Model by- Manish Sharma.
1 Web Search Personalization via Social Bookmarking and Tagging Michael G. Noll & Christoph Meinel Hasso-Plattner-Institut an der Universit¨at Potsdam,
EGEE-III INFSO-RI Enabling Grids for E-sciencE EGEE and gLite are registered trademarks What GGUS can do for you JRA1 All hands.
EGEE is a project funded by the European Union under contract IST Testing processes Leanne Guy Testing activity manager JRA1 All hands meeting,
Todd Klindt. New downloads Infrastructure update Adds search improvements from Search Server Has Content Deployment fixes Does NOT include SP1, install.
Launch SpecE8 and React from GSS. You can use the chemical analyses in a GSS data sheet to set up and run SpecE8 and React calculations. Analysis → Launch…
Work Flow Control and Documentation Name: J. Douglas Wells Sponsor: Molded Plastic Ventures (MPV)
Software Project Planning Defining the Project Writing the Software Specification Planning the Development Stages Testing the Software.
Procedures for managing workflow components Workflow components: A workflow can usually be described using formal or informal flow diagramming techniques,
Weka: Experimenter and Knowledge Flow interfaces Neil Mac Parthaláin
Project Write-up – Report (May 1)  Make a powerpoint and sent it to me via NOTE: send ppt by mid-night on May 1 to:  No Minimum.
CS/SWE 421 Project Overview Dan Fleck. Project Overview Team Formation Team Formation - just to get an idea of who you are and what you want to do Detailed.
TM Copyright © 2009 NMQA Ltd. Behaviour Driven Testing with.
SP5 - Neuroinformatics SynapsesSA Tutorial Computational Intelligence Group Technical University of Madrid.
1 Ch. 1: Software Development (Read) 5 Phases of Software Life Cycle: Problem Analysis and Specification Design Implementation (Coding) Testing, Execution.
Google Refine for Data Quality / Integrity. Context BioVeL Data Refinement Workflow Synonym Expansion / Occurrence Retrieval Data Selection Data Quality.
Software Development Problem Analysis and Specification Design Implementation (Coding) Testing, Execution and Debugging Maintenance.
Principal components were computed for normalized intensities from samples of the given tissue-chip combination. The first two principal components are.
Package & Deploy. OBJECTIVES Package Deploy Way to package.
Principals of Research Writing. What is Research Writing? Process of communicating your research  Before the fact  Research proposal  After the fact.
Discovery Environment Tool Integration High Level Overview.
Principal Component Analysis Zelin Jia Shengbin Lin 10/20/2015.
Oman College of Management and Technology Course – MM Topic 7 Production and Distribution of Multimedia Titles CS/MIS Department.
Project Planning Defining the project Software specification Development stages Software testing.
Seismic Tomography Algorithm (Hole’s Code) Omar Ochoa.
William Perry U.S. Geological Survey Western Ecological Research Center Geography 375 Final Project May 22, 2013.
Syndicate Members: 1. GC Muhammad Uzair 2. GC Umer Naveed Malik.
Before the class starts: Login to a computer Read the Data analysis assignment 1 on MyCourses If you use Stata: Start Stata Start a new do file Open the.
Learning Objectives Today we will Learn: The different methods of implementation The differences between user and technical documentation.
CellExpress Tutorial A Comprehensive Microarray-Based Cancer Cell Line and Clinical Sample Gene Expression Analysis Online System :8080 NTU.
Oral Presentation Applied Machine Learning Course YOUR NAME
Evaluating Existing Systems
Different Types of Testing
Evaluating Existing Systems
Jonathan W. Duggins; James Blum NC State University; UNC Wilmington
WP1 INERTIA Framework Requirements, Specifications and Architecture
Workflow materials models: template 1
Operations Management
Principal Components Analysis
Building Information Systems
Project name and logo Workflow materials models: template 1
MECH 3550 : Simulation & Visualization
Computational Pipeline Strategies
 Is a machine that is able to take information (input), do some work on (process), and to make new information (output) COMPUTER.
Internal components of a computer.
Building Information Systems
Implementation Plan system integration required for each iteration
Presentation transcript:

Ecological Genomics GWAS point of view

Long term Goals Data conversation between different popular software in the field Develop scripts to qualitatively filter data using R

Flow

What is done from the flow 2 filter scripts 1 st describes the data – f1<-apply(apply(f,2,is.na),2,sum) #Counts number of missing values – hist(f1) #And creates a plot – hist(colMeans(f5,na.rm=T)) #Calculates allele freq distribution

What is done from the flow Filtering step 1 hist(f1)f1<-apply(apply(f,2,is.na),2,sum) hist(colMeans(f5,na.rm=T))

Once user evaluates the data and decides on the selection of markers/phenotypes. – drop.col.kna <- function(mydf, l) mydf[sapply(mydf, function(x) sum(is.na(x))) < l] f1<-drop.col.kna(mydf, l) What is done from the flow Filtering step 2

What is done from the flow PCA PCA using princomp function – write.table(pca$loading) # summarizes variance of each of the components/eigenvectors – Plot(pca) # visualizes the amount of the variance that is explained by the principal components – Write.table(Summary(pca)) # standard pca output (What is the variance that each component contributes) – Write.table(Pca$scores) #contribution of each sample in the total variance of each of the eigenvectors – Biplot(pca) & plot of the pca

What is done from the flow pca Write.table(pca$loadings) plot(pca) Write.table(summary(pca)) Write.table(pca$scores)

PCA plots

What is done from the flow Structure Structure is already installed and evaluated by me, Nicole Input and parametersoutput

What is done from the flow PGDSpider

PGDSpider Documentation needs polishing New version was installed and deployed needs to be tested

Next 2 months Add an R script to perform mantel test for Isolation by distance Fix the PCA due to a bug for missing data Create workflows: – Link the VCF data format via PGDSpider with Structure – Link the filtering scripts with PCA script for the Phenotypic analysis