Package seqcombo. R topics documented: March 10, 2019

Size: px
Start display at page:

Download "Package seqcombo. R topics documented: March 10, 2019"

Transcription

1 Package seqcombo March 10, 2019 Title Visualization Tool for Sequence Recombination and Reassortment Version Provides useful functions for visualizing sequence recombination and virus reassortment events. Depends R (>= 3.4.0) Imports Biostrings, cowplot, dplyr, ggplot2, grid, igraph, magrittr, methods, rvcheck, utils Suggests emojifont, knitr, prettydoc, tibble VignetteBuilder knitr ByteCompile true License Artistic-2.0 Encoding UTF-8 LazyData true BugReports biocviews Alignment, Software, Visualization RoxygenNote git_url git_branch master git_last_commit aaca2d3 git_last_commit_date Date/Publication Author Guangchuang Yu [aut, cre] Maintainer Guangchuang Yu <guangchuangyu@gmail.com> R topics documented: geom_genotype geom_hybrid hybrid_plot plot seqdiff set_layout show simplot

2 2 geom_genotype Index 9 geom_genotype geom_genotype geom layer of genotype geom_genotype(virus_info, v_color = "darkgreen", v_fill = "steelblue", v_shape = "ellipse", l_color = "black", asp = 1, g_height = 0.65, g_width = 0.65) virus_info v_color v_fill v_shape l_color asp g_height g_width virus information the color of outer boundary of virus; can use expression (e.g. v_color=~host) to color virus by specific variable the color to fill viruses; can use expression (e.g. v_fill=~host) to fill virus by specific variable one of hexagon or ellipse color of the lines that indicate genetic flow aspect ratio of the plotting device height of regions to plot gene segments relative to the virus width of gene segment relative to width of the virus (the hexagon) geom layer library(tibble) library(ggplot2) n <- 8 virus_info <- tibble(id = 1:7, x = c(rep(1990, 4), rep(2000, 2), 2009), y = c(1,2,3,5, 1.5, 3, 4), segment_color = list(rep('purple', n), rep('red', n), rep('darkgreen', n), rep('lightgreen', n), c('darkgreen', 'darkgreen', 'red', 'darkgreen', 'red', 'purple', 'red', 'purple'), c('darkgreen', 'darkgreen', 'red', 'darkgreen', 'darkgreen', 'purple', 'red', 'purple'), c('darkgreen', 'lightgreen', 'lightgreen', 'darkgreen', 'darkgreen', 'purple', 'red', 'purple'))) ggplot() + geom_genotype(virus_info)

3 geom_hybrid 3 geom_hybrid geom_hybrid geom layer for reassortment events geom_hybrid(virus_info, flow_info, v_color = "darkgreen", v_fill = "steelblue", v_shape = "ellipse", l_color = "black", asp = 1, parse = FALSE, g_height = 0.65, g_width = 0.65, t_size = 3.88, t_color = "black") virus_info flow_info v_color v_fill v_shape l_color asp parse g_height g_width t_size t_color virus information flow information the color of outer boundary of virus; can use expression (e.g. v_color=~host) to color virus by specific variable the color to fill viruses; can use expression (e.g. v_fill=~host) to fill virus by specific variable one of hexagon or ellipse color of the lines that indicate genetic flow aspect ratio of the plotting device whether parse label, only works if label and label_position exist height of regions to plot gene segments relative to the virus width of gene segment relative to width of the virus (the hexagon) size of text label color of text label geom layer Guangchuang Yu library(tibble) library(ggplot2) n <- 8 virus_info <- tibble(id = 1:7, x = c(rep(1990, 4), rep(2000, 2), 2009), y = c(1,2,3,5, 1.5, 3, 4), segment_color = list(rep('purple', n), rep('red', n), rep('darkgreen', n), rep('lightgreen', n),

4 4 hybrid_plot c('darkgreen', 'darkgreen', 'red', 'darkgreen', 'red', 'purple', 'red', 'purple'), c('darkgreen', 'darkgreen', 'red', 'darkgreen', 'darkgreen', 'purple', 'red', 'purple'), c('darkgreen', 'lightgreen', 'lightgreen', 'darkgreen', 'darkgreen', 'purple', 'red', 'purple'))) flow_info <- tibble(from = c(1,2,3,3,4,5,6), to = c(5,5,5,6,7,6,7)) ggplot() + geom_hybrid(virus_info, flow_info) hybrid_plot hyrid_plot visualize virus reassortment events hybrid_plot(virus_info, flow_info, v_color = "darkgreen", v_fill = "steelblue", v_shape = "ellipse", l_color = "black", asp = 1, parse = FALSE, g_height = 0.65, g_width = 0.65, t_size = 3.88, t_color = "black") virus_info flow_info v_color v_fill v_shape l_color asp parse g_height g_width t_size t_color virus information flow information the color of outer boundary of virus; can use expression (e.g. v_color=~host) to color virus by specific variable the color to fill viruses; can use expression (e.g. v_fill=~host) to fill virus by specific variable one of hexagon or ellipse color of the lines that indicate genetic flow aspect ratio of the plotting device whether parse label, only works if label and label_position exist height of regions to plot gene segments relative to the virus width of gene segment relative to width of the virus (the hexagon) size of text label color of text label ggplot object

5 plot 5 library(tibble) n <- 8 virus_info <- tibble(id = 1:7, x = c(rep(1990, 4), rep(2000, 2), 2009), y = c(1,2,3,5, 1.5, 3, 4), segment_color = list(rep('purple', n), rep('red', n), rep('darkgreen', n), rep('lightgreen', n), c('darkgreen', 'darkgreen', 'red', 'darkgreen', 'red', 'purple', 'red', 'purple'), c('darkgreen', 'darkgreen', 'red', 'darkgreen', 'darkgreen', 'purple', 'red', 'purple'), c('darkgreen', 'lightgreen', 'lightgreen', 'darkgreen', 'darkgreen', 'purple', 'red', 'purple'))) flow_info <- tibble(from = c(1,2,3,3,4,5,6), to = c(5,5,5,6,7,6,7)) hybrid_plot(virus_info, flow_info) plot plot method for SeqDiff object plot method for SeqDiff object ## S4 method for signature 'SeqDiff,ANY' plot(x, width = 50, title = "auto", xlab = "Nucleotide Position", by = "bar", fill = "firebrick", colors = c(a = "#E495A5", C = "#ABB065", G = "#39BEB1", T = "#ACA4E2"), xlim = NULL) x width title xlab by fill colors xlim SeqDiff object bin width plot title xlab one of bar and area fill color of upper part of the plot color of lower part of the plot limits of x-axis plot

6 6 set_layout fas <- list.files(system.file("examples","gvariation", package="seqcombo"), pattern="fas", full.names=true) x1 <- seqdiff(fas[1], reference=1) plot(x1) seqdiff seqdiff calculate difference of two aligned sequences seqdiff(fasta, reference = 1) fasta fasta file reference which sequence serve as reference, 1 or 2 SeqDiff object fas <- list.files(system.file("examples","gvariation", package="seqcombo"), pattern="fas", full.names=true) seqdiff(fas[1], reference=1) set_layout set_layout set layout for reassortment plot set_layout(virus_info, flow_info, layout = "layout.auto") virus_info flow_info layout virus information flow information layout method

7 show 7 updated virus_info show show method show method show(object) object SeqDiff object message fas <- list.files(system.file("examples","gvariation", package="seqcombo"), pattern="fas", full.names=true) x1 <- seqdiff(fas[1], reference=1) x1 simplot simplot Sequence similarity plot simplot(file, query, window = 200, step = 20, group = FALSE, id, sep, sd = FALSE)

8 8 simplot file query window step group id sep sd alignment fast file query sequence sliding window size (bp) step size to slide the window (bp) whether grouping sequence position to extract id for grouping; only works if group = TRUE separator to split sequence name; only works if group = TRUE whether display standard deviation of similarity among each group; only works if group=true ggplot object fas <- system.file("examples/gvariation/sample_alignment.fa", package="seqcombo") simplot(fas, 'CF_YL21')

9 Index geom_genotype, 2 geom_hybrid, 3 hybrid_plot, 4 plot, 5 plot,seqdiff,any-method (plot), 5 seqdiff, 6 SeqDiff-class (show), 7 set_layout, 6 show, 7 show,seqdiff-method (show), 7 simplot, 7 9

Package MSstatsTMT. February 26, Title Protein Significance Analysis in shotgun mass spectrometry-based

Package MSstatsTMT. February 26, Title Protein Significance Analysis in shotgun mass spectrometry-based Package MSstatsTMT February 26, 2019 Title Protein Significance Analysis in shotgun mass spectrometry-based proteomic experiments with tandem mass tag (TMT) labeling Version 1.1.2 Date 2019-02-25 Tools

More information

Package ega. March 21, 2017

Package ega. March 21, 2017 Title Error Grid Analysis Version 2.0.0 Package ega March 21, 2017 Maintainer Daniel Schmolze Functions for assigning Clarke or Parkes (Consensus) error grid zones to blood glucose values,

More information

Package appnn. R topics documented: July 12, 2015

Package appnn. R topics documented: July 12, 2015 Package appnn July 12, 2015 Type Package Title Amyloid Propensity Prediction Neural Network Version 1.0-0 Date 2015-07-11 Encoding UTF-8 Author Maintainer Carlos Família Amyloid

More information

Package MethPed. September 1, 2018

Package MethPed. September 1, 2018 Type Package Version 1.8.0 Date 2016-01-01 Package MethPed September 1, 2018 Title A DNA methylation classifier tool for the identification of pediatric brain tumor subtypes Depends R (>= 3.0.0), Biobase

More information

Package msgbsr. January 17, 2019

Package msgbsr. January 17, 2019 Type Package Package msgbsr January 17, 2019 Title msgbsr: methylation sensitive genotyping by sequencing (MS-GBS) R functions Version 1.6.1 Date 2017-04-24 Author Benjamin Mayne Maintainer Benjamin Mayne

More information

Package inctools. January 3, 2018

Package inctools. January 3, 2018 Encoding UTF-8 Type Package Title Incidence Estimation Tools Version 1.0.11 Date 2018-01-03 Package inctools January 3, 2018 Tools for estimating incidence from biomarker data in crosssectional surveys,

More information

Package biocancer. August 29, 2018

Package biocancer. August 29, 2018 Package biocancer August 29, 2018 Title Interactive Multi-Omics Cancers Data Visualization and Analysis Version 1.8.0 Date 2018-04-12 biocancer is a Shiny App to visualize and analyse interactively Multi-Assays

More information

Package pepdat. R topics documented: March 7, 2015

Package pepdat. R topics documented: March 7, 2015 Package pepdat March 7, 2015 Type Package Title Peptide microarray data package Version 1.0.0 Author Renan Sauteraud, Raphael Gottardo Maintainer Renan Sauteraud Date 2012-08-14 Provides

More information

Package pollen. October 7, 2018

Package pollen. October 7, 2018 Type Package Title Analysis of Aerobiological Data Version 0.71.0 Package pollen October 7, 2018 Supports analysis of aerobiological data. Available features include determination of pollen season limits,

More information

Package hei. August 17, 2017

Package hei. August 17, 2017 Type Package Title Calculate Healthy Eating Index (HEI) Scores Date 2017-08-05 Version 0.1.0 Package hei August 17, 2017 Maintainer Tim Folsom Calculates Healthy Eating Index

More information

a. From the grey navigation bar, mouse over Analyze & Visualize and click Annotate Nucleotide Sequences.

a. From the grey navigation bar, mouse over Analyze & Visualize and click Annotate Nucleotide Sequences. Section D. Custom sequence annotation After this exercise you should be able to use the annotation pipelines provided by the Influenza Research Database (IRD) and Virus Pathogen Resource (ViPR) to annotate

More information

Package CorMut. January 21, 2019

Package CorMut. January 21, 2019 Type Package Package CorMut January 21, 2019 Title Detect the correlated mutations based on selection pressure Version 1.24.0 Date 2018-02-21 Author Maintainer Depends methods,seqinr,igraph

More information

Package cancer. July 10, 2018

Package cancer. July 10, 2018 Type Package Package cancer July 10, 2018 Title A Graphical User Interface for accessing and modeling the Cancer Genomics Data of MSKCC. Version 1.14.0 Date 2018-04-16 Author Karim Mezhoud. Nuclear Safety

More information

Package clust.bin.pair

Package clust.bin.pair Package clust.bin.pair February 15, 2018 Title Statistical Methods for Analyzing Clustered Matched Pair Data Version 0.1.2 Tests, utilities, and case studies for analyzing significance in clustered binary

More information

Package sbpiper. April 20, 2018

Package sbpiper. April 20, 2018 Version 1.7.0 Date 2018-04-20 Package sbpiper April 20, 2018 Title Data Analysis Functions for 'SBpipe' Package Depends R (>= 3.2.0) Imports colorramps, data.table, factoextra, FactoMineR, ggplot2 (>=

More information

Package memapp. R topics documented: June 2, Version 2.10 Date

Package memapp. R topics documented: June 2, Version 2.10 Date Version 2.10 Date 2018-06-01 Package memapp June 2, 2018 Title The Moving Epidemic Method Web Application Description The Moving Epidemic Method, created by T Vega and JE Lozano (2012, 2015) ,

More information

Package pathifier. August 17, 2018

Package pathifier. August 17, 2018 Type Package Title Quantify deregulation of pathways in cancer Version 1.19.0 Date 2013-06-27 Author Yotam Drier Package pathifier August 17, 2018 Maintainer Assif Yitzhaky

More information

Package bgafun. R topics documented: August 12, Type Package

Package bgafun. R topics documented: August 12, Type Package Type Package Package bgafun August 12, 2018 Title BGAfun A method to identify specifity determining residues in protein families Version 1.42.0 Date 2007-08-03 Author Iain Wallace Maintainer Iain Wallace

More information

Package preference. May 8, 2018

Package preference. May 8, 2018 Type Package Package preference May 8, 2018 Title 2-Stage Preference Trial Design and Analysis Version 0.2.2 URL https://github.com/kaneplusplus/preference BugReports https://github.com/kaneplusplus/preference/issues

More information

Package ordibreadth. R topics documented: December 4, Type Package Title Ordinated Diet Breadth Version 1.0 Date Author James Fordyce

Package ordibreadth. R topics documented: December 4, Type Package Title Ordinated Diet Breadth Version 1.0 Date Author James Fordyce Type Package Title Ordinated Diet Breadth Version 1.0 Date 2015-11-11 Author Package ordibreadth December 4, 2015 Maintainer James A. Fordyce Calculates ordinated diet breadth with some

More information

Package TFEA.ChIP. R topics documented: January 28, 2018

Package TFEA.ChIP. R topics documented: January 28, 2018 Type Package Title Analyze Transcription Factor Enrichment Version 0.99.8 Author Laura Puente Santamaría, Luis del Peso Package TFEA.ChIP January 28, 2018 Maintainer Laura Puente Santamaría

More information

Package citccmst. February 19, 2015

Package citccmst. February 19, 2015 Version 1.0.2 Date 2014-01-07 Package citccmst February 19, 2015 Title CIT Colon Cancer Molecular SubTypes Prediction Description This package implements the approach to assign tumor gene expression dataset

More information

Package PROcess. R topics documented: June 15, Title Ciphergen SELDI-TOF Processing Version Date Author Xiaochun Li

Package PROcess. R topics documented: June 15, Title Ciphergen SELDI-TOF Processing Version Date Author Xiaochun Li Title Ciphergen SELDI-TOF Processing Version 1.56.0 Date 2005-11-06 Author Package PROcess June 15, 2018 A package for processing protein mass spectrometry data. Depends Icens Imports graphics, grdevices,

More information

Package ICCbin. November 14, 2017

Package ICCbin. November 14, 2017 Version 1.1.1 Date 2017-11-13 Type Package Package ICCbin November 14, 2017 Title Facilitates Clustered Binary Data Generation, and Estimation of Intracluster Correlation Coefficient (ICC) for Binary Data

More information

Package wally. May 25, Type Package

Package wally. May 25, Type Package Type Package Package wally May 25, 2017 Title The Wally Calibration Plot for Risk Prediction Models Version 1.0.9 Date 2017-04-28 Author Paul F Blanche , Thomas A. Gerds

More information

Package IMAS. March 10, 2019

Package IMAS. March 10, 2019 Type Package Package IMAS March 10, 2019 Title Integrative analysis of Multi-omics data for Alternative Splicing Version 1.6.1 Author Seonggyun Han, Younghee Lee Maintainer Seonggyun Han

More information

Package BUScorrect. September 16, 2018

Package BUScorrect. September 16, 2018 Type Package Package BUScorrect September 16, 2018 Title Batch Effects Correction with Unknown Subtypes Version 0.99.12 Date 2018-06-07 Author , Yingying Wei Maintainer

More information

Package ClusteredMutations

Package ClusteredMutations Package ClusteredMutations April 29, 2016 Version 1.0.1 Date 2016-04-28 Title Location and Visualization of Clustered Somatic Mutations Depends seriation Description Identification and visualization of

More information

Package diggitdata. April 11, 2019

Package diggitdata. April 11, 2019 Type Package Title Example data for the diggit package Version 1.14.0 Date 2014-08-29 Author Mariano Javier Alvarez Package diggitdata April 11, 2019 Maintainer Mariano Javier Alvarez

More information

Module 3. Genomic data and annotations in public databases Exercises Custom sequence annotation

Module 3. Genomic data and annotations in public databases Exercises Custom sequence annotation Module 3. Genomic data and annotations in public databases Exercises Custom sequence annotation Objectives Upon completion of this exercise, you will be able to use the annotation pipelines provided by

More information

Package leukemiaseset

Package leukemiaseset Package leukemiaseset August 14, 2018 Type Package Title Leukemia's microarray gene expression data (expressionset). Version 1.16.0 Date 2013-03-20 Author Sara Aibar, Celia Fontanillo and Javier De Las

More information

Package AIMS. June 29, 2018

Package AIMS. June 29, 2018 Type Package Package AIMS June 29, 2018 Title AIMS : Absolute Assignment of Breast Cancer Intrinsic Molecular Subtype Version 1.12.0 Date 2014-06-25 Description This package contains the AIMS implementation.

More information

PROTOCOL FOR INFLUENZA A VIRUS GLOBAL SWINE H1 CLADE CLASSIFICATION

PROTOCOL FOR INFLUENZA A VIRUS GLOBAL SWINE H1 CLADE CLASSIFICATION PROTOCOL FOR INFLUENZA A VIRUS GLOBAL SWINE H1 CLADE CLASSIFICATION January 23, 2017 1. Background Swine H1 viruses have diversified into three major genetic lineages over time. Recently, Anderson et al.

More information

Package xseq. R topics documented: September 11, 2015

Package xseq. R topics documented: September 11, 2015 Package xseq September 11, 2015 Title Assessing Functional Impact on Gene Expression of Mutations in Cancer Version 0.2.1 Date 2015-08-25 Author Jiarui Ding, Sohrab Shah Maintainer Jiarui Ding

More information

Package CorMut. August 2, 2013

Package CorMut. August 2, 2013 Package CorMut August 2, 2013 Type Package Title Detect the correlated mutations based on selection pressure Version 1.3.0 Date 2012-9-12 Author Zhenpeng Li, Yang Huang, Yabo Ouyang, Yiming Shao, Liying

More information

R documentation. of GSCA/man/GSCA-package.Rd etc. June 8, GSCA-package. LungCancer metadi... 3 plotmnw... 5 plotnw... 6 singledc...

R documentation. of GSCA/man/GSCA-package.Rd etc. June 8, GSCA-package. LungCancer metadi... 3 plotmnw... 5 plotnw... 6 singledc... R topics documented: R documentation of GSCA/man/GSCA-package.Rd etc. June 8, 2009 GSCA-package....................................... 1 LungCancer3........................................ 2 metadi...........................................

More information

Package nopaco. R topics documented: April 13, Type Package Title Non-Parametric Concordance Coefficient Version 1.0.

Package nopaco. R topics documented: April 13, Type Package Title Non-Parametric Concordance Coefficient Version 1.0. Type Package Title Non-Parametric Concordance Coefficient Version 1.0.3 Date 2017-04-10 Package nopaco April 13, 2017 A non-parametric test for multi-observer concordance and differences between concordances

More information

For all of the following, you will have to use this website to determine the answers:

For all of the following, you will have to use this website to determine the answers: For all of the following, you will have to use this website to determine the answers: http://blast.ncbi.nlm.nih.gov/blast.cgi We are going to be using the programs under this heading: Answer the following

More information

Package medicalrisk. August 29, 2016

Package medicalrisk. August 29, 2016 Type Package Package medicalrisk August 29, 2016 Title Medical Risk and Comorbidity Tools for ICD-9-CM Data Version 1.2 Date 2016-01-23 Generates risk estimates and comorbidity flags from ICD-9-CM codes

More information

Package fabiadata. July 19, 2018

Package fabiadata. July 19, 2018 Package fabiadata July 19, 2018 Title Data sets for FABIA (Factor Analysis for Bicluster Acquisition) Version 1.18.0 Date 2012-08-15 Author Sepp Hochreiter Maintainer Sepp Hochreiter

More information

ggplot Iain Hume 10 November 2015

ggplot Iain Hume 10 November 2015 ggplot Iain Hume 1 November 215 Today s workshop ggplot grammar of graphics basic plot types subsetting saving plots prettying things up Why use ggplot Takes the best of basic & latice graphics Progressive

More information

Package mdsdt. March 12, 2016

Package mdsdt. March 12, 2016 Version 1.2 Date 2016-03-11 Package mdsdt March 12, 2016 Title Functions for Analysis of Data with General Recognition Theory Author Robert X.D. Hawkins , Joe Houpt ,

More information

A Method to Determine an E-score Threshold to Identify Potential Cross Reactive Allergens

A Method to Determine an E-score Threshold to Identify Potential Cross Reactive Allergens A Method to Determine an E-score Threshold to Identify Potential Cross Reactive Allergens Andre Silvanovich Ph. D. Gary Bannon Ph. D. Scott McClain Ph. D. Monsanto Company Regulatory Product Characterization

More information

Q: How do I get the protein concentration in mg/ml from the standard curve if the X-axis is in units of µg.

Q: How do I get the protein concentration in mg/ml from the standard curve if the X-axis is in units of µg. Photometry Frequently Asked Questions Q: How do I get the protein concentration in mg/ml from the standard curve if the X-axis is in units of µg. Protein standard curves are traditionally presented as

More information

The Strucplot Framework for Visualizing Categorical Data

The Strucplot Framework for Visualizing Categorical Data The Strucplot Framework for Visualizing Categorical Data David Meyer 1, Achim Zeileis 2 and Kurt Hornik 2 1 Department of Information Systems and Operations 2 Department of Statistics and Mathematics Wirtschaftsuniversität

More information

Background Information. Instructions. Problem Statement. HOMEWORK INSTRUCTIONS Homework #2 HIV Statistics Problem

Background Information. Instructions. Problem Statement. HOMEWORK INSTRUCTIONS Homework #2 HIV Statistics Problem Background Information HOMEWORK INSTRUCTIONS The scourge of HIV/AIDS has had an extraordinary impact on the entire world. The spread of the disease has been closely tracked since the discovery of the HIV

More information

Search settings MaxQuant

Search settings MaxQuant Search settings MaxQuant Briefly, we used MaxQuant version 1.5.0.0 with the following settings. As variable modifications we allowed Acetyl (Protein N-terminus), methionine oxidation and glutamine to pyroglutamate

More information

Package flowtype. R topics documented: July 18, Type Package. Title Phenotyping Flow Cytometry Assays. Version

Package flowtype. R topics documented: July 18, Type Package. Title Phenotyping Flow Cytometry Assays. Version Package flowtype July 18, 2013 Type Package Title Phenotyping Flow Cytometry Assays Version 1.6.0 Date 2011-04-27 Author Nima Aghaeepour Maintainer Nima Aghaeepour Phenotyping Flow

More information

Steps to writing a lab report on: factors affecting enzyme activity

Steps to writing a lab report on: factors affecting enzyme activity Steps to writing a lab report on: factors affecting enzyme activity This guide is designed to help you write a simple, straightforward lab report. Each section of the report has a number of steps. By completing

More information

PROCEDURE Follow the instructions as you proceed through the Click and Learn, and answer the questions in the spaces provided.

PROCEDURE Follow the instructions as you proceed through the Click and Learn, and answer the questions in the spaces provided. ABOUT THIS WORKSHEET This worksheet complements the Click and Learn developed in conjunction with the 2016 documentary, Spillover: Zika, Ebola & Beyond (http://www.hhmi.org/biointeractive/virusexplorer).

More information

Package PELVIS. R topics documented: December 18, Type Package

Package PELVIS. R topics documented: December 18, Type Package Type Package Package PELVIS December 18, 2018 Title Probabilistic Sex Estimate using Logistic Regression, Based on VISual Traits of the Human Os Coxae Version 1.0.5 Date 2018-12-18 Depends R (>= 3.4.0),

More information

MA 151: Using Minitab to Visualize and Explore Data The Low Fat vs. Low Carb Debate

MA 151: Using Minitab to Visualize and Explore Data The Low Fat vs. Low Carb Debate MA 151: Using Minitab to Visualize and Explore Data The Low Fat vs. Low Carb Debate September 5, 2018 1 Introduction to the Data We will be working with a synthetic data set meant to resemble the weight

More information

Package AbsFilterGSEA

Package AbsFilterGSEA Type Package Package AbsFilterGSEA September 21, 2017 Title Improved False Positive Control of Gene-Permuting GSEA with Absolute Filtering Version 1.5.1 Author Sora Yoon Maintainer

More information

PROcess. June 1, Align peaks for a specified precision. A user specified precision of peak position.

PROcess. June 1, Align peaks for a specified precision. A user specified precision of peak position. PROcess June 1, 2010 align Align peaks for a specified precision. A vector of peaks are expanded to a collection of intervals, eps * m/z of the peak to the left and right of the peak position. They are

More information

Rainforest plots for the presentation of patient-subgroup analysis in clinical trials

Rainforest plots for the presentation of patient-subgroup analysis in clinical trials Big-data Clinical Trial Column Page 1 of 6 Rainforest plots for the presentation of patient-subgroup analysis in clinical trials Zhongheng Zhang 1, Michael Kossmeier 2, Ulrich S. Tran 2, Martin Voracek

More information

Main Study: Summer Methods. Design

Main Study: Summer Methods. Design Main Study: Summer 2000 Methods Design The experimental design is within-subject each participant experiences five different trials for each of the ten levels of Display Condition and for each of the three

More information

Package p3state.msm. R topics documented: February 20, 2015

Package p3state.msm. R topics documented: February 20, 2015 Package p3state.msm February 20, 2015 Type Package Depends R (>= 2.8.1),survival,base Title Analyzing survival data Version 1.3 Date 2012-06-03 Author Luis Meira-Machado and Javier Roca-Pardinas

More information

Package mediation. September 18, 2009

Package mediation. September 18, 2009 Version 2.1 Date 2009-09-14 Title R Package for Causal Mediation Analysis Package mediation September 18, 2009 Author Luke Keele , Dustin Tingley , Teppei

More information

Supplementary Figure 1. ALVAC-protein vaccines and macaque immunization. (A) Maximum likelihood

Supplementary Figure 1. ALVAC-protein vaccines and macaque immunization. (A) Maximum likelihood Supplementary Figure 1. ALVAC-protein vaccines and macaque immunization. (A) Maximum likelihood tree illustrating CRF01_AE gp120 protein sequence relationships between 107 Envs sampled in the RV144 trial

More information

Relative activity (%) SC35M

Relative activity (%) SC35M a 125 Bat (H17N) b 125 A/WSN (H1N1) Relative activity (%) 0 75 50 25 Relative activity (%) 0 75 50 25 0 Pos. Neg. PA PB1 Pos. Neg. NP PA PB1 PB2 0 Pos. Neg. NP PA PB1 PB2 SC35M Bat Supplementary Figure

More information

Voxar 3D CardiaMetrix. Reference Guide

Voxar 3D CardiaMetrix. Reference Guide Voxar 3D CardiaMetrix Reference Guide The software described in this document is furnished under a license, and may be used or copied only according to the terms of such license. Toshiba means, Toshiba

More information

Package Actigraphy. R topics documented: January 15, Type Package Title Actigraphy Data Analysis Version 1.3.

Package Actigraphy. R topics documented: January 15, Type Package Title Actigraphy Data Analysis Version 1.3. Type Package Title Actigraphy Data Analysis Version 1.3.2 Date 2016-01-14 Package Actigraphy January 15, 2016 Author William Shannon, Tao Li, Hong Xian, Jia Wang, Elena Deych, Carlos Gonzalez Maintainer

More information

White Rose Research Online URL for this paper: Version: Supplemental Material

White Rose Research Online URL for this paper:   Version: Supplemental Material This is a repository copy of How well can body size represent effects of the environment on demographic rates? Disentangling correlated explanatory variables. White Rose Research Online URL for this paper:

More information

Prentice Hall. Learning Microsoft Excel , (Weixel et al.) Arkansas Spreadsheet Applications - Curriculum Content Frameworks

Prentice Hall. Learning Microsoft Excel , (Weixel et al.) Arkansas Spreadsheet Applications - Curriculum Content Frameworks Prentice Hall Learning Microsoft Excel 2007 2008, (Weixel et al.) C O R R E L A T E D T O Arkansas Spreadsheet s - Curriculum Content Frameworks Arkansas Spreadsheet s - Curriculum Content Frameworks Unit

More information

Package RNAsmc. December 11, 2018

Package RNAsmc. December 11, 2018 Type Package Package RNAsmc December 11, 2018 Title RNA Secondary Structure Module Mining, Comparison and Plotting Version 0.4.0 Author Zheng HeWei Depends RRNA,stats,graphics Maintainer Zheng HeWei

More information

IAT 355 Visual Analytics. Encoding Information: Design. Lyn Bartram

IAT 355 Visual Analytics. Encoding Information: Design. Lyn Bartram IAT 355 Visual Analytics Encoding Information: Design Lyn Bartram 4 stages of visualization design 2 Recall: Data Abstraction Tables Data item (row) with attributes (columns) : row=key, cells = values

More information

Package DeconRNASeq. November 19, 2017

Package DeconRNASeq. November 19, 2017 Type Package Package DeconRNASeq November 19, 2017 Title Deconvolution of Heterogeneous Tissue Samples for mrna-seq data Version 1.20.0 Date 2013-01-22 Author Ting Gong Joseph D. Szustakowski

More information

Nature Neuroscience doi: /nn Supplementary Figure 1. Characterization of viral injections.

Nature Neuroscience doi: /nn Supplementary Figure 1. Characterization of viral injections. Supplementary Figure 1 Characterization of viral injections. (a) Dorsal view of a mouse brain (dashed white outline) after receiving a large, unilateral thalamic injection (~100 nl); demonstrating that

More information

Homework Exercises for PSYC 3330: Statistics for the Behavioral Sciences

Homework Exercises for PSYC 3330: Statistics for the Behavioral Sciences Homework Exercises for PSYC 3330: Statistics for the Behavioral Sciences compiled and edited by Thomas J. Faulkenberry, Ph.D. Department of Psychological Sciences Tarleton State University Version: July

More information

IAT 355 Perception 1. Or What You See is Maybe Not What You Were Supposed to Get

IAT 355 Perception 1. Or What You See is Maybe Not What You Were Supposed to Get IAT 355 Perception 1 Or What You See is Maybe Not What You Were Supposed to Get Why we need to understand perception The ability of viewers to interpret visual (graphical) encodings of information and

More information

Figure S2. Distribution of acgh probes on all ten chromosomes of the RIL M0022

Figure S2. Distribution of acgh probes on all ten chromosomes of the RIL M0022 96 APPENDIX B. Supporting Information for chapter 4 "changes in genome content generated via segregation of non-allelic homologs" Figure S1. Potential de novo CNV probes and sizes of apparently de novo

More information

8 Performing Medical Procedures

8 Performing Medical Procedures 8 The Terason usmart3200t Ultrasound System can aid in performing medical procedures such as biopsies. Depending on whether you purchased the additional equipment required for these procedures, you may

More information

Multiple Treatments on the Same Experimental Unit. Lukas Meier (most material based on lecture notes and slides from H.R. Roth)

Multiple Treatments on the Same Experimental Unit. Lukas Meier (most material based on lecture notes and slides from H.R. Roth) Multiple Treatments on the Same Experimental Unit Lukas Meier (most material based on lecture notes and slides from H.R. Roth) Introduction We learned that blocking is a very helpful technique to reduce

More information

Bioinformatic analyses: methodology for allergen similarity search. Zoltán Divéki, Ana Gomes EFSA GMO Unit

Bioinformatic analyses: methodology for allergen similarity search. Zoltán Divéki, Ana Gomes EFSA GMO Unit Bioinformatic analyses: methodology for allergen similarity search Zoltán Divéki, Ana Gomes EFSA GMO Unit EFSA info session on applications - GMO Parma, Italy 28 October 2014 BIOINFORMATIC ANALYSES Analysis

More information

Package prognosticroc

Package prognosticroc Type Package Package prognosticroc February 20, 2015 Title Prognostic ROC curves for evaluating the predictive capacity of a binary test Version 0.7 Date 2013-11-27 Author Y. Foucher

More information

Enter the Tidyverse BIO5312 FALL2017 STEPHANIE J. SPIELMAN, PHD

Enter the Tidyverse BIO5312 FALL2017 STEPHANIE J. SPIELMAN, PHD Enter the Tidyverse BIO5312 FALL2017 STEPHANIE J. SPIELMAN, PHD What is the tidyverse? A collection of R packages largely developed by Hadley Wickham and others at Rstudio Have emerged as staples of modern-day

More information

AudioConsole. User Guide. Doc. No EN/01 Part No EN

AudioConsole. User Guide. Doc. No EN/01 Part No EN AudioConsole Doc. No. 7-50-2180-EN/01 Part No. 7-50-21800-EN Copyright notice [2003], 2018 Inmedico A/S. All rights reserved. Oscilla is aregistered trademark of Inmedico A/S in the U.S.A. and/or other

More information

Research Methods in Forest Sciences: Learning Diary. Yoko Lu December Research process

Research Methods in Forest Sciences: Learning Diary. Yoko Lu December Research process Research Methods in Forest Sciences: Learning Diary Yoko Lu 285122 9 December 2016 1. Research process It is important to pursue and apply knowledge and understand the world under both natural and social

More information

Package longroc. November 20, 2017

Package longroc. November 20, 2017 Type Package Package longroc November 20, 2017 Title Time-Dependent Prognostic Accuracy with Multiply Evaluated Bio Markers or Scores Version 1.0 Date 2017-11-18 Author Alessio Farcomeni Maintainer Alessio

More information

2.4.1 STA-O Assessment 2

2.4.1 STA-O Assessment 2 2.4.1 STA-O Assessment 2 Work all the problems and determine the correct answers. When you have completed the assessment, open the Assessment 2 activity and input your responses into the online grading

More information

Package QualInt. February 19, 2015

Package QualInt. February 19, 2015 Title Test for Qualitative Interactions Version 1.0.0 Package QualInt February 19, 2015 Author Lixi Yu, Eun-Young Suh, Guohua (James) Pan Maintainer Lixi Yu Description Used for testing

More information

RVTEC 2010 UHDAS/ADCP

RVTEC 2010 UHDAS/ADCP RVTEC 2010 UHDAS/ADCP Part I: ADCP Getting Ocean Velocity What can go wrong ADCP Processing with CODAS Part II: UHDAS 1: Outline What it does Where things are written Monitoring, Interpretation What can

More information

Unit 1 Outline Science Practices. Part 1 - The Scientific Method. Screencasts found at: sciencepeek.com. 1. List the steps of the scientific method.

Unit 1 Outline Science Practices. Part 1 - The Scientific Method. Screencasts found at: sciencepeek.com. 1. List the steps of the scientific method. Screencasts found at: sciencepeek.com Part 1 - The Scientific Method 1. List the steps of the scientific method. 2. What is an observation? Give an example. Quantitative or Qualitative Data? 35 grams?

More information

Biopac Student Lab Lesson 6 ELECTROCARDIOGRAPHY (ECG) II Analysis Procedure. Rev

Biopac Student Lab Lesson 6 ELECTROCARDIOGRAPHY (ECG) II Analysis Procedure. Rev 42 Aero Camino, Goleta, CA 93117 www.biopac.com Biopac Student Lab Lesson 6 ELECTROCARDIOGRAPHY (ECG) II Analysis Procedure Rev. 12292017 Richard Pflanzer, Ph.D. Associate Professor Emeritus Indiana University

More information

GEX Recommended Procedure Eff. Date: 09/21/10 Rev.: D Pg. 1 of 7

GEX Recommended Procedure Eff. Date: 09/21/10 Rev.: D Pg. 1 of 7 GEX Recommended Procedure Eff. Date: 09/21/10 Rev.: D Pg. 1 of 7 NOTICE: This document is version controlled and was produced as a part of the GEX Information Program which requires that all Series 100

More information

Influenza H3N2 Virus Variation Analysis

Influenza H3N2 Virus Variation Analysis Influenza H3N2 Virus Variation Analysis Objective Upon completion of this exercise, you will be able to: search for virus sequences and view detailed information about these sequences in IRD, build a phylogenetic

More information

DPV. Ramona Ranz, Andreas Hungele, Prof. Reinhard Holl

DPV. Ramona Ranz, Andreas Hungele, Prof. Reinhard Holl DPV Ramona Ranz, Andreas Hungele, Prof. Reinhard Holl Contents Possible use of DPV Languages Patient data Search for patients Patient s info Save data Mandatory fields Diabetes subtypes ICD 10 Fuzzy date

More information

Study the Evolution of the Avian Influenza Virus

Study the Evolution of the Avian Influenza Virus Designing an Algorithm to Study the Evolution of the Avian Influenza Virus Arti Khana Mentor: Takis Benos Rachel Brower-Sinning Department of Computational Biology University of Pittsburgh Overview Introduction

More information

Transient β-hairpin Formation in α-synuclein Monomer Revealed by Coarse-grained Molecular Dynamics Simulation

Transient β-hairpin Formation in α-synuclein Monomer Revealed by Coarse-grained Molecular Dynamics Simulation Transient β-hairpin Formation in α-synuclein Monomer Revealed by Coarse-grained Molecular Dynamics Simulation Hang Yu, 1, 2, a) Wei Han, 1, 3, b) Wen Ma, 1, 2 1, 2, 3, c) and Klaus Schulten 1) Beckman

More information

Introduction to Statistical Data Analysis I

Introduction to Statistical Data Analysis I Introduction to Statistical Data Analysis I JULY 2011 Afsaneh Yazdani Preface What is Statistics? Preface What is Statistics? Science of: designing studies or experiments, collecting data Summarizing/modeling/analyzing

More information

Package labstats. December 5, 2016

Package labstats. December 5, 2016 Type Package Package labstats December 5, 2016 Title Data Sets for the Book ``Experimental Design for Laboratory Biologists'' Version 1.0.1 Date 2016-12-04 Author Stanley E. Lazic Maintainer Stanley E.

More information

MODULE 4: SPLICING. Removal of introns from messenger RNA by splicing

MODULE 4: SPLICING. Removal of introns from messenger RNA by splicing Last update: 05/10/2017 MODULE 4: SPLICING Lesson Plan: Title MEG LAAKSO Removal of introns from messenger RNA by splicing Objectives Identify splice donor and acceptor sites that are best supported by

More information

Package NarrowPeaks. August 3, Version Date Type Package

Package NarrowPeaks. August 3, Version Date Type Package Package NarrowPeaks August 3, 2013 Version 1.5.0 Date 2013-02-13 Type Package Title Analysis of Variation in ChIP-seq using Functional PCA Statistics Author Pedro Madrigal , with contributions

More information

Package rvtdt. February 20, rvtdt... 1 rvtdt.example... 3 rvtdts... 3 TrendWeights Index 6. population control weighted rare-varaints TDT

Package rvtdt. February 20, rvtdt... 1 rvtdt.example... 3 rvtdts... 3 TrendWeights Index 6. population control weighted rare-varaints TDT Type Package Package rvtdt February 20, 2015 Title population control weighted rare-variants TDT Version 1.0 Date 2014-04-07 Author Yu Jiang, Andrew S. Allen Maintainer Yu Jiang

More information

usda foods Graphical guidelines

usda foods Graphical guidelines Introduction USDA Foods is a program of the U.S. Department of Agriculture (USDA) Food and Nutrition Service (FNS). The USDA Foods mark is the service mark USDA has adopted to identify the USDA Foods program.

More information

DECISIONS. (Text with EEA relevance)

DECISIONS. (Text with EEA relevance) 14.10.2015 L 267/5 DECISIONS COMMISSION IMPLEMTING DECISION (EU) 2015/1842 of 9 October 2015 on the technical specifications for the layout, design and shape of the combined health warnings for tobacco

More information

Section D. Identification of serotype-specific amino acid positions in DENV NS1. Objective

Section D. Identification of serotype-specific amino acid positions in DENV NS1. Objective Section D. Identification of serotype-specific amino acid positions in DENV NS1 Objective Upon completion of this exercise, you will be able to use the Virus Pathogen Resource (ViPR; http://www.viprbrc.org/)

More information

USER GUIDE: NEW CIR APP. Technician User Guide

USER GUIDE: NEW CIR APP. Technician User Guide USER GUIDE: NEW CIR APP. Technician User Guide 0 Table of Contents 1 A New CIR User Interface Why?... 3 2 How to get started?... 3 3 Navigating the new CIR app. user interface... 6 3.1 Introduction...

More information

Structural Variation and Medical Genomics

Structural Variation and Medical Genomics Structural Variation and Medical Genomics Andrew King Department of Biomedical Informatics July 8, 2014 You already know about small scale genetic mutations Single nucleotide polymorphism (SNPs) Deletions,

More information