Tutorial. Download and Installation. Context. Attractor Reachability Analysis in GINsim: Firefront and Avatar

Size: px
Start display at page:

Download "Tutorial. Download and Installation. Context. Attractor Reachability Analysis in GINsim: Firefront and Avatar"

Transcription

1 Tutorial Attractor Reachability Analysis in GINsim: Firefront and Avatar Download and Installation Download: Avatar is implemented within GINsim. The documentation of the alternative services provided by GINsim can be found in Requirements: Java version 6 (JDK v1.6/jre v6) or superior. 4GB of free RAM are suggested for the exhaustive analysis of complex models. Installation Notes GUI: to run the desktop GUI either click directly on the provided.jar or use the following command on your MAC/Linux/Windows console: java -jar GINsim-[version].jar, where [version] should be replaced by the downloaded version. To control the amount of available memory add -Xmx[memory] m to the previous command where memory defines the number of allocated megabytes (e.g. java -jar -Xmx2048m GINsim jar to allocated 2GB). API: to use the programmatic interface within your Java project: 1) add the provided GINsim.JAR as a library, or 2) unzip the provided source-code, create a Java project (e.g. by opening the folder as a Java Project in Eclipse), and customize and run the disclosed testing classes. Script: to run simulations using a script, please edit the illustrative Python scripts provided in scripts/ folder and run the following command on your console: java -jar GINsim-[version].jar -s [scriptname] [input-model] [output], where version corresponds to the downloaded GINsim version, scriptname is the script file name, input-model optionally specifies the input model and output is the output file name (e.g. java -jar GINsim jar -s scripts/avatarscript.py sp1.zginml outconsole.txt). Context The Avatar software relies on logical formalisms to describe the discrete dynamics of gene regulatory and signalling networks in order to identify attractors and estimate their reachability from a given portion of the state space. For this aim, we consider the generalised modelling framework initially introduced by R. Thomas and collaborators [?] and implemented in our software tool GINsim [?], where the regulatory dynamics of a concurrent system can be translated into state transition graphs. In this context, three algorithms are make available to analyze the asymptotic behaviour of a given system: traditional MonteCarlo simulation (approximate) for an approximate reachability analysis of stable states and complex attractors (assuming apriori knowledge of the states within terminal cycles); Firefront simulation (quasi-exact) for the exhaustive estimation of the reachable stable states and compact complex attractors; Avatar simulation for an efficient discovery of stable states and complex attractors (even in the presence of arbitrarily-complex transient and terminal cycles) and approximate reachability estimation; 1

2 Running GUI: Figure 1 illustrates how to access Avatar services within GINsim, while Figure 2 provides the opened window to parameterize and run Avatar, Firefront and MonteCarlo. The desktop GUI is compatible with Linux/Mac/Windows operating systems, supports multiple model formats, performs soundness checks and provides visual representations of the outputs. Figure 1: GINsim: importing a model and accessing the dedicated window for attractor analyzes. Figure 2: Analysis of reachable attractors: Avatar, Firefront and Monte Carlo parameters. The Run button executes the selected algorithm over the inputted model and displays the progress of the search (as well as additional informative messages) at the bottom of the window (see Figure 3). The user can force the termination of the search by clicking on the Force exit button. API/Script: the API is accompanied with the javadoc documentation and with customizable testing classes to parameterize and run the algorithms. The use of the API is suggested for an easy parameterization, adaptation or extension of the proposed simulations. We also provide the possibility to call the algorithms within Python scripts. The parameterization of the algorithms (when either recurring to the API or Python scripts) can be done by inputing in text format the name of the parameters and their value (whenever applicable). The parameters that are not inputted or whose values are not specified are initialized with default values. An illustrative script with a textual call to the Avatar algorithm using the parameters illustrated in Figure 2 is: 2

3 avatar = gs.service( avatarservice ) result = avatar.run( strategy=matrixinversion runs=1000 maxdepth=10000 tau=4 mincyclesize=3 maxgrowthsize= maxrewiringsize=4000 mintransientsize=100 keeptransients keepattractors quiet plots outputdir=/output input=models/sp1.avatar ) print result.tostring() Figure 3: Execution of a simulation. Input Model. GINsim accepts a wide-variety of formats specifying how the components of a system affect each other, including the native GINML format, BoolSim, Cytoscape, NuSMV, Petri Net, SBML-qual and truth tables. Some of these formats further allow for the specification of the set of valid initial states for the target system; its input and output components; and apriori known attractors. For more details on how to specify, import and export discrete models of concurrent systems please check GINsim documentation: Model Customizations. Four major types of customizations can be applied over the input model: perturbations to the regulatory graph inferred from the model [A1]; applicable reductions to the model [A2]; addition/selection/removal of states to the original set of initial states [A3,A5]; incorporation of known attractors (referred as oracles) to guide the simulation [A4]; Parameters. Table 1 describes the parameters (and respective default values) of each one of the simulation algorithms. Despite the large number of parameters, particularly regarding Avatar simulations, our software provides effective default behavior that for some parameters is dynamically estimated from the properties of the input model. Saving Contexts. The context of a simulation is characterized by the applicable customizations to the input model and the parameterizations of the selected simulation method. Contexts can be easily created, removed, selected and modified using the left panel of the GUI [A6]. The user can also preserve these contexts 3

4 Notes Suggested value Sim Name Description Avatar should be selected for complex attractor analysis, while FF for a quasiexact reachability estimation. P1 algorithm selected type of simulation: {MC,FF,Avatar} P2 quiet whether detailed logs are to be printed true false hampers efficiency (suggested for debugging purposes only) outputdir directory to save the outputs (for console/script mode) /output P3 n runs number of iterations 10 5 P4 τ tauinit cycle expansion rate: τ τ 4τ 8τ 16τ 3 P5 δ maxsteps maximum number of visited states per simulation 10 5 MatrixInversion computes the exact prob. of the rewired paths (prone to memory bottlenecks) UniformExits randomly selects exits (efficient yet reachability can be biased) Matrix Inversion P6 strategy Avatar rewiring strategy P7 keeptransients whether transient cycles should be kept between iterations suggested true for MatrixInversion and false otherwise Avatar 200 guarantees that only the larger transients are preserved to foster memory and time efficiency minimum number states within a transient cycles to be kept for subsequent simulations P8 mintransientsize P9 mincsize minimum number of states within a cycle for rewiring 4 P10 maxrewiresize maximum number of states within a cycle to be rewired 500 approximate searches should be applied with a high value (10000), while MatrixInversion according to available memory (500 for 1GB RAM, for 8GB RAM) P11 maxpsize maximum number of states within a cycle to allow expansion no limit essential for the discovery of terminal cycles (should be only decreased to guarantee the scalability on models with highly complex transient cycles) 4 prevents a simulation to get locked within complex cycles (FF behavior is however able to model complex attractors from oscillating behavior and stop simulation) P12 δ maxdepth limit depth (number of expansions) within each simulation 1000 P13 α alpha minimum probability for a state to be expanded 10 5 states with probability below alpha are included in the neglected state-set P14 β beta max residual probability of prob. states to stop simulation 10 5 α β 1000 supports the convergence of the algorithm for large sets of probable states maximum number of states to expand per iteration (non-expanded states preserved for upcoming expansions) P15 maxexpand Firefront P16 n runs number of iterations 10 5 the reachability lower and upper bounds are computed based on successful iterations (attractor found below maximum depth) P17 δ maxdepth limit depth (number of visited states) within each simulation 1000 prevents a simulation to get locked within a terminal cycle or complex transient Monte Carlo Table 1: Description of the parameters of the simulation algorithms according to their name and location within the GUI (see Figure 2).

5 across sessions by saving and loading them. For this aim, the user just need to close the Avatar window and access the File Save As tab and then choose a file to keep the model and its context. When running GINsim, these contexts can be recovered by opening the saved.zginml file. Figure 4: Saving and loading parameterizations. Output Textual Display. The results of the simulation algorithms are displayed after their execution, describing the found attractors, their reachability as well as additional information dependent on the selected simulation: MonteCarlo specifies the average depth of the found attractors; displays the support of iterations used to compute the reachability of the found attractors as many iterations may be truncated due to the presence of transient cycles or the high depth of stable states. Firefront specifies the lower and upper bounds on the estimated probability of the system ending in a stable state (the true reachability is within these bounds). Avatar infers a set of pattern-states from a complex attractor to guarantee its compact presentation; specifies the average depth of the found attractors; provides statistics on the number and average length of found transient cycles. Visual Display. In addition to the previous textual results, we make available: plotting facilities: Firefront is able to plot the number of states in the F, N and A state-sets along the iterations, as well as the progression of the cumulative probability for each one of these state-sets; Avatar is able to plot the progression of the probability estimates per attractor along the iterations, as well as the depths at each attractor were discovered. Figure 6 illustrates these possibilities; the visual display of the state transition graphs associated with the complex attractors are made available when running Avatar from the GUI; Verbose Mode. The algorithms can be executed in verbose mode for debugging purposes or to further characterize their behavior. 5

6 Figure 5: Illustrative results from different simulations. Figure 6: Illustrative charts plotted by Avatar and Firefront. Figure 7: Display of logs. 6

7 Figure 8: Visual display of a complex attractor with pattern [1,0,1,1,0,1,1,,0,,0,0,0,0,0,0,0,1,1,1,1,1,0,1,0,1,0,0,, ]. 7

AuraTester User Guide

AuraTester User Guide AuraTester User Guide Automated testing tool for Oracle Forms based systems AuraPlayer Support Team Version 2 2/7/2011 This document is the sole property of AuraPlayer Ltd., it cannot be communicated to

More information

Cyrface Manual. Emanuel Gonçalves Saez- Rodriguez Group EMBL- EBI May 12, 2014

Cyrface Manual. Emanuel Gonçalves Saez- Rodriguez Group EMBL- EBI May 12, 2014 Cyrface Manual Cyrface is a bioinformatics Java library that provides a general interaction between Cytoscape and R. Cyrface offers a way to combine a friendly graphical interface within the Cytoscape

More information

JPA - INSTALLATION. Java version "1.7.0_60" Java TM SE Run Time Environment build b19

JPA - INSTALLATION. Java version 1.7.0_60 Java TM SE Run Time Environment build b19 http://www.tutorialspoint.com/jpa/jpa_installation.htm JPA - INSTALLATION Copyright tutorialspoint.com This chapter takes you through the process of setting up JPA on Windows and Linux based systems. JPA

More information

Elemental Kinection. User Manual. 2 May Version Texas Christian University, Computer Science Department

Elemental Kinection. User Manual. 2 May Version Texas Christian University, Computer Science Department Elemental Kinection User Manual Version 2.1 2 May 2016 Elemental Kinection User Manual i Revision History All revision history listed below. Version Change Summary Date 1.0 Initial Draft 24 February 2016

More information

Dealing with Categorical Data Types in a Designed Experiment

Dealing with Categorical Data Types in a Designed Experiment Dealing with Categorical Data Types in a Designed Experiment Part II: Sizing a Designed Experiment When Using a Binary Response Best Practice Authored by: Francisco Ortiz, PhD STAT T&E COE The goal of

More information

1. The Apache Derby database

1. The Apache Derby database 1. The Apache Derby database In these instructions the directory jdk_1.8.0_112 is named after the version 'number' of the distribution. Oracle tend to issue many new versions of the JDK/ JRE each year.

More information

Categorical Data in a Designed Experiment Part 2: Sizing with a Binary Response

Categorical Data in a Designed Experiment Part 2: Sizing with a Binary Response Categorical Data in a Designed Experiment Part 2: Sizing with a Binary Response Authored by: Francisco Ortiz, PhD Version 2: 19 July 2018 Revised 18 October 2018 The goal of the STAT COE is to assist in

More information

1. Go to the URL Click on JDK download option

1. Go to the URL   Click on JDK download option Download and installation of java 1. Go to the URL http://www.oracle.com/technetwork/java/javase/downloads/index.html Click on JDK download option 2. Select the java as per your system type (32 bit/ 64

More information

What is KNIME? workflows nodes standard data mining, data analysis data manipulation

What is KNIME? workflows nodes standard data mining, data analysis data manipulation KNIME TUTORIAL What is KNIME? KNIME = Konstanz Information Miner Developed at University of Konstanz in Germany Desktop version available free of charge (Open Source) Modular platform for building and

More information

Mathematical Analysis of Google PageRank

Mathematical Analysis of Google PageRank INRIA Sophia Antipolis, France Ranking Answers to User Query Ranking Answers to User Query How a search engine should sort the retrieved answers? Possible solutions: (a) use the frequency of the searched

More information

Network Visualization: Cytoscape

Network Visualization: Cytoscape Network Visualization: Cytoscape Ritchie Lab Center for Systems Genomics Pennsylvania State University September 13, 2014 What is Cytoscape? Cytoscape is an open source software platform for visualizing

More information

bold The requirements for this software are: Software must be able to build, debug, run, and col ect data from Discrete Event Simulation models

bold The requirements for this software are: Software must be able to build, debug, run, and col ect data from Discrete Event Simulation models The following items in bold are requirements specified by an experienced simulation user who was evaluating new products. The Simio narrative responses are the parts not in bold. The requirements for this

More information

02/03/15. Compile, execute, debugging THE ECLIPSE PLATFORM. Blanks'distribu.on' Ques+ons'with'no'answer' 10" 9" 8" No."of"students"vs."no.

02/03/15. Compile, execute, debugging THE ECLIPSE PLATFORM. Blanks'distribu.on' Ques+ons'with'no'answer' 10 9 8 No.ofstudentsvs.no. Compile, execute, debugging THE ECLIPSE PLATFORM 30" Ques+ons'with'no'answer' What"is"the"goal"of"compila5on?" 25" What"is"the"java"command"for" compiling"a"piece"of"code?" What"is"the"output"of"compila5on?"

More information

Heimdall Data Access Platform Installation and Setup Guide

Heimdall Data Access Platform Installation and Setup Guide Heimdall Data Access Platform Installation and Setup Guide Heimdall Data Access Platform Installation and Setup Guide Heimdall Data Access Platform Installation and Setup Guide 1. General Information 1

More information

Process Scheduling with Job Scheduler

Process Scheduling with Job Scheduler Process Scheduling with Job Scheduler On occasion it may be required to start an IBPM process at configurable times of the day or week. To automate this task, a scheduler must be employed. Scheduling is

More information

Competing Tahoe Senders Adam Stambler Brian Do Group 7 12/7/2010. Computer and Communication Networks : 14:332:423

Competing Tahoe Senders Adam Stambler Brian Do Group 7 12/7/2010. Computer and Communication Networks : 14:332:423 Competing Tahoe Senders Adam Stambler Brian Do Group 7 12/7/2010 Computer and Communication Networks : 14:332:423 1 Break Down of Contributions Adam Stambler Brian Do Algorithm Design 50 50 Coding 70 30

More information

CS 201 Software Development Methods Spring Tutorial #1. Eclipse

CS 201 Software Development Methods Spring Tutorial #1. Eclipse CS 201 Software Development Methods Spring 2005 Tutorial #1 Eclipse Written by Matthew Spear and Joseph Calandrino Edited by Christopher Milner and Benjamin Taitelbaum ECLIPSE 3.0 DEVELOPING A SIMPLE PROGRAM

More information

Streaming Large FTP Transfers using Java CAPS 5.1.x and 6

Streaming Large FTP Transfers using Java CAPS 5.1.x and 6 Streaming Large FTP Transfers using Java CAPS 5.1.x and 6 Michael.Czapski@sun.com, April 2008 TABLE OF CONTENTS 1 Introduction... 1 2 Batch FTP eway Read Timing Parameters... 2 3 Streaming from FTP Server

More information

This tutorial will guide you how to setup and run your own minecraft server on a Linux CentOS 6 in no time.

This tutorial will guide you how to setup and run your own minecraft server on a Linux CentOS 6 in no time. This tutorial will guide you how to setup and run your own minecraft server on a Linux CentOS 6 in no time. Running your own server lets you play together with your friends and family with your own set

More information

Applications of Program analysis in Model-Based Design

Applications of Program analysis in Model-Based Design Applications of Program analysis in Model-Based Design Prahlad Sampath (Prahlad.Sampath@mathworks.com) 2018 by The MathWorks, Inc., MATLAB, Simulink, Stateflow, are registered trademarks of The MathWorks,

More information

MONIKA HEINER.

MONIKA HEINER. LESSON 1 testing, intro 1 / 25 SOFTWARE TESTING - STATE OF THE ART, METHODS, AND LIMITATIONS MONIKA HEINER monika.heiner@b-tu.de http://www.informatik.tu-cottbus.de PRELIMINARIES testing, intro 2 / 25

More information

Supplemental Online Materials

Supplemental Online Materials 1 Supplemental Online Materials 1. Quick Guide to FORCulator 1.1 System Requirements FORCulator is a self-contained package written using Igor Pro by WaveMetrics (www.wavemetrics.com). Although Igor Pro

More information

Monitoring and Operating Cisco Prime Service Catalog Reports

Monitoring and Operating Cisco Prime Service Catalog Reports Monitoring and Operating Cisco Prime Service Catalog Reports This chapter contains the following topics: Configuring Cognos Memory Usage, page 1 Refreshing the Standard Reports Package, page 2 Refreshing

More information

Sentences Installation Guide. Sentences Version 4.0

Sentences Installation Guide. Sentences Version 4.0 Sentences Installation Guide Sentences Version 4.0 A publication of Lazysoft Ltd. Web: www.sentences.com Lazysoft Support: support@sentences.com Copyright 2000-2012 Lazysoft Ltd. All rights reserved. The

More information

Automated Deployment Services

Automated Deployment Services Building Out the Enterprise Using Automated Deployment Services Automated Deployment Services (ADS), a component of the Microsoft Windows Server 2003 operating system, includes a new set of imaging tools

More information

Oracle Weblogic products are available at

Oracle Weblogic products are available at 1 Chapter 1 Installing Oracle Weblogic Server In this chapter we will move our first steps with Oracle Weblogic Server by learning how to install it using the guided wizard installation or the compacted

More information

TreeSearch User Guide

TreeSearch User Guide TreeSearch User Guide Version 0.9 Derrick Stolee University of Nebraska-Lincoln s-dstolee1@math.unl.edu March 30, 2011 Abstract The TreeSearch library abstracts the structure of a search tree in order

More information

Requesting a license code

Requesting a license code Requesting a license code P. Stadelmann CIME-EPFL Station 12 CH-1015 Lausanne Switzerland March 13, 2012 Contents 1 Introduction 3 1.1 Important note.................................. 3 2 How to configure

More information

Installing and Configuring VMware vcenter Orchestrator

Installing and Configuring VMware vcenter Orchestrator Installing and Configuring VMware vcenter Orchestrator vcenter Orchestrator 4.2.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

LAMBDA The LSDF Execution Framework for Data Intensive Applications

LAMBDA The LSDF Execution Framework for Data Intensive Applications LAMBDA The LSDF Execution Framework for Data Intensive Applications Thomas Jejkal 1, V. Hartmann 1, R. Stotzka 1, J. Otte 2, A. García 3, J. van Wezel 3, A. Streit 3 1 Institute for Dataprocessing and

More information

InterPSS OpenCIM User s Guide Software Release 1.2.1

InterPSS OpenCIM User s Guide Software Release 1.2.1 InterPSS OpenCIM User s Guide Software Release 1.2.1 March, 2010 i Important Information USE OF INTERPSS SOFTWARE AND THIS DOCUMENT IS SUBJECT TO THE TERMS AND CONDITIONS OF A LICENSE AGREEMENT FOUND IN

More information

Microsoft Office User Manual 2007 Pack 2 Process

Microsoft Office User Manual 2007 Pack 2 Process Microsoft Office User Manual 2007 Pack 2 Process The Microsoft Office Configuration Analyzer Tool (OffCAT) 2.0 provides a quick Service Pack 3 provides the latest updates to the 2007 Microsoft Office Suite.

More information

HP Database and Middleware Automation

HP Database and Middleware Automation HP Database and Middleware Automation For Windows Software Version: 10.10 SQL Server Database Refresh User Guide Document Release Date: June 2013 Software Release Date: June 2013 Legal Notices Warranty

More information

fe-safe 2017 EXTERNAL MATERIAL DATABASE

fe-safe 2017 EXTERNAL MATERIAL DATABASE fe-safe 2017 EXTERNAL MATERIAL DATABASE Contents FE-SAFE EXTERNAL MATERIAL DATABASE... 1 CONTENTS... 3 1 INTRODUCTION TO THE FE-SAFE EXTERNAL MATERIAL DATABASE... 5 1.1 ABOUT THE DATABASE... 5 1.2 ABOUT

More information

ViTraM: VIsualization of TRAnscriptional Modules

ViTraM: VIsualization of TRAnscriptional Modules ViTraM: VIsualization of TRAnscriptional Modules Version 1.0 June 1st, 2009 Hong Sun, Karen Lemmens, Tim Van den Bulcke, Kristof Engelen, Bart De Moor and Kathleen Marchal KULeuven, Belgium 1 Contents

More information

Using Eclipse for Java. Using Eclipse for Java 1 / 1

Using Eclipse for Java. Using Eclipse for Java 1 / 1 Using Eclipse for Java Using Eclipse for Java 1 / 1 Using Eclipse IDE for Java Development Download the latest version of Eclipse (Eclipse for Java Developers or the Standard version) from the website:

More information

EDAConnect-Dashboard User s Guide Version 3.4.0

EDAConnect-Dashboard User s Guide Version 3.4.0 EDAConnect-Dashboard User s Guide Version 3.4.0 Oracle Part Number: E61758-02 Perception Software Company Confidential Copyright 2015 Perception Software All Rights Reserved This document contains information

More information

News in RSA-RTE 10.1 updated for sprint Mattias Mohlin, November 2017

News in RSA-RTE 10.1 updated for sprint Mattias Mohlin, November 2017 News in RSA-RTE 10.1 updated for sprint 2017.46 Mattias Mohlin, November 2017 Overview Now based on Eclipse Neon.3 (4.6.3) Many general improvements since Eclipse Mars Contains everything from RSARTE 10

More information

Life, Death, and the Critical Transition: Finding Liveness Bugs in System Code

Life, Death, and the Critical Transition: Finding Liveness Bugs in System Code Life, Death, and the Critical Transition: Finding Liveness Bugs in System Code Charles Killian, James W. Anderson, Ranjit Jhala, and Amin Vahdat Presented by Nick Sumner 25 March 2008 Background We already

More information

Automated Testing at the GUI level. Hands-on do it yourself session. 4th of September 2017 A-TEST, FSE, Paderborn

Automated Testing at the GUI level. Hands-on do it yourself session. 4th of September 2017 A-TEST, FSE, Paderborn Automated Testing at the GUI level Hands-on do it yourself session 4th of September 2017 A-TEST, FSE, Paderborn Ramón de Vries, Floren de Gier and Tanja E. J. Vos 1 Contents 1 Objective of this Session

More information

An Automated Testing Environment to support Operational Profiles of Software Intensive Systems

An Automated Testing Environment to support Operational Profiles of Software Intensive Systems An Automated Testing Environment to support Operational Profiles of Software Intensive Systems Abstract: Robert S. Oshana Raytheon Systems Company oshana@raytheon.com (972)344-783 Raytheon Systems Company

More information

WebSphere MQ V7 STEW. JMS Setup Lab. October 2008 V2.3

WebSphere MQ V7 STEW. JMS Setup Lab. October 2008 V2.3 Copyright IBM Corporation 2008 All rights reserved WebSphere MQ V7 STEW JMS Setup Lab October 2008 V2.3 LAB EXERCISE JMS Setup JMS Setup Page 2 of 47 JMS Setup Overview The purpose of this lab is to show

More information

Intellicus Cluster and Load Balancing- Linux. Version: 18.1

Intellicus Cluster and Load Balancing- Linux. Version: 18.1 Intellicus Cluster and Load Balancing- Linux Version: 18.1 1 Copyright 2018 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not

More information

Application Description

Application Description USER S GUIDE FOR SDB GUI (SDB-J) Modifications by Janice Sylvestre Based on NWS Document THE NWS SIMPLIFIED DAM-BREAK FLOOD FORECASTING MODEL 1 By Danny L. Fread, Janice M. Lewis, and Stephen M. Wiele

More information

Analysis of Networks with Interactive MOdelling. User s Manual

Analysis of Networks with Interactive MOdelling. User s Manual Analysis of Networks with Interactive MOdelling User s Manual Contents 1 Requirements and installation 1 1.1 Java............................. 1 1.2 Cytoscape........................... 2 1.3 UPPAAL...........................

More information

Distributed File Systems. Distributed Systems IT332

Distributed File Systems. Distributed Systems IT332 Distributed File Systems Distributed Systems IT332 2 Outline Introduction Network File System (NFS) 3 File System Basics A file is a named collection of logically related data A file system Provides a

More information

MuleSoft.U Development Fundamentals (Mule 4) Setup Instructions

MuleSoft.U Development Fundamentals (Mule 4) Setup Instructions MuleSoft.U Development Fundamentals (Mule 4) Setup Instructions Note: If you need help with the setup instructions, use the MuleSoft Training forum at http://training.mulesoft.com/forums. Make sure your

More information

SQLBase. Starter Guide

SQLBase. Starter Guide SQLBase Starter Guide 20-2905-1004 Trademarks Centura, Centura net.db, Centura Ranger, the Centura logo, Centura Web Developer, Gupta, the Gupta logo, Gupta Powered, the Gupta Powered logo, Fast Facts,

More information

Five9 TLS Disablement

Five9 TLS Disablement Cloud Contact Center Software Five9 TLS Disablement Administrator s Guide April 2018 This document describes the disablement of TLS 1.0 by Five9 and the actions that you must perform to ensure continued

More information

News in RSA-RTE 10.1 updated for sprint Mattias Mohlin, January 2018

News in RSA-RTE 10.1 updated for sprint Mattias Mohlin, January 2018 News in RSA-RTE 10.1 updated for sprint 2018.03 Mattias Mohlin, January 2018 Overview Now based on Eclipse Neon.3 (4.6.3) Many general improvements since Eclipse Mars Contains everything from RSARTE 10

More information

Table of Contents. Introduction... 3 System Requirements... 3 Tutorial Videos... 3 Installing Racknet... 4 Support... 10

Table of Contents. Introduction... 3 System Requirements... 3 Tutorial Videos... 3 Installing Racknet... 4 Support... 10 Installation Guide Table of Contents Introduction... 3 System Requirements... 3 Tutorial Videos... 3 Installing Racknet... 4 Support... 10 www.geistglobal.com 2 877.449.4150 Introduction This installation

More information

Regular Forum of Lreis. Speechmaker: Gao Ang

Regular Forum of Lreis. Speechmaker: Gao Ang Regular Forum of Lreis Speechmaker: Gao Ang Content: A. Overview of Eclipse Project B. Rich Client Platform C. The progress of ustudio Project D. The development of Grid technology and Grid GIS E. Future

More information

Client Installation and User's Guide

Client Installation and User's Guide IBM Tivoli Storage Manager FastBack for Workstations Version 7.1.1 Client Installation and User's Guide SC27-2809-04 IBM Tivoli Storage Manager FastBack for Workstations Version 7.1.1 Client Installation

More information

LAD-WEKA Tutorial Version 1.0

LAD-WEKA Tutorial Version 1.0 LAD-WEKA Tutorial Version 1.0 March 25, 2014 Tibérius O. Bonates tb@ufc.br Federal University of Ceará, Brazil Vaux S. D. Gomes vauxgomes@gmail.com Federal University of the Semi-Arid, Brazil 1 Requirements

More information

Before you start with this tutorial, you need to know basic Java programming.

Before you start with this tutorial, you need to know basic Java programming. JDB Tutorial 1 About the Tutorial The Java Debugger, commonly known as jdb, is a useful tool to detect bugs in Java programs. This is a brief tutorial that provides a basic overview of how to use this

More information

HPE 3PAR File Persona on HPE 3PAR StoreServ Storage with Veritas Enterprise Vault

HPE 3PAR File Persona on HPE 3PAR StoreServ Storage with Veritas Enterprise Vault HPE 3PAR File Persona on HPE 3PAR StoreServ Storage with Veritas Enterprise Vault Solution overview and best practices for data preservation with Veritas Enterprise Vault Technical white paper Technical

More information

Contents. Introducing Collibra Connect 1. About Collibra Connect 2. Collibra Connect deployment 2. Installing Collibra Connect 5

Contents. Introducing Collibra Connect 1. About Collibra Connect 2. Collibra Connect deployment 2. Installing Collibra Connect 5 1.4.1 Contents Introducing Collibra Connect 1 About Collibra Connect 2 Collibra Connect deployment 2 Installing Collibra Connect 5 Integrations with Collibra Connect: from development to production 7 Installing

More information

ArcGIS Enterprise: Advanced Topics in Administration. Thomas Edghill & Moginraj Mohandas

ArcGIS Enterprise: Advanced Topics in Administration. Thomas Edghill & Moginraj Mohandas ArcGIS Enterprise: Advanced Topics in Administration Thomas Edghill & Moginraj Mohandas Outline Overview: Base ArcGIS Enterprise Deployment - Key Components - Administrator Endpoints Advanced Workflows:

More information

Modern Methods of Data Analysis - WS 07/08

Modern Methods of Data Analysis - WS 07/08 Modern Methods of Data Analysis Lecture XV (04.02.08) Contents: Function Minimization (see E. Lohrmann & V. Blobel) Optimization Problem Set of n independent variables Sometimes in addition some constraints

More information

Product Data Sheet: Ignition 8 Industrial Application Platform. A Whole New View

Product Data Sheet: Ignition 8 Industrial Application Platform. A Whole New View Product Data Sheet: Ignition 8 Industrial Application Platform A Whole New View With the powerful tools, web technologies, and next-generation visualization system we re building in Ignition 8, you ll

More information

2009 STORM Computers d.o.o.

2009 STORM Computers d.o.o. Service Provider Messaging Install Base Source: The Radicati Group Enterprise Messaging & Collaboration Install Base Messaging Server Calendar Server Instant Messaging Address Book Service Web-based

More information

ViTraM: VIsualization of TRAnscriptional Modules

ViTraM: VIsualization of TRAnscriptional Modules ViTraM: VIsualization of TRAnscriptional Modules Version 2.0 October 1st, 2009 KULeuven, Belgium 1 Contents 1 INTRODUCTION AND INSTALLATION... 4 1.1 Introduction...4 1.2 Software structure...5 1.3 Requirements...5

More information

Step-by-step guide for the libradtran virtual machine. A) Installation

Step-by-step guide for the libradtran virtual machine. A) Installation Step-by-step guide for the libradtran virtual machine July 2014 A) Installation You need approximately 7GB of free disk space on your computer to install the virtual machine. Step 1) Extract the archive

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. RichFaces

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. RichFaces 1 About the Tutorial RichFaces is a component library developed by JBoss, which provides in-built AJAX support to JSF application. It reduces all the redundant codes that the developer has to write to

More information

International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research)

International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research) International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research) International Journal of Emerging Technologies in Computational

More information

Order Preserving Triclustering Algorithm. (Version1.0)

Order Preserving Triclustering Algorithm. (Version1.0) Order Preserving Triclustering Algorithm User Manual (Version1.0) Alain B. Tchagang alain.tchagang@nrc-cnrc.gc.ca Ziying Liu ziying.liu@nrc-cnrc.gc.ca Sieu Phan sieu.phan@nrc-cnrc.gc.ca Fazel Famili fazel.famili@nrc-cnrc.gc.ca

More information

IREASONING INC. UltraSwing User Guide

IREASONING INC. UltraSwing User Guide ULTRASWING LIBRARY IREASONING INC. UltraSwing User Guide ULTRASWING LIBRARY User Guide Copyright 2003 ireasoning Inc., All Rights Reserved. The information contained herein is the property of ireasoning

More information

About the Tutorial. Audience. Prerequisites. Disclaimer & Copyright. Jenkins

About the Tutorial. Audience. Prerequisites. Disclaimer & Copyright. Jenkins About the Tutorial Jenkins is a powerful application that allows continuous integration and continuous delivery of projects, regardless of the platform you are working on. It is a free source that can

More information

Module Road Map. 7. Version Control with Subversion Introduction Terminology

Module Road Map. 7. Version Control with Subversion Introduction Terminology Module Road Map 1. Overview 2. Installing and Running 3. Building and Running Java Classes 4. Refactoring 5. Debugging 6. Testing with JUnit 7. Version Control with Subversion Introduction Terminology

More information

Performance Analysis of Distribution Protocols Used by Thin Clients

Performance Analysis of Distribution Protocols Used by Thin Clients Performance Analysis of Distribution Protocols Used by Thin Clients Jiri Kouril The Brno University of Technology Faculty of Electrical Engineering and Communication Email: kouril@feec.vutbr.cz Abstract

More information

News in RSA-RTE 10.1 updated for sprint Mattias Mohlin, July 2017

News in RSA-RTE 10.1 updated for sprint Mattias Mohlin, July 2017 News in RSA-RTE 10.1 updated for sprint 2017.28 Mattias Mohlin, July 2017 Overview Now based on Eclipse Neon.3 (4.6.3) Many general improvements since Eclipse Mars Contains everything from RSARTE 10 and

More information

Oracle Application Testing Suite

Oracle Application Testing Suite Oracle Application Testing Suite Getting Started Guide Release 12.5.0.3 E15487-16 April 2016 Oracle Application Testing Suite Getting Started Guide, Release 12.5.0.3 E15487-16 Copyright 1997, 2016, Oracle

More information

MODFLOW Advanced PEST: SVD, SVD-Assist, Parallel PEST

MODFLOW Advanced PEST: SVD, SVD-Assist, Parallel PEST GMS 7.0 TUTORIALS MODFLOW Advanced PEST: SVD, SVD-Assist, Parallel PEST 1 Introduction The MODFLOW-Automated Parameter Estimation tutorial describes the basic functionality of PEST provided in GMS. It

More information

Sendmail crackaddr - Static Analysis strikes back

Sendmail crackaddr - Static Analysis strikes back Sendmail crackaddr - Static Analysis strikes back Bogdan Mihaila Technical University of Munich, Germany December 6, 2014 Name Lastname < name@mail.org > ()()()()()()()()()... ()()() 1 / 25 Abstract Interpretation

More information

Map Intelligence Installation Guide

Map Intelligence Installation Guide Map Intelligence Installation Guide ii CONTENTS GETTING STARTED...4 Before Beginning the Installation... 4 Database Connectivity... 6 Map and Server Settings for Google Maps... 6 INSTALLING MAP INTELLIGENCE

More information

Quick Start Guide EAVDAM. The EfficienSea AIS VHF Datalink Manager. Version 1.6, Page 1 of 8

Quick Start Guide EAVDAM. The EfficienSea AIS VHF Datalink Manager. Version 1.6, Page 1 of 8 EfficienSea Efficient, Safe and Sustainable Traffic at Sea Document No. D_WP5_3_13 Document Access: Public EAVDAM The EfficienSea AIS VHF Datalink Manager Quick Start Guide Version 1.6, 2011-12-20 Page

More information

Performance and Load Testing R12 With Oracle Applications Test Suite

Performance and Load Testing R12 With Oracle Applications Test Suite Performance and Load Testing R12 With Oracle Applications Test Suite Deep Ram Technical Director Oracle Corporation Daniel Gonzalez Practice Manager Oracle Corporation Safe Harbor

More information

University of Washington Department of Computer Science and Engineering / Department of Statistics

University of Washington Department of Computer Science and Engineering / Department of Statistics University of Washington Department of Computer Science and Engineering / Department of Statistics CSE 547 / Stat 548 Machine Learning (Statistics) for Big Data Homework 2 Winter 2014 Issued: Thursday,

More information

NetBeans IDE Java Quick Start Tutorial

NetBeans IDE Java Quick Start Tutorial NetBeans IDE Java Quick Start Tutorial Welcome to NetBeans IDE! This tutorial provides a very simple and quick introduction to the NetBeans IDE workflow by walking you through the creation of a simple

More information

Parallelizing Windows Operating System Services Job Flows

Parallelizing Windows Operating System Services Job Flows ABSTRACT SESUG Paper PSA-126-2017 Parallelizing Windows Operating System Services Job Flows David Kratz, D-Wise Technologies Inc. SAS Job flows created by Windows operating system services have a problem:

More information

Chapter 11. SnapProtect Technology

Chapter 11. SnapProtect Technology Chapter 11 SnapProtect Technology Hardware based snapshot technology provides the ability to use optimized hardware and disk appliances to snap data on disk arrays providing quick recovery by reverting

More information

Transport Modelling in OmniTRANS. Exercise book

Transport Modelling in OmniTRANS. Exercise book Transport Modelling in OmniTRANS Exercise book Course and Contact Information Course: Exercise book: Transport Modelling in OmniTRANS Course Description: This exercise book has been developed to offer

More information

Chapter 1 GETTING STARTED. SYS-ED/ Computer Education Techniques, Inc.

Chapter 1 GETTING STARTED. SYS-ED/ Computer Education Techniques, Inc. Chapter 1 GETTING STARTED SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: WSAD. J2EE business topologies. Workbench. Project. Workbench components. Java development tools. Java projects

More information

SCALABLE TRAJECTORY DESIGN WITH COTS SOFTWARE. x8534, x8505,

SCALABLE TRAJECTORY DESIGN WITH COTS SOFTWARE. x8534, x8505, SCALABLE TRAJECTORY DESIGN WITH COTS SOFTWARE Kenneth Kawahara (1) and Jonathan Lowe (2) (1) Analytical Graphics, Inc., 6404 Ivy Lane, Suite 810, Greenbelt, MD 20770, (240) 764 1500 x8534, kkawahara@agi.com

More information

National Fire Incident Reporting System (NFIRS 5.0) Configuration Tool User's Guide

National Fire Incident Reporting System (NFIRS 5.0) Configuration Tool User's Guide National Fire Incident Reporting System (NFIRS 5.0) Configuration Tool User's Guide NFIRS 5.0 Software Version 5.3 Prepared for: FEMA Round Hill, VA 20142 Prepared by: Verizon Federal Incorporated P.O.

More information

v. 8.0 GMS 8.0 Tutorial MODFLOW Advanced PEST SVD, SVD-Assist, Parallel PEST Prerequisite Tutorials None Time minutes

v. 8.0 GMS 8.0 Tutorial MODFLOW Advanced PEST SVD, SVD-Assist, Parallel PEST Prerequisite Tutorials None Time minutes v. 8.0 GMS 8.0 Tutorial MODFLOW Advanced PEST SVD, SVD-Assist, Parallel PEST Objectives Learn how to parameterize a MODFLOW model and run PEST to obtain optimal parameter values. Experiment with truncated

More information

MuleSoft.U Mule 4 for Mule 3 Users Setup Instructions

MuleSoft.U Mule 4 for Mule 3 Users Setup Instructions MuleSoft.U Mule 4 for Mule 3 Users Setup Instructions Note: If you need help with the setup instructions, use the MuleSoft Training forum at http://training.mulesoft.com/forums. Make sure your computer

More information

PRISM An overview. automatic verification of systems with stochastic behaviour e.g. due to unreliability, uncertainty, randomisation,

PRISM An overview. automatic verification of systems with stochastic behaviour e.g. due to unreliability, uncertainty, randomisation, PRISM An overview PRISM is a probabilistic model checker automatic verification of systems with stochastic behaviour e.g. due to unreliability, uncertainty, randomisation, Construction/analysis of probabilistic

More information

Non-blocking Array-based Algorithms for Stacks and Queues. Niloufar Shafiei

Non-blocking Array-based Algorithms for Stacks and Queues. Niloufar Shafiei Non-blocking Array-based Algorithms for Stacks and Queues Niloufar Shafiei Outline Introduction Concurrent stacks and queues Contributions New algorithms New algorithms using bounded counter values Correctness

More information

Qlik Sense Enterprise architecture and scalability

Qlik Sense Enterprise architecture and scalability White Paper Qlik Sense Enterprise architecture and scalability June, 2017 qlik.com Platform Qlik Sense is an analytics platform powered by an associative, in-memory analytics engine. Based on users selections,

More information

Polycom RealPresence Platform Director

Polycom RealPresence Platform Director RELEASE NOTES 3.0.0 April 2016 3725-66007-002B Polycom RealPresence Platform Director Contents What s New in Release 3.0... 3 Polycom RealPresence Clariti Support... 3 Support for Appliance Edition...

More information

Intel Unite Standalone Setup Guide

Intel Unite Standalone Setup Guide Intel Unite Standalone Setup Guide Intel Unite Standalone Setup Guide V1.6 1 of 32 Legal Disclaimers & Copyrights All information provided here is subject to change without notice. Contact your Intel representative

More information

User guide: magnum (v1.0)

User guide: magnum (v1.0) User guide: magnum (v1.0) Daniel Marbach October 5, 2015 Table of contents 1. Synopsis. 2 2. Introduction. 3 3. Step-by-step tutorial.. 4 3.1. Connectivity enrichment anlaysis... 4 3.2. Loading settings

More information

Running Java Programs

Running Java Programs Running Java Programs Written by: Keith Fenske, http://www.psc-consulting.ca/fenske/ First version: Thursday, 10 January 2008 Document revised: Saturday, 13 February 2010 Copyright 2008, 2010 by Keith

More information

Java Manuals For Windows Xp Latest Version 7.2

Java Manuals For Windows Xp Latest Version 7.2 Java Manuals For Windows Xp Latest Version 7.2 This guide is for the latest version of the SAP GUI for JAVA which is SAP. Java GUI 7.3 rev 7, replacing the 7.2 rev 5 version previously used by CHEP. Please

More information

10703 Deep Reinforcement Learning and Control

10703 Deep Reinforcement Learning and Control 10703 Deep Reinforcement Learning and Control Russ Salakhutdinov Machine Learning Department rsalakhu@cs.cmu.edu Policy Gradient I Used Materials Disclaimer: Much of the material and slides for this lecture

More information

Bayesian Modelling with JAGS and R

Bayesian Modelling with JAGS and R Bayesian Modelling with JAGS and R Martyn Plummer International Agency for Research on Cancer Rencontres R, 3 July 2012 CRAN Task View Bayesian Inference The CRAN Task View Bayesian Inference is maintained

More information

Core to Murphi XML version

Core to Murphi XML version Project in Software 236504 SSDL Core to Murphi XML version Roni Bar-Am Royi Ronen Supervisor: Shahar Dag 1 Table of Contents: 1. General Project Description... 3 2. User Guide... 4 Sources:... 4 Other

More information

Revise Quick Start Guide

Revise Quick Start Guide page 1 / 12 Revise Quick Start Guide The quick start guide is provided to help you get the Revise energy monitoring system up and running as quickly as possible. Installing components To install components

More information

GMS 9.0 Tutorial MODFLOW Stochastic Modeling, PEST Null Space Monte Carlo I Use PEST to create multiple calibrated MODFLOW simulations

GMS 9.0 Tutorial MODFLOW Stochastic Modeling, PEST Null Space Monte Carlo I Use PEST to create multiple calibrated MODFLOW simulations v. 9.0 GMS 9.0 Tutorial MODFLOW Stochastic Modeling, PEST Null Space Monte Carlo I Use PEST to create multiple calibrated MODFLOW simulations Objectives The PEST Null Space Monte Carlo modeling option

More information