Package SMAP. R topics documented: June 19, 2018

Size: px
Start display at page:

Download "Package SMAP. R topics documented: June 19, 2018"

Transcription

1 Package SMAP June 19, 2018 Title A Segmental Maximum A Posteriori Approach to Array-CGH Copy Number Profiling Version Date Depends R (>= 2.10), methods Author Robin Andersson <robin.andersson@lcb.uu.se> Functions and classes for DNA copy number profiling of array-cgh data Maintainer Robin Andersson <robin.andersson@lcb.uu.se> License GPL-2 LazyLoad true Collate AllClasses.R AllGenerics.R methods-smaphmm.r methods-smapobservations.r methods-smapprofile.r methods-gaussparam.r methods-grad.r methods-eta.r biocviews Microarray, TwoChannel, CopyNumberVariation git_url git_branch RELEASE_3_7 git_last_commit 3219eed git_last_commit_date Date/Publication R topics documented: GBM smap SMAPHMM SMAPHMM-class SMAPObservations SMAPObservations-class SMAPProfile-class SMAPProfiles-class Index 12 1

2 2 smap GBM Glioblastoma multiforme array CGH data Array CGH data measurements of glioblastoma multiforme sample G Usage data(gbm) Source Genome wide array CGH data from Diaz de Stahl, T., et al. (2005). Diaz de Stahl, T., et al. (2005) Chromosome 22 tiling-path array-cgh analysis identifies germline- and tumor-specific aberrations in patients with glioblastoma multiforme. Genes Chromosomes Cancer 44(2), smap Examples data(gbm) observations <- SMAPObservations(value=as.numeric(GBM[,2]), chromosome=as.character(gbm[,3]), startposition=as.numeric(gbm[,4]), endposition=as.numeric(gbm[,5]), name="g24460", reporterid=as.character(gbm[,1])) plot(observations) smap smap: A Segmental Maximum A Posteriori Approach to Array-CGH Copy Number Profiling This function fits a Hidden Markov Model (HMM) to a set of observed microarray intensity ratios and outputs the most plausible state sequence in the HMM through segmental a posteriori maximization. Briefly, given an HMM with initial parameter settings lambda and a set of observations O, the method alternates maximization of the joint posterior probability of the state sequence Q and lambda given O, p(q,lambda O), over Q (using a modified Viterbi algorithm) and lambda (using a gradient descent scheme with individual learning rate adaptation).

3 smap 3 Usage smap(x, Obs, sd.min=0.05, mean.sd=0.05, max.iters=inf, gd.max.iters=inf, tau=0.05, eta=0.01, e.change=0.5, e.same=1.2, e.min=0.0001, e.max=0.5, adaptive=true, overlap=true, distance=true, chrom.wise=false, verbose=1, L= ) Arguments x Obs sd.min mean.sd max.iters gd.max.iters tau eta e.change e.same e.min e.max adaptive overlap distance chrom.wise verbose L An object of class SMAPHMM-class. An object of class SMAPObservations-class. The minimum allowed standard deviation of state associated Gaussian distributions (numeric). Prior standard deviation of state associated Gaussian means (numeric). Maximum number of iterations in the SMAP algorithm (numeric). Maximum number of iterations in the gradient descent algorithm per SMAP iteration (numeric). Minimum log probability improvement required in the SMAP and gradient descent optimization (numeric). Initial learning rate in the gradient descent optimization (numeric). Multiplier for individual learning rate adaptation if the sign of partial derivative changes (numeric). Only used if adaptive == TRUE. Multiplier for individual learning rate adaptation if the sign of partial derivative stays the same (numeric). Only used if adaptive == TRUE. Minimum allowed learning rate (numeric). Maximum allowed learning rate (numeric). If TRUE, individual learning rate adaptation according to Algorithm 1 in Bagos et al. (2004) is used in the gradient descent optimization. If TRUE, genomic overlap of clones is considered in the optimization. If TRUE, genomic distance between clones is considered in the optimization, in terms of distance based transition probabilities. If TRUE, the observations are analyzed chromosome-wise rather than genomewise. Specifies the amount of output produced; 0 means no information and 3 a lot of information (numeric). A positive length parameter that controls the convergence of distance based transition probabilities towards 1 / nostates(x) (numeric). Details sd.min, mean.sd, and eta must all be greater than 0. tau must be greater than 0 if max.iters or gd.max.iters are infinite, and can be 0 otherwise. If adaptive is TRUE, then e.change is required to be in the interval (0,1], e.same must be greater than or equal to 1, and e.max must be greater than 0.

4 4 smap Value The method returns an object of class SMAPProfile-class or SMAPProfiles-class if chrom.wise is set to FALSE or TRUE, respectively. Robin Andersson Bagos P. G., Liakopoulos T. D., Hamodrakas, S. J. (2004) Faster Gradient Descent Training of Hidden Markov Models, Using Individual Learning Rate Adaptation. In Paliouras, G., Sakakibara, Y., editors, ICGI, volume 3264 of Lecture Notes in Computer Science, pages SMAPHMM, SMAPObservations Examples ## Load Glioblastoma multiforme data data(gbm) observations <- SMAPObservations(value=as.numeric(GBM[,2]), chromosome=as.character(gbm[,3]), startposition=as.numeric(gbm[,4]), endposition=as.numeric(gbm[,5]), name="g24460", reporterid=as.character(gbm[,1])) plot(observations, ylim=c(0,2)) ## Initiate HMM init.means <- c(0.4, 0.7, 1, 1.3, 1.6, 3) init.sds <- rep(0.1, 6) phi <- cbind(init.means, init.sds) hmm <- SMAPHMM(6, phi, inittrans=0.02) hmm ## RUN SMAP: profile <- smap(hmm, observations, verbose=2) ## genome profile plot(profile, ylim=c(0,2)) ## chromosome 9 profile ids <- which(chromosome(observations) == "9") plot(profile[ids], ylim=c(0,2), main="chromosome 9") ## output results for chromosome 9 #cbind(reporterid(observations[ids]), Q(profile[ids]))

5 SMAPHMM 5 SMAPHMM Constructor for "SMAPHMM" objects A constructor for SMAPHMM-class objects. Usage SMAPHMM(noStates, Phi, A=NULL, Pi=rep(1/noStates,noStates), inittrans=0.2/(nostates - 1)) Arguments nostates Phi A Pi inittrans The number of hidden states in the HMM (numeric). A Gaussian distribution parameter matrix (numeric). A nostates * nostates matrix of transition probabilities betweeen the hidden states (numeric). A vector of initial probabilities of starting in a certain state (numeric). Specifies the transition probability between non-equal states (numeric). Details Value Phi is a nostates * 2 matrix that specifies the paramaters of Gaussian distributions associated with each hidden state. The first column specifies standard deviations, the second specifies means. If A == NULL, inittrans specifies the transition probability between states i and j in 1:noStates, such that i!= j. Only used if A == NULL. inittrans * nostates must be smaller than (or equal to) 1. An object of class SMAPHMM-class. Robin Andersson, <robin.andersson@lcb.uu.se> smap, SMAPHMM-class, SMAPObservations-class

6 6 SMAPHMM-class SMAPHMM-class Class "SMAPHMM": A class to manage HMMs for the SMAP package Holds parameters for a Hidden Markov Model (HMM) used in the SMAP package. Objects from the Class Objects should not be created directly but via the constructor function SMAPHMM. Slots A: Object of class "matrix" The transition probability matrix between states. Pi: Object of class "numeric" The initial probabilities of starting in a certain state. Phi: Object of class "matrix" A matrix that specifies the paramaters of Gaussian distributions associated with each hidden state. The first column specifies standard deviations, the second specifies means. nostates: Object of class "numeric" The number of hidden states in the HMM. Z: Object of class "matrix" Matrix of transition probabilities. Y: Object of class "numeric" Vector of initial probabilities. eta: Object of class "ANY". Internal slot. grad: Object of class "ANY". Internal slot. Methods A signature(object = "SMAPHMM"): Returns the transition matrix. Pi signature(object = "SMAPHMM"): Returns the initial probabilities. Phi signature(object = "SMAPHMM"): Returns the distribution parameter matrix. nostates signature(object = "SMAPHMM"): Returns the number of hidden states in the HMM. Robin Andersson, <robin.andersson@lcb.uu.se> smap, SMAPHMM

7 SMAPObservations 7 SMAPObservations Constructor for "SMAPObservations" objects A constructor for SMAPObservations-class objects. Usage SMAPObservations(value, chromosome, startposition, endposition, name=character(0), reporterid=as.character(1:length(value))) Arguments value chromosome startposition endposition name reporterid A vector of microarray intensity ratios (numeric). A vector of chromosome annotations (character). A vector of start positions (numeric). A vector of end positions (numeric). The name of the observation set (character). A vector of observation identifiers, e.g., probe ids (character). Details The vectors value, chromosome, startposition, endposition, and reporterid must be of equal length. Value An object of class SMAPObservations-class. Robin Andersson, <robin.andersson@lcb.uu.se> smap, SMAPObservations-class, SMAPHMM-class

8 8 SMAPObservations-class Examples ## Load Glioblastoma multiforme data data(gbm) observations <- SMAPObservations(value=as.numeric(GBM[,2]), chromosome=as.character(gbm[,3]), startposition=as.numeric(gbm[,4]), endposition=as.numeric(gbm[,5]), name="g24460", reporterid=as.character(gbm[,1])) ## plot observations plot(observations, ylim=c(0,2)) ## plot subset of observations (chromosome 9) ids <- which(chromosome(observations) == "9") plot(observations[ids]) SMAPObservations-class Class "SMAPObservations": A class to manage microarray observations for the SMAP package Holds observed microarray intensity ratios and clone annotations for the SMAP package. Objects from the Class Objects can be created by calls of the form new("smapobservations", value, chromosome, startposition,endpos Values for internal slots (see below) are not intended to be passed upon construction. You can also use the convenience function SMAPObservations. Slots value: Object of class "numeric" Microarray intensity ratios. chromosome: Object of class "character" Associated chromosomes for the observations. startposition: Object of class "numeric" Associated start positions for the observations. endposition: Object of class "numeric" Associated end positions for the observations. reporterid: Object of class "character" Identifiers of the observations, e.g., probe ids. name: Object of class "character" An identifier of the observation set. noobservations: Object of class "numeric" The number of observations in the set. chrom.start: Object of class "numeric". Internal slot. chroms: Object of class "character". Internal slot. distance: Object of class "numeric". Internal slot. nooverlaps: Object of class "numeric". Internal slot. overlaps: Object of class "numeric". Internal slot. overlapids: Object of class "numeric". Internal slot. startoverlaps: Object of class "numeric". Internal slot.

9 SMAPProfile-class 9 Methods value signature(object = "SMAPObservations"): Returns the values of the observations. chromosome signature(object = "SMAPObservations"): Returns the chromosome annotations of the observations. startposition signature(object = "SMAPObservations"): Returns the start positions of the observations. endposition signature(object = "SMAPObservations"): Returns the end positions of the observations. reporterid signature(object = "SMAPObservations"): Returns the identifiers of the observations. name signature(object = "SMAPObservations"): Returns the name of the observation set. noobservations signature(object = "SMAPObservations"): Returns the number of observations in the set. initialize signature(.object = "SMAPObservations"): Creates an instance. plot signature(x = "SMAPObservations", y = "missing"): A plot method for the observations. [ signature(x = "SMAPPObservations"): Creates a new object of class SMAPObservations with extracted elements as specified by the indices provided. Robin Andersson, <robin.andersson@lcb.uu.se> smap, SMAPObservations SMAPProfile-class Class "SMAPProfile" Holds results from running smap. Objects from the Class Objects are not intended to be created directly but as a result from running smap.

10 10 SMAPProfiles-class Slots HMM: Object of class "SMAPHMM" observations: Object of class "SMAPObservations" P: Object of class "numeric" The log joint posterior probability of the state sequence Q and parameters of HMM given the observations. Q: Object of class "numeric" The optimal state sequance (path) in the HMM. name: Object of class "character" The name of the object. Methods P signature(object = "SMAPProfile"): Returns the log joint posterior probability. Q signature(object = "SMAPProfile"): Returns the optimal state sequence. HMM signature(object = "SMAPProfile"): Returns the optimized HMM. name signature(object = "SMAPProfile"): Returns the name of the profile. observations signature(object = "SMAPProfile"): Returns the observations. plot signature(x = "SMAPProfile", y = "missing"): A plot method for the result profile. [ signature(x = "SMAPProfile"): Creates a new object of class SMAPProfile with extracted elements as specified by the indices provided. Robin Andersson, <robin.andersson@lcb.uu.se> smap, SMAPProfiles-class SMAPProfiles-class Class "SMAPProfiles" Holds results from running smap. Objects from the Class Objects are not intended to be created directly but as a result from running smap. Slots.Data: Object of class "list" A list of objects of class SMAPProfile-class. name: Object of class "character" The name of the object.

11 SMAPProfiles-class 11 Extends Class "list", from data part. Class "vector", by class "list". Methods Q signature(object = "SMAPProfiles"): Returns the optimal state sequence of the list elements. observations signature(object = "SMAPProfiles"): Returns the observations of the list elements. name signature(object = "SMAPProfiles"): Returns the name of the profile. plot signature(x = "SMAPProfiles", y = "missing"): A plot method for the result profiles. Robin Andersson, <robin.andersson@lcb.uu.se> smap, SMAPProfile-class

12 Index Topic classes SMAPHMM, 5 SMAPHMM-class, 6 SMAPObservations, 7 SMAPObservations-class, 8 SMAPProfile-class, 9 SMAPProfiles-class, 10 Topic datasets GBM, 2 Topic methods smap, 2 startposition (SMAPObservations-class), 8 value (SMAPObservations-class), 8 A (SMAPHMM-class), 6 chromosome (SMAPObservations-class), 8 endposition (SMAPObservations-class), 8 GBM, 2 HMM (SMAPProfile-class), 9 name (SMAPObservations-class), 8 noobservations (SMAPObservations-class), 8 nostates (SMAPHMM-class), 6 observations (SMAPProfile-class), 9 P (SMAPProfile-class), 9 Phi (SMAPHMM-class), 6 Pi (SMAPHMM-class), 6 plot,smapobservations,missing-method (SMAPObservations-class), 8 Q (SMAPProfile-class), 9 reporterid (SMAPObservations-class), 8 smap, 2, 2, 5 7, 9 11 SMAPHMM, 4, 5, 6 SMAPHMM-class, 6 SMAPObservations, 4, 7, 8, 9 SMAPObservations-class, 8 SMAPProfile-class, 9 SMAPProfiles-class, 10 12

Package cgh. R topics documented: February 19, 2015

Package cgh. R topics documented: February 19, 2015 Package cgh February 19, 2015 Version 1.0-7.1 Date 2009-11-20 Title Microarray CGH analysis using the Smith-Waterman algorithm Author Tom Price Maintainer Tom Price

More information

Package CNTools. November 6, 2018

Package CNTools. November 6, 2018 Version 1.38.0 Package CNTools November 6, 2018 Title Convert segment data into a region by sample matrix to allow for other high level computational analyses. Author Jianhua Zhang Maintainer J. Zhang

More information

Package BAC. R topics documented: November 30, 2018

Package BAC. R topics documented: November 30, 2018 Type Package Title Bayesian Analysis of Chip-chip experiment Version 1.42.0 Date 2007-11-20 Author Raphael Gottardo Package BAC November 30, 2018 Maintainer Raphael Gottardo Depends

More information

Package cghmcr. March 6, 2019

Package cghmcr. March 6, 2019 Version 1.40.0 Package cghmcr March 6, 2019 Title Find chromosome regions showing common gains/losses Author J. Zhang and B. Feng Maintainer J. Zhang Depends methods, DNAcopy,

More information

RJaCGH, a package for analysis of

RJaCGH, a package for analysis of RJaCGH, a package for analysis of CGH arrays with Reversible Jump MCMC 1. CGH Arrays: Biological problem: Changes in number of DNA copies are associated to cancer activity. Microarray technology: Oscar

More information

KC-SMART Vignette. Jorma de Ronde, Christiaan Klijn April 30, 2018

KC-SMART Vignette. Jorma de Ronde, Christiaan Klijn April 30, 2018 KC-SMART Vignette Jorma de Ronde, Christiaan Klijn April 30, 2018 1 Introduction In this Vignette we demonstrate the usage of the KCsmart R package. This R implementation is based on the original implementation

More information

Package STAN. R topics documented: July 23, Version Date Title The Genomic STate ANnotation Package

Package STAN. R topics documented: July 23, Version Date Title The Genomic STate ANnotation Package Version 2.8.0 Date 2017-08-10 Title The Genomic STate ANnotation Package Package STAN July 23, 2018 Author Benedikt Zacher, Julia Ertl, Julien Gagneur, Achim Tresch Maintainer Rafael Campos-Martin

More information

Package DFP. February 2, 2018

Package DFP. February 2, 2018 Type Package Title Gene Selection Version 1.36.0 Date 2009-07-22 Package DFP February 2, 2018 Author R. Alvarez-Gonzalez, D. Glez-Pena, F. Diaz, F. Fdez-Riverola Maintainer Rodrigo Alvarez-Glez

More information

Package inversion. R topics documented: July 18, Type Package. Title Inversions in genotype data. Version

Package inversion. R topics documented: July 18, Type Package. Title Inversions in genotype data. Version Package inversion July 18, 2013 Type Package Title Inversions in genotype data Version 1.8.0 Date 2011-05-12 Author Alejandro Caceres Maintainer Package to find genetic inversions in genotype (SNP array)

More information

Package ibbig. R topics documented: December 24, 2018

Package ibbig. R topics documented: December 24, 2018 Type Package Title Iterative Binary Biclustering of Genesets Version 1.26.0 Date 2011-11-23 Author Daniel Gusenleitner, Aedin Culhane Package ibbig December 24, 2018 Maintainer Aedin Culhane

More information

Package CNAnorm. April 11, 2018

Package CNAnorm. April 11, 2018 Version 1.24.0 Date 2012-08-06 Package CNAnorm April 11, 2018 Title A normalization method for Copy Number Aberration in cancer samples Author Stefano Berri , Henry M. Wood ,

More information

Quiz Section Week 8 May 17, Machine learning and Support Vector Machines

Quiz Section Week 8 May 17, Machine learning and Support Vector Machines Quiz Section Week 8 May 17, 2016 Machine learning and Support Vector Machines Another definition of supervised machine learning Given N training examples (objects) {(x 1,y 1 ), (x 2,y 2 ),, (x N,y N )}

More information

Package icnv. R topics documented: March 8, Title Integrated Copy Number Variation detection Version Author Zilu Zhou, Nancy Zhang

Package icnv. R topics documented: March 8, Title Integrated Copy Number Variation detection Version Author Zilu Zhou, Nancy Zhang Title Integrated Copy Number Variation detection Version 1.2.1 Author Zilu Zhou, Nancy Zhang Package icnv March 8, 2019 Maintainer Zilu Zhou Integrative copy number variation

More information

Package snm. July 20, 2018

Package snm. July 20, 2018 Type Package Title Supervised Normalization of Microarrays Version 1.28.0 Package snm July 20, 2018 Author Brig Mecham and John D. Storey SNM is a modeling strategy especially designed

More information

Package yaqcaffy. January 19, 2019

Package yaqcaffy. January 19, 2019 Package yaqcaffy January 19, 2019 Title Affymetrix expression data quality control and reproducibility analysis Version 1.42.0 Author Quality control of Affymetrix GeneChip expression data and reproducibility

More information

Package XMRF. June 25, 2015

Package XMRF. June 25, 2015 Type Package Package XMRF June 25, 2015 Title Markov Random Fields for High-Throughput Genetics Data Version 1.0 Date 2015-06-12 Author Ying-Wooi Wan, Genevera I. Allen, Yulia Baker, Eunho Yang, Pradeep

More information

Package bnbc. R topics documented: April 1, Version 1.4.0

Package bnbc. R topics documented: April 1, Version 1.4.0 Version 1.4.0 Package bnbc April 1, 2019 Title Bandwise normalization and batch correction of Hi-C data Tools to normalize (several) Hi-C data from replicates. Depends R (>= 3.4.0), methods, BiocGenerics,

More information

Package geecc. R topics documented: December 7, Type Package

Package geecc. R topics documented: December 7, Type Package Type Package Package geecc December 7, 2018 Title Gene Set Enrichment Analysis Extended to Contingency Cubes Version 1.16.0 Date 2016-09-19 Author Markus Boenn Maintainer Markus Boenn

More information

Release Note. Agilent Genomic Workbench Standard Edition

Release Note. Agilent Genomic Workbench Standard Edition Release te Agilent Genomic Workbench Standard Edition 5.0.14 A. New for the Agilent Genomic Workbench DNA Analytics becomes a component of Agilent Genomic Workbench DNA Analytics becomes a component of

More information

Package frma. R topics documented: March 8, Version Date Title Frozen RMA and Barcode

Package frma. R topics documented: March 8, Version Date Title Frozen RMA and Barcode Version 1.34.0 Date 2017-11-08 Title Frozen RMA and Barcode Package frma March 8, 2019 Preprocessing and analysis for single microarrays and microarray batches. Author Matthew N. McCall ,

More information

Package semisup. March 10, Version Title Semi-Supervised Mixture Model

Package semisup. March 10, Version Title Semi-Supervised Mixture Model Version 1.7.1 Title Semi-Supervised Mixture Model Package semisup March 10, 2019 Description Useful for detecting SNPs with interactive effects on a quantitative trait. This R packages moves away from

More information

Package DriverNet. R topics documented: October 4, Type Package

Package DriverNet. R topics documented: October 4, Type Package Package DriverNet October 4, 2013 Type Package Title Drivernet: uncovering somatic driver mutations modulating transcriptional networks in cancer Version 1.0.0 Date 2012-03-21 Author Maintainer Jiarui

More information

Package pso. R topics documented: February 20, Version Date Title Particle Swarm Optimization

Package pso. R topics documented: February 20, Version Date Title Particle Swarm Optimization Version 1.0.3 Date 2012-09-02 Title Particle Swarm Optimization Package pso February 20, 2015 Author Claus Bendtsen . Maintainer Claus Bendtsen

More information

Package dualks. April 3, 2019

Package dualks. April 3, 2019 Type Package Package dualks April 3, 2019 Title Dual KS Discriminant Analysis and Classification Version 1.42.0 Date 2008-04-25 Author Eric J. Kort, Yarong Yang Maintainer Eric J. Kort ,

More information

How to use CNTools. Overview. Algorithms. Jianhua Zhang. April 14, 2011

How to use CNTools. Overview. Algorithms. Jianhua Zhang. April 14, 2011 How to use CNTools Jianhua Zhang April 14, 2011 Overview Studies have shown that genomic alterations measured as DNA copy number variations invariably occur across chromosomal regions that span over several

More information

Package FunciSNP. November 16, 2018

Package FunciSNP. November 16, 2018 Type Package Package FunciSNP November 16, 2018 Title Integrating Functional Non-coding Datasets with Genetic Association Studies to Identify Candidate Regulatory SNPs Version 1.26.0 Date 2013-01-19 Author

More information

Package CNVrd2. March 18, 2019

Package CNVrd2. March 18, 2019 Type Package Package CNVrd2 March 18, 2019 Title CNVrd2: a read depth-based method to detect and genotype complex common copy number variants from next generation sequencing data. Version 1.20.0 Date 2014-10-04

More information

Package POST. R topics documented: November 8, Type Package

Package POST. R topics documented: November 8, Type Package Type Package Package POST November 8, 2018 Title Projection onto Orthogonal Space Testing for High Dimensional Data Version 1.6.0 Author Xueyuan Cao and Stanley.pounds

More information

The bcp Package. February 8, 2009

The bcp Package. February 8, 2009 The bcp Package February 8, 2009 Type Package Title A Package for Performing a Bayesian Analysis of Change Point Problems Version 2.1 Date 2008-07-13 Author Chandra Erdman and John W. Emerson Maintainer

More information

Package macorrplot. R topics documented: October 2, Title Visualize artificial correlation in microarray data. Version 1.50.

Package macorrplot. R topics documented: October 2, Title Visualize artificial correlation in microarray data. Version 1.50. Package macorrplot October 2, 2018 Title Visualize artificial correlation in microarray data Version 1.50.0 Author Alexander Ploner Description Graphically displays correlation

More information

Package genomeintervals

Package genomeintervals Version 1.38.0 Date 2017-04-05 Type Package Title Operations on genomic intervals Package genomeintervals April 16, 2019 Author Julien Gagneur , Joern Toedling, Richard Bourgon,

More information

Package RmiR. R topics documented: September 26, 2018

Package RmiR. R topics documented: September 26, 2018 Package RmiR September 26, 2018 Title Package to work with mirnas and mirna targets with R Description Useful functions to merge microrna and respective targets using differents databases Version 1.36.0

More information

Package HMRFBayesHiC

Package HMRFBayesHiC Package HMRFBayesHiC February 3, 2015 Type Package Title HMRFBayesHiC conduct Hidden Markov Random Field (HMRF) Bayes Peak Calling Method on HiC Data Version 1.0 Date 2015-01-30 Author Zheng Xu Maintainer

More information

Package STROMA4. October 22, 2018

Package STROMA4. October 22, 2018 Version 1.5.2 Date 2017-03-23 Title Assign Properties to TNBC Patients Package STROMA4 October 22, 2018 This package estimates four stromal properties identified in TNBC patients in each patient of a gene

More information

Package TilePlot. February 15, 2013

Package TilePlot. February 15, 2013 Package TilePlot February 15, 2013 Type Package Title Characterization of functional genes in complex microbial communities using tiling DNA microarrays Version 1.3 Date 2011-05-04 Author Ian Marshall

More information

Package macat. October 16, 2018

Package macat. October 16, 2018 Title MicroArray Chromosome Analysis Tool Version 1.54.0 Date 2014-01-15 Package macat October 16, 2018 Author Benjamin Georgi, Matthias Heinig, Stefan Roepcke, Sebastian Schmeier, Joern Toedling Depends

More information

Package enrich. September 3, 2013

Package enrich. September 3, 2013 Package enrich September 3, 2013 Type Package Title An R package for the analysis of multiple ChIP-seq data Version 2.0 Date 2013-09-01 Author Yanchun Bao , Veronica Vinciotti

More information

ECE521: Week 11, Lecture March 2017: HMM learning/inference. With thanks to Russ Salakhutdinov

ECE521: Week 11, Lecture March 2017: HMM learning/inference. With thanks to Russ Salakhutdinov ECE521: Week 11, Lecture 20 27 March 2017: HMM learning/inference With thanks to Russ Salakhutdinov Examples of other perspectives Murphy 17.4 End of Russell & Norvig 15.2 (Artificial Intelligence: A Modern

More information

Package iclusterplus

Package iclusterplus Package iclusterplus June 13, 2018 Title Integrative clustering of multi-type genomic data Version 1.16.0 Date 2018-04-06 Depends R (>= 3.3.0), parallel Suggests RUnit, BiocGenerics Author Qianxing Mo,

More information

Package GreyListChIP

Package GreyListChIP Type Package Version 1.14.0 Package GreyListChIP November 2, 2018 Title Grey Lists -- Mask Artefact Regions Based on ChIP Inputs Date 2018-01-21 Author Gord Brown Maintainer Gordon

More information

Package quantsmooth. R topics documented: May 4, Type Package

Package quantsmooth. R topics documented: May 4, Type Package Type Package Package quantsmooth May 4, 2018 Title Quantile smoothing and genomic visualization of array data Version 1.46.0 Date 2014-10-07 Author, Paul Eilers, Renee Menezes Maintainer

More information

Package MethylSeekR. January 26, 2019

Package MethylSeekR. January 26, 2019 Type Package Title Segmentation of Bis-seq data Version 1.22.0 Date 2014-7-1 Package MethylSeekR January 26, 2019 Author Lukas Burger, Dimos Gaidatzis, Dirk Schubeler and Michael Stadler Maintainer Lukas

More information

Package muscle. R topics documented: March 7, Type Package

Package muscle. R topics documented: March 7, Type Package Type Package Package muscle March 7, 2019 Title Multiple Sequence Alignment with MUSCLE Version 3.24.0 Date 2012-10-05 Author Algorithm by Robert C. Edgar. R port by Alex T. Kalinka. Maintainer Alex T.

More information

Package EMDomics. November 11, 2018

Package EMDomics. November 11, 2018 Package EMDomics November 11, 2018 Title Earth Mover's Distance for Differential Analysis of Genomics Data The EMDomics algorithm is used to perform a supervised multi-class analysis to measure the magnitude

More information

Package madsim. December 7, 2016

Package madsim. December 7, 2016 Type Package Package madsim December 7, 2016 Title A Flexible Microarray Data Simulation Model Version 1.2.1 Date 2016-12-07 Author Doulaye Dembele Maintainer Doulaye Dembele Description

More information

Package lol. R topics documented: December 13, Type Package Title Lots Of Lasso Version Date Author Yinyin Yuan

Package lol. R topics documented: December 13, Type Package Title Lots Of Lasso Version Date Author Yinyin Yuan Type Package Title Lots Of Lasso Version 1.30.0 Date 2011-04-02 Author Package lol December 13, 2018 Maintainer Various optimization methods for Lasso inference with matri warpper

More information

Package affypdnn. January 10, 2019

Package affypdnn. January 10, 2019 Version 1.56.0 Date 2009-09-22 Package affypdnn January 10, 2019 Title Probe Dependent Nearest Neighbours (PDNN) for the affy package Author H. Bjorn Nielsen and Laurent Gautier (Many thanks to Li Zhang

More information

Package generxcluster

Package generxcluster Date 2013-02-13 Version 1.18.0 License GPL (>= 2) Package generxcluster April 10, 2019 Detect Differential Clustering of Genomic Sites such as gene therapy integrations. The package provides some functions

More information

Package les. October 4, 2013

Package les. October 4, 2013 Package les October 4, 2013 Type Package Title Identifying Differential Effects in Tiling Microarray Data Version 1.10.0 Date 2011-10-10 Author Julian Gehring, Clemens Kreutz, Jens Timmer Maintainer Julian

More information

Package mederrrank. R topics documented: July 8, 2015

Package mederrrank. R topics documented: July 8, 2015 Package mederrrank July 8, 2015 Title Bayesian Methods for Identifying the Most Harmful Medication Errors Version 0.0.8 Date 2015-07-06 Two distinct but related statistical approaches to the problem of

More information

SVM Classification in -Arrays

SVM Classification in -Arrays SVM Classification in -Arrays SVM classification and validation of cancer tissue samples using microarray expression data Furey et al, 2000 Special Topics in Bioinformatics, SS10 A. Regl, 7055213 What

More information

Package LiquidAssociation

Package LiquidAssociation Type Package Title LiquidAssociation Version 1.36.0 Date 2009-10-07 Package LiquidAssociation Author Yen-Yi Ho Maintainer Yen-Yi Ho March 8, 2019 The package contains functions

More information

Package HMMCont. February 19, 2015

Package HMMCont. February 19, 2015 Type Package Package HMMCont February 19, 2015 Title Hidden Markov Model for Continuous Observations Processes Version 1.0 Date 2014-02-11 Author Maintainer The package includes

More information

Package mgsa. January 13, 2019

Package mgsa. January 13, 2019 Version 1.31.0 Date 2017-04-28 Title Model-based gene set analysis Package mgsa January 13, 2019 Author Sebastian Bauer , Julien Gagneur Maintainer

More information

Package sscore. R topics documented: June 27, Version Date

Package sscore. R topics documented: June 27, Version Date Version 1.52.0 Date 2009-04-11 Package sscore June 27, 2018 Title S-Score Algorithm for Affymetrix Oligonucleotide Microarrays Author Richard Kennedy , based on C++ code from

More information

10-701/15-781, Fall 2006, Final

10-701/15-781, Fall 2006, Final -7/-78, Fall 6, Final Dec, :pm-8:pm There are 9 questions in this exam ( pages including this cover sheet). If you need more room to work out your answer to a question, use the back of the page and clearly

More information

Package TilePlot. April 8, 2011

Package TilePlot. April 8, 2011 Type Package Package TilePlot April 8, 2011 Title This package analyzes functional gene tiling DNA microarrays for studying complex microbial communities. Version 1.1 Date 2011-04-07 Author Ian Marshall

More information

Package HMMcopy. September 6, 2011

Package HMMcopy. September 6, 2011 Package HMMcopy September 6, 2011 Type Package Title Copy number prediction with correction for GC and mappability bias for HTS data Version 0.1.0 Date 2011-09-06 Author Maintainer

More information

Package cnvgsa. R topics documented: January 4, Type Package

Package cnvgsa. R topics documented: January 4, Type Package Type Package Package cnvgsa January 4, 2019 Title Gene Set Analysis of (Rare) Copy Number Variants Version 1.26.0 Date 2015-03-02 Author Daniele Merico , Robert Ziman ;

More information

Package omicade4. June 29, 2018

Package omicade4. June 29, 2018 Type Package Title Multiple co-inertia analysis of omics datasets Version 1.20.0 Date 2017-04-24 Package omicade4 June 29, 2018 Author, Aedin Culhane, Amin M. Gholami. Maintainer

More information

Package HMMASE. February 4, HMMASE R package

Package HMMASE. February 4, HMMASE R package Package HMMASE February 4, 2014 Type Package Title HMMASE R package Version 1.0 Date 2014-02-04 Author Juan R. Steibel, Heng Wang, Ping-Shou Zhong Maintainer Heng Wang An R package that

More information

Faster Gradient Descent Training of Hidden Markov Models, Using Individual Learning Rate Adaptation

Faster Gradient Descent Training of Hidden Markov Models, Using Individual Learning Rate Adaptation Faster Gradient Descent Training of Hidden Markov Models, Using Individual Learning Rate Adaptation Pantelis G. Bagos, Theodore D. Liakopoulos, and Stavros J. Hamodrakas Department of Cell Biology and

More information

Package conumee. February 17, 2018

Package conumee. February 17, 2018 Package conumee February 17, 2018 Title Enhanced copy-number variation analysis using Illumina DNA methylation arrays Version 1.13.0 Author Volker Hovestadt, Marc Zapatka Maintainer Address Division of

More information

Package ASEB. January 20, 2019

Package ASEB. January 20, 2019 Title Predict Acetylated Lysine Sites Version 1.26.0 Package ASEB January 20, 2019 Author Likun Wang and Tingting Li . ASEB is an R package to predict lysine

More information

Package penalizedlda

Package penalizedlda Type Package Package penalizedlda July 11, 2015 Title Penalized Classification using Fisher's Linear Discriminant Version 1.1 Date 2015-07-09 Author Daniela Witten Maintainer Daniela Witten

More information

Package starank. May 11, 2018

Package starank. May 11, 2018 Type Package Title Stability Ranking Version 1.22.0 Date 2012-02-09 Author Juliane Siebourg, Niko Beerenwinkel Package starank May 11, 2018 Maintainer Juliane Siebourg Detecting

More information

Package reb. R topics documented: March 7, Title Regional Expression Biases Version

Package reb. R topics documented: March 7, Title Regional Expression Biases Version Title Regional Expression Biases Version 1.60.0 Package reb March 7, 2019 Author Kyle A. Furge and Karl Dykema Depends R (>= 2.0), Biobase, idiogram (>= 1.5.3)

More information

Package starank. August 3, 2013

Package starank. August 3, 2013 Package starank August 3, 2013 Type Package Title Stability Ranking Version 1.3.0 Date 2012-02-09 Author Juliane Siebourg, Niko Beerenwinkel Maintainer Juliane Siebourg

More information

Package OrderedList. December 31, 2017

Package OrderedList. December 31, 2017 Title Similarities of Ordered Gene Lists Version 1.50.0 Date 2008-07-09 Package OrderedList December 31, 2017 Author Xinan Yang, Stefanie Scheid, Claudio Lottaz Detection of similarities between ordered

More information

Package geecc. October 9, 2015

Package geecc. October 9, 2015 Type Package Package geecc October 9, 2015 Title Gene set Enrichment analysis Extended to Contingency Cubes Version 1.2.0 Date 2014-12-31 Author Markus Boenn Maintainer Markus Boenn

More information

Package twilight. August 3, 2013

Package twilight. August 3, 2013 Package twilight August 3, 2013 Version 1.37.0 Title Estimation of local false discovery rate Author Stefanie Scheid In a typical microarray setting with gene expression data observed

More information

Package pcagopromoter

Package pcagopromoter Version 1.26.0 Date 2012-03-16 Package pcagopromoter November 13, 2018 Title pcagopromoter is used to analyze DNA micro array data Author Morten Hansen, Jorgen Olsen Maintainer Morten Hansen

More information

Package glinternet. June 15, 2018

Package glinternet. June 15, 2018 Type Package Package glinternet June 15, 2018 Title Learning Interactions via Hierarchical Group-Lasso Regularization Version 1.0.8 Date 2018-06-20 Author Michael Lim, Trevor Hastie Maintainer Michael

More information

Package ffpe. October 1, 2018

Package ffpe. October 1, 2018 Type Package Package ffpe October 1, 2018 Title Quality assessment and control for FFPE microarray expression data Version 1.24.0 Author Levi Waldron Maintainer Levi Waldron

More information

Package MetaQC. February 19, 2015

Package MetaQC. February 19, 2015 Type Package Package MetaQC February 19, 2015 Title MetaQC: Objective Quality Control and Inclusion/Exclusion Criteria for Genomic Meta-Analysis Version 0.1.13 Author Don Kang and

More information

R topics documented: 2 R topics documented:

R topics documented: 2 R topics documented: Package cn.mops March 20, 2019 Maintainer Guenter Klambauer Author Guenter Klambauer License LGPL (>= 2.0) Type Package Title cn.mops - Mixture of Poissons for CNV detection in

More information

Package mosaics. April 23, 2016

Package mosaics. April 23, 2016 Type Package Package mosaics April 23, 2016 Title MOSAiCS (MOdel-based one and two Sample Analysis and Inference for ChIP-Seq) Version 2.4.1 Depends R (>= 3.0.0), methods, graphics, Rcpp Imports MASS,

More information

Package vbmp. March 3, 2018

Package vbmp. March 3, 2018 Type Package Package vbmp March 3, 2018 Title Variational Bayesian Multinomial Probit Regression Version 1.47.0 Author Nicola Lama , Mark Girolami Maintainer

More information

Package rgreat. June 19, 2018

Package rgreat. June 19, 2018 Type Package Title Client for GREAT Analysis Version 1.12.0 Date 2018-2-20 Author Zuguang Gu Maintainer Zuguang Gu Package rgreat June 19, 2018 Depends R (>= 3.1.2), GenomicRanges, IRanges,

More information

Package RTCGAToolbox

Package RTCGAToolbox Type Package Package RTCGAToolbox November 27, 2017 Title A new tool for exporting TCGA Firehose data Version 2.9.2 Author Mehmet Kemal Samur Maintainer Marcel Ramos Managing

More information

Package rgcvpack. February 20, Index 6. Fitting Thin Plate Smoothing Spline. Fit thin plate splines of any order with user specified knots

Package rgcvpack. February 20, Index 6. Fitting Thin Plate Smoothing Spline. Fit thin plate splines of any order with user specified knots Version 0.1-4 Date 2013/10/25 Title R Interface for GCVPACK Fortran Package Author Xianhong Xie Package rgcvpack February 20, 2015 Maintainer Xianhong Xie

More information

Package multihiccompare

Package multihiccompare Package multihiccompare September 23, 2018 Title Normalize and detect differences between Hi-C datasets when replicates of each experimental condition are available Version 0.99.44 multihiccompare provides

More information

Package GSRI. March 31, 2019

Package GSRI. March 31, 2019 Type Package Title Gene Set Regulation Index Version 2.30.0 Package GSRI March 31, 2019 Author Julian Gehring, Kilian Bartholome, Clemens Kreutz, Jens Timmer Maintainer Julian Gehring

More information

Package texteffect. November 27, 2017

Package texteffect. November 27, 2017 Version 0.1 Date 2017-11-27 Package texteffect November 27, 2017 Title Discovering Latent Treatments in Text Corpora and Estimating Their Causal Effects Author Christian Fong

More information

Package DMCHMM. January 19, 2019

Package DMCHMM. January 19, 2019 Package DMCHMM January 19, 2019 Type Package Title Differentially Methylated CpG using Hidden Markov Model Version 1.4.0 Author Farhad Shokoohi Maintainer A pipeline for identifying differentially methylated

More information

Package NormalGamma. February 19, 2015

Package NormalGamma. February 19, 2015 Type Package Title Normal-gamma convolution model Version 1.1 Date 2013-09-20 Author S. Plancade and Y. Rozenholc Package NormalGamma February 19, 2015 Maintainer Sandra Plancade

More information

Package cumseg. February 19, 2015

Package cumseg. February 19, 2015 Package cumseg February 19, 2015 Type Package Title Change point detection in genomic sequences Version 1.1 Date 2011-10-14 Author Vito M.R. Muggeo Maintainer Vito M.R. Muggeo Estimation

More information

The grplasso Package

The grplasso Package The grplasso Package June 27, 2007 Type Package Title Fitting user specified models with Group Lasso penalty Version 0.2-1 Date 2007-06-27 Author Lukas Meier Maintainer Lukas Meier

More information

Package makecdfenv. March 13, 2019

Package makecdfenv. March 13, 2019 Version 1.58.0 Date 2006-03-06 Title CDF Environment Maker Package makecdfenv March 13, 2019 Author Rafael A. Irizarry , Laurent Gautier , Wolfgang Huber ,

More information

Package ic10. September 23, 2015

Package ic10. September 23, 2015 Type Package Package ic10 September 23, 2015 Title A Copy Number and Expression-Based Classifier for Breast Tumours Version 1.1.3 Date 2015-09-22 Author Maintainer Oscar M. Rueda

More information

Package PSEA. R topics documented: November 17, Version Date Title Population-Specific Expression Analysis.

Package PSEA. R topics documented: November 17, Version Date Title Population-Specific Expression Analysis. Version 1.16.0 Date 2017-06-09 Title Population-Specific Expression Analysis. Package PSEA November 17, 2018 Author Maintainer Imports Biobase, MASS Suggests BiocStyle Deconvolution of gene expression

More information

Package RcisTarget. July 17, 2018

Package RcisTarget. July 17, 2018 Type Package Package RcisTarget July 17, 2018 Title RcisTarget: Identify transcription factor binding motifs enriched on a gene list Version 1.1.2 Date 2018-05-26 Author Sara Aibar, Gert Hulselmans, Stein

More information

Package NGScopy. April 10, 2015

Package NGScopy. April 10, 2015 Type Package Version 1.0.0 Date 2014-08-21 23:46:44 EDT Package NGScopy April 10, 2015 Title NGScopy: Detection of copy number variations in next generation sequencing NGScopy provides a quantitative caller

More information

Package Canopy. April 8, 2017

Package Canopy. April 8, 2017 Type Package Package Canopy April 8, 2017 Title Accessing Intra-Tumor Heterogeneity and Tracking Longitudinal and Spatial Clonal Evolutionary History by Next-Generation Sequencing Version 1.2.0 Author

More information

Package splicegear. R topics documented: December 4, Title splicegear Version Author Laurent Gautier

Package splicegear. R topics documented: December 4, Title splicegear Version Author Laurent Gautier Title splicegear Version 1.51.0 Author Laurent Gautier Package splicegear December 4, 2017 A set of tools to work with alternative splicing Maintainer Laurent Gautier

More information

Package PUlasso. April 7, 2018

Package PUlasso. April 7, 2018 Type Package Package PUlasso April 7, 2018 Title High-Dimensional Variable Selection with Presence-Only Data Version 3.1 Date 2018-4-4 Efficient algorithm for solving PU (Positive and Unlabelled) problem

More information

Package SSLASSO. August 28, 2018

Package SSLASSO. August 28, 2018 Package SSLASSO August 28, 2018 Version 1.2-1 Date 2018-08-28 Title The Spike-and-Slab LASSO Author Veronika Rockova [aut,cre], Gemma Moran [aut] Maintainer Gemma Moran Description

More information

Package cwm. R topics documented: February 19, 2015

Package cwm. R topics documented: February 19, 2015 Package cwm February 19, 2015 Type Package Title Cluster Weighted Models by EM algorithm Version 0.0.3 Date 2013-03-26 Author Giorgio Spedicato, Simona C. Minotti Depends R (>= 2.14), MASS Imports methods,

More information

Package bacon. October 31, 2018

Package bacon. October 31, 2018 Type Package Package October 31, 2018 Title Controlling bias and inflation in association studies using the empirical null distribution Version 1.10.0 Author Maarten van Iterson [aut, cre], Erik van Zwet

More information

Hidden Markov Models. Mark Voorhies 4/2/2012

Hidden Markov Models. Mark Voorhies 4/2/2012 4/2/2012 Searching with PSI-BLAST 0 th order Markov Model 1 st order Markov Model 1 st order Markov Model 1 st order Markov Model What are Markov Models good for? Background sequence composition Spam Hidden

More information