Installation of Perl and BioPerl with modules for MySQL databases (Windows XP)

Size: px
Start display at page:

Download "Installation of Perl and BioPerl with modules for MySQL databases (Windows XP)"

Transcription

1 Installation of Perl and BioPerl with modules for MySQL databases (Windows XP) 1. Installation of ActiveState Perl 1 2. Installation of Perl modules and BioPerl 2 3. Executing Perl scripts 5 4. Installation of the programming editor Proton 7 5. Installation of the programming editor Komodo Edit 8 1. Installation of ActiveState Perl Perl is a script programming language often used for bioinformatics solutions. There are many modules available at the Perl script archive CPAN. A special BioPerl project provides extended functions for bioinformatics. The well-established Windows version provided by ActiveState is ActivePerl The new Perl branch 5.10 was launched recently and the newest ActiveState Perl version published is now This version is one of the first of the 5.10 developmental branch, it may have some yet undiscovered problems. Some BioPerl libraries originally did not work with the 5.10 version, however, most problems are now solved and the BioPerl community has now published a new guide for the Perl 5.10 series and we suggest therefore using the newest Perl branch. Binaries for Perl 5.10 are available for installation. Download procedure: - Visit the download site: - Choose at the right panel "Language Downloads" "ActivePerl". - On the next page select at the "Choose from" tab the "Download" button for ("ActivePerl"). - If you want to receive informations from ActiveState report your details on the next page, else click on the "Continue" button. - On the next page select the required Perl package for download. For a standard Windows distribution we suggest to use the "Windows(x86)" "MSI" package of "ActivePerl " (status of December, 19 th, 2007): ActivePerl MSWin32-x msi KB "ActivePerl " (status July, 17 th, 2008): ActivePerl MSWin32-x msi (status July, 17 th, 2008). Perl Installation Jul

2 Warning: It is a good idea to remove any previous Perl installation, before installation of a new ActiveState Perl version. Delete also all previous installed packages (e.g. directory /Perl/site), since deinstallation of the main program will not touch preinstalled packages at the /site subdirectory. Be aware that packages of the 5.10 series are not binary compatible with packages of the 5.8 series and vice versa. If you update to the 5.10 series from 5.8 please update also all previous installed packages. The installation should be done using administrator rights. ActivePerl MSWin32-x msi During installation we suggest to change the preset folder from C:\Perl to C:\Program Files\Perl and to register the Perl program folder in the system path. This allows Windows to start Perl scripts ending with ".pl" by double clicking on them. Check the correct entry in the Windows PATH environment variable: Add at Control Panel System Advanced lower tab Environment variables lower window system variable Path "Edit" Add at end of line a semicolon ; and C:\Program Files\Perl\bin and additionally at end of line ; and C:\Program Files\Perl\site\bin and click OK and restart the PC. Hint: The installation program may have added these directories to the path already, but check for any double entries of older versions and remove them. The local Perl Help files are best viewed using your favourite web browser by loading the local index file: file:///c:/program Files/Perl/html/index.html 2. Installation of Perl modules and BioPerl To use MySQL and BioPerl additional modules have to be installed. These Perl modules (packages) can be downloaded from the module archive CPAN. For Windows Perl, the Active State module repository should be used. Some of the modules (like DBD-mysql or the BioPerl packages) are not provided by ActiveState and may be installed from alternative repositories: A help file for a installed specific module can be reached from the Perl Help files main window, scrolling down the left panel to the module section: (C:\Program Files\Perl\html\index.html). Some modules have a documentation called from the cmd window by entering Perl Installation Jul

3 "perldoc module" e.g. module "perldoc cwd" to read the documentation of the package "cwd" allowing to read the current directory. You can enlarge the cmd window vertically using your mouse, clicking at the upper or lower window border and pulling it up or down. The module documentation is listed page for page. Pressing "Enter" will show the next line, pressing the "space" tab the next page. For communication wit a MySQL database four additional modules are needed: DB_File DBI Data-Table DBD-mysql the Berkeley database management module (DBD) the common database interface the database table handling routines the MySQL-driver for trhe DBD database system The ActiveState Repository does not hold the newest version of BioPerl. We suggest to use the new distribution provided by the BioPerl community. Some BioPerl programs may not work with the 5.10 Perl branch (e.g. Bio::SeqIO::entrezgene). This may be updated soon and we suggest to use already the 5.10 branch. Prerequisite: for ActiveState at least Perl version >= A new BioPerl Wiki for installation on Windows guides through the installation process: Module installation procedure using ppm: Run the module installation tool Perl package manager ppm: "Start" "Run" "cmd" "ppm" # Starts the Perl package manager ppm uses a convenient graphical interface in the newest Perl versions. Configuration of additional repositories: Select at the main menu item "Edit" "Preferences" tab "Repositories" Copy "Name:" and "Location:" (internet link) into the respective entry fields. Do not change "Suggested:" "Install PPM-Repositories". Click on "Add" button to activate them. For the Perl 5.8 branch: Name BioPerl-Regular Releases Kobes Location Perl Installation Jul

4 Bribes For the Perl 5.10 branch: Name BioPerl-Regular Releases Kobes Bribes Trouchelle Location Select at the menu item View All Packages. Enter at the "magnifying glass symbol" entry field the module names, select them, and start the installation by selecting menu item Action Install. Current suggested modules are: MySQL database support: DB_File v DBI v (preinstalled at Perl 5.10) DBD-mysql v (for 5.10 Kobes repository) Data-Table v 1.54 BioPerl (BioPerl, Kobes and Bribes repositories) bioperl bioperl-db bioperl-network bioperl-run v 1.5.2_100 BioPerl package v 1.5.2_100 BioPerl database packages v 1.5.2_100 BioPerl pathway packages v 1.5.2_100 BioPerl application packages Only for Perl 5.8 series (not recommended): bioperl v BioPerl bioperl-gui v 0.7 BioPerl graphical user interface Graphics support GD v 2.39 (preinstalled in Perl ) Support for graphical user interfaces (GUI) and Windows system calls Win32-API v 0.55 (not preinstalled in Perl 5.8) Win32-GUI v 1.06 Tk v (not preinstalled in Perl 5.10) Excel Spreadsheet support Spreadsheet-ParseExcel v0.32 Perl Excel file reader Perl Installation Jul

5 Spreadsheet-ParseExcel-Simple v1.04 Perl Excel file reader Spreadsheet-ParseExcel_XHTML v1.04 Perl Excel XHTML file reader Spreadsheet-WriteExcel v2.21 Perl Excel file writer (for 5.10 Trouchelle) SOAP protocol support for internet connection to SOAP services SOAP-Lite v 0.69 Web service package You can always visit, verify and update module installations using ppm. Checking the installed version of BioPerl A version number can be called by a "one-liner", a Perl command which is typed or copied into one line of the Windows cmd terminal: The Linux version is found at the BioPerl FAQ internet page: perl -MBio::Root::Version -e 'print $Bio::Root::Version::VERSION,"\n"' For the Windows cmd terminal the single quotes enclosing the red labelled executable command must be changed to double quotes ' ", and the double quotes around the line break symbol "\n" must be escaped by back slashes: \"\n\". The modified one-liner for Windows reads: perl -MBio::Root::Version -e "print $Bio::Root::Version::VERSION,\"\n\"" Click on the "Start" tab of the Windows main window, select the "Run" option and type "cmd" in the prompted entry field. In the cmd window right-click onto the "C:\"- symbol in the left upper corner of the window and select the menu item "Edit" "Paste" and insert the one-liner modified for Windows and press "Enter". The Perl interpreter should return the installed BioPerl version: " " (= version ). The subversions are separated by several zeros (00). 3. Executing Perl scripts Run a script by double clicking on it: A convenient way is to start a Perl script by double clicking on its file using Windows Explorer. It should be shown with a gecko symbol and has always the ending ".pl". You can also make a desktop link to a script, you may use often. This will allow the script to ask for programmed parameters, run the script job and close again the script window. If you do not want to evaluate script changes, this is best. However, you will not be prompted with error messages. Perl Installation Jul

6 The provided script version2.pl will popup the versions of installed Perl and BioPerl programs. Press "Enter" to close the program. Copy it e.g. in a directory "D:\perl_scripts" and execute it. The result should read: This is Perl v This is BioPerl v Run a script by calling it at the command line of cmd.exe: To start a Perl script with a command line window, select at Windows Start button "Start" "Run" "cmd". Move to the directory of the Perl script, by changing drive and path: Directories with spaces should be stated in quotes like "Program Files". You can use following commands to navigate in your directory tree: D: this will select drive D cd \perl_scripts this will move to the directory cd.. will go back one directory level dir will list files in a directory Start the script by calling it from \perl_scripts: perl script.pl e.g. perl version2.pl Using the history function (cursor up or down keys) you can recall earlier typed commands. Now you can follow script comments and error messages, while running the script. The error message will show the script line most likely containing the error. You can always stop a script by typing "Ctrl + C". Using a c.bat batch file to start a command window Make a small batch file called e.g. "c.bat" in the current directory to start a command window in the current directory holding following text: cmd By double-clicking on c.bat a command window will open in the current directory. Now you can execute the script by typing its name: "version2.pl". If your Perl interpreter is not registered correctly in the Windows path variable, you may start the script typing "perl version2.pl". Perl Installation Jul

7 4. Installation of the programming editor Proton (German) Special editor programs may be helpful for writing Perl code by formatting code elements in different colours. A small and convenient freeware editor, which can be used to manage huge files or edit scripts is Proton Version 3.2 from U. Meybohm: Just unzip the downloaded installation file and copy it in a directory like "C:\Program Files\Proton". You can make a desktop link to the file "proton.exe" in the installation directory. (Right click on the file using Windows Explorer and select "Send to" "Desktop". Start Proton by clicking on the symbol. In the menu item "syntax scheme" a scheme can be activated, if not already detected automatically, to show Perl scripts, SQL queries or many other programming languages with very useful different colouring of text, parameters, functions and comments. Also line numbers are indicated for easy tracking of programming errors. Select "Perl" for Perl scripts. For MySQL scripts best "SQL(Oracle)" is used as a scheme. Shortcut from Proton to start a Perl script just edited: A Perl script can be started from Proton by defining a shortcut like "Ctrl + F5". Select menu "Shortcut" and "Define shortcut" and assign a free shortcut (Ctrl + F5). Name the shortcut like "Execute Perl script". At the command field enter: command.com /k perl "%A%" This will start a command window with the current script and within the current path. During writing a script, it can be tested by using this shortcut. For closing the command window type "exit" into it. Hint: Do not fotget to save your changes before executing the script. A more convenient method is to open in parallel an independent command window of cmd.exe and use it to run the script. You can always restart the script using the history function of the command line (The "Cursor Up" or "Cursor Down" keys will recall previously typed commands). Best use the c.bat script batch file as Perl Installation Jul

8 described above to restart the command window. ou can easily jump between the command window and Proton using "Alt+Tab". Opening big FASTA files Very big files (above 10 MB) will crash the Windows editor notepad.exe regularely. However, Proton will manage them (dependent on RAM size) quite good. Using a "Send to" Link for Proton It is a good idea to copy a link for Proton in your personal "Send to" folder. Eventually you have to activate the view of hidden directories using the Windows Explorer to find this folder (Explorer menu item "Options" "Folder settings" "View" "Hidden files and folders / Show all files and folders" and "Show content of system folders". The folder should be found at: "C:\Documents and Settings\your_login_name\Send to" Now you can send a file to Proton by using the right mouse button on a selected file and choosing "Send to" "Proton". 5. Installation of the programming editor Komodo Edit ActiveState provides a free version of the editor of their development environment Komodo, the "Komodo Editor v 4.4.1", which can be used for editing Perl scripts. It has many additional functions not present in Proton useful for Perl programming, like matching of leading and lagging parentheses and spell checking. Download address: Click on the blue "Get Komodo Edit" button and on the next page on the "Free" Download button. You are prompted for optional personal details. Click on "Continue" button and select the Windows "MSI" package (27.8 MB). Komodo-Edit msi KB Log in as an administrator and install the program using the standard settings suggested. You can start the editor by clicking on the "Komodo Edit 4" symbol generated on the desktop. You can also add a shortcut to your "Send To"-Folder as described above for Proton. Loading and starting a script from Komodo editor: You can use the menu item "File" "Open" to load a script or you point at a file rightclicking your mouse and sending it to Komodo, in case you have added a link to Perl Installation Jul

9 your "Send To" folder. Best Select at main menu item "View" "View Line numbers" (Hit the key combination "Ctrl+Shidt+4" for toggling). For executing a script in a new command line window for testing it during programming a shortcut can be generated and combined with the command window: - Select main menu item "Tools" "Run Command" ("Ctrl+R") to open the "Run Command" window. - At the left-pointing arrow-button left of the "Run" entry filed select "%(perl) : Configured Perl interpreter" - Click into the entry field and add a "space" behind "%(perl)" - Now select as before "%F : File path" - The entry filed should now read: "%(perl) %F". - Click on the "More" button to view advanced options - At "Advanced Options" "Run In:" select "New console". - Click on the "Run" button. - For closing the command window hit any key. Version Last edited Jul Perl Installation Jul

Technical Bulletin DS2

Technical Bulletin DS2 Product: DS-Matrix Software TB 221 Date: July 25 th, 2012 Subject: How to Upgrade DS-Matrix Software This document describes the procedure for upgrading the DS-Matrix software. If you are upgrading from

More information

FmPro Migrator. FileMaker to FileMaker 7 Quickstart Guide. .com Solutions Inc. Overview. Step 1.

FmPro Migrator. FileMaker to FileMaker 7 Quickstart Guide. .com Solutions Inc.   Overview. Step 1. FmPro Migrator for Windows.com Solutions Inc. Overview This quickstart guide provides step by step instructions for migrating individual FileMaker databases into a FileMaker 7 multi-table database structure.

More information

The QuickCalc BASIC User Interface

The QuickCalc BASIC User Interface The QuickCalc BASIC User Interface Running programs in the Windows Graphic User Interface (GUI) mode. The GUI mode is far superior to running in the CONSOLE mode. The most-used functions are on buttons,

More information

SERVICE MANU SER VICE MANU

SERVICE MANU SER VICE MANU SERVICE MANUAL H ow t o U s e Table of Contents 1. 2. 3. 4. 5. 6. Launching the Service Manual Setting up the Service Manual icon Shutting down the Service Manual Basic controls Basic controls of Acrobat

More information

Quick KVM 1.1. User s Guide. ClearCube Technology, Inc.

Quick KVM 1.1. User s Guide. ClearCube Technology, Inc. Quick KVM 1.1 User s Guide ClearCube Technology, Inc. Copyright 2005, ClearCube Technology, Inc. All rights reserved. Under copyright laws, this publication may not be reproduced or transmitted in any

More information

Document Management Upgrade Guide

Document Management Upgrade Guide Document Management Upgrade Guide March 2014, Version 8.9 Minimum Requirements Ensure that your Document Management environment conforms to the following requirements. Document Management Image Server

More information

R version has been released on (Linux source code versions)

R version has been released on (Linux source code versions) Installation of R and Bioconductor R is a free software environment for statistical computing and graphics. It is based on the statistical computer language S. It is famous for its wide set of statistical

More information

Extensible scriptlet-driven tool to manipulate, or do work based on, files and file metadata (fields)

Extensible scriptlet-driven tool to manipulate, or do work based on, files and file metadata (fields) 1. MCUtils This package contains a suite of scripts for acquiring and manipulating MC metadata, and for performing various actions. The available scripts are listed below. The scripts are written in Perl

More information

CTECS Connect 2.2 Release Notes December 10, 2009

CTECS Connect 2.2 Release Notes December 10, 2009 (Formerly VTECS) CTECS Connect 2.2 Release Notes December 10, 2009 This document contains information that supplements the CTECS Connect 2.2 documentation. Please visit the CTECS Connect Support area of

More information

ODBC. Getting Started OpenLink Server Software Using ODBC

ODBC. Getting Started OpenLink Server Software Using ODBC Getting Started OpenLink Server Software Using The documentation in this publication is provided pursuant to a Sales and Licensing Contract for the Prophet 21 System entered into by and between Prophet

More information

SIOS (Shop Interface to Other Software)

SIOS (Shop Interface to Other Software) SIOS (Shop Interface to Other Software) User Manual PhD. Guillem Plasencia Gallofré Lead Molecular Design, S.L. I. Introduction SIOS (Shop Interface to Other Software), as its name says, is an interface

More information

User Manual. Introduction. About this release. For existing MacroScope users

User Manual. Introduction. About this release. For existing MacroScope users Software version: 0.1.1.5 Document version: 0.1.1.3 User Manual Introduction MacroscopeJ is a desktop application used for examining crystallization experiment images and data. It is intended as an upgrade/replacement

More information

WA2592 Applied Data Science and Big Data Analytics. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc.

WA2592 Applied Data Science and Big Data Analytics. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. WA2592 Applied Data Science and Big Data Analytics Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Class Setup...3 Part 2 - Minimum Software Requirements

More information

UNIVERSITY OF MICHIGAN INFORMATICS Charles Severance. You will need Apple QuickTime installed to view this video.

UNIVERSITY OF MICHIGAN INFORMATICS Charles Severance. You will need Apple QuickTime installed to view this video. UNIVERSITY OF MICHIGAN INFORMATICS Charles Severance Editing and Running a Python Program With NotePad++ on Windows Note: This handout is under development please send suggestions to Chuck Severance (csev@umich.edu)

More information

Grand Valley State University Disability Support Services Guide to Assistive Technology

Grand Valley State University Disability Support Services Guide to Assistive Technology Grand Valley State University Disability Support Services Guide to Assistive Technology WebbIE 3 Quick Reference Manual Prepared by Jeff Sykes, Assistive Technology Coordinator, Disability Support Services

More information

Microsoft Excel 2007

Microsoft Excel 2007 Learning computers is Show ezy Microsoft Excel 2007 301 Excel screen, toolbars, views, sheets, and uses for Excel 2005-8 Steve Slisar 2005-8 COPYRIGHT: The copyright for this publication is owned by Steve

More information

REGISTRATION RANDOMIZATION USER S MANUAL v 2.1

REGISTRATION RANDOMIZATION USER S MANUAL v 2.1 REGISTRATION RANDOMIZATION USER S MANUAL v 2.1 Cancer Center Systems Management Office Table of Contents Minimum System Requirements... 3 Installation Instructions for the Remote Registration Application...

More information

Installing and configuring an Android device emulator. EntwicklerCamp 2012

Installing and configuring an Android device emulator. EntwicklerCamp 2012 Installing and configuring an Android device emulator EntwicklerCamp 2012 Page 1 of 29 Table of Contents Lab objectives...3 Time estimate...3 Prerequisites...3 Getting started...3 Setting up the device

More information

You might think of Windows XP as a set of cool accessories, such as

You might think of Windows XP as a set of cool accessories, such as Controlling Applications under Windows You might think of Windows XP as a set of cool accessories, such as games, a calculator, and an address book, but Windows is first and foremost an operating system.

More information

Service Manager Release Notes

Service Manager Release Notes Service Manager 2014 Release Notes Important Notice All releases following Service Manager 2012 will work with SQL Databases only. You must ensure that you have upgraded your databases correctly before

More information

HOW TO BUILD YOUR FIRST ROBOT

HOW TO BUILD YOUR FIRST ROBOT Kofax Kapow TM HOW TO BUILD YOUR FIRST ROBOT INSTRUCTION GUIDE Table of Contents How to Make the Most of This Tutorial Series... 1 Part 1: Installing and Licensing Kofax Kapow... 2 Install the Software...

More information

SAP GUI 7.30 for Windows Computer

SAP GUI 7.30 for Windows Computer SAP GUI 7.30 for Windows Computer Student and Faculty Installation Instructions Table of Contents Caution:... 2 System Requirements:... 2 System Memory (RAM) requirements:... 2 Disk Space requirements:...

More information

HR-Lite Database & Web Service Setup Guide

HR-Lite Database & Web Service Setup Guide HR-Lite Database & Web Service Setup Guide Version: 1.00 HR21 Limited All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical,

More information

How to build Simbody 2.2 from source on Windows

How to build Simbody 2.2 from source on Windows How to build Simbody 2.2 from source on Windows Michael Sherman, 30 Mar 2011 (minor revision 27 July 2011) Simbody 2.2 was re-engineered to be much easier to build from source than previous releases. One

More information

GENERAL NAVIGATION REFERENCE GUIDE FOR BANNER 7.X

GENERAL NAVIGATION REFERENCE GUIDE FOR BANNER 7.X GENERAL NAVIGATION REFERENCE GUIDE FOR BANNER 7.X Table of Contents I. Banner Basics A. Launching Banner...1 B. Main or General Menu...2 C. Setting Personal Preferences...3 D. My Links Customization of

More information

The Lackner Group. Addendum to the Administrator s Guide for FileMaker Server 5.5 (February 14, 2003)

The Lackner Group. Addendum to the Administrator s Guide for FileMaker Server 5.5 (February 14, 2003) The Lackner Group Addendum to the Administrator s Guide for FileMaker Server 5.5 (February 14, 2003) This document will step you through the most common configuration setup for FileMaker Server 5.5 when

More information

Installation of Actiheart Data Analysis Suite:

Installation of Actiheart Data Analysis Suite: Installation of Actiheart Data Analysis Suite: Currently software is only compatible with XP platform and version 6 of Java. Installation requires: - Windows XP platform - MySQL installation - Folders:

More information

Installation Guide for AGI STK 10- Network

Installation Guide for AGI STK 10- Network Installation Guide for AGI STK 10- Network Updated: 4/5/2017 STK Licenses run on a yearly basis set by AGI. Plan accordingly on gaining licensing in the timeframe that you will be using the software. 2017-2018

More information

Console Guide. Version 4.4

Console Guide. Version 4.4 Console Guide Version 4.4 Table of Contents Preface 4 Who Should Use This Guide 4 How This Guide is Organized 4 Document Feedback 4 Document Conventions Used in This Guide 5 Connecting to the Database

More information

ODBC DOCUMENTATION UPDATES

ODBC DOCUMENTATION UPDATES DOCUMENTATION UPDATES Date Description Where Changed 5/16/03 New upgrading instructions have been added to upgrade OpenLink to version 4.1. Getting Started chapter, in the Upgrading OpenLink section (page

More information

Getting Started with Python and the PyCharm IDE

Getting Started with Python and the PyCharm IDE New York University School of Continuing and Professional Studies Division of Programs in Information Technology Getting Started with Python and the PyCharm IDE Please note that if you already know how

More information

Excel window. This will open the Tools menu. Select. from this list, Figure 3. This will launch a window that

Excel window. This will open the Tools menu. Select. from this list, Figure 3. This will launch a window that Getting Started with the Superpave Calculator worksheet. The worksheet containing the Superpave macros must be copied onto the computer. The user can place the worksheet in any desired directory or folder.

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

BLUEPRINT READER 2010 INSTALLATION & USER GUIDE 09OCT09

BLUEPRINT READER 2010 INSTALLATION & USER GUIDE 09OCT09 BLUEPRINT READER 2010 INSTALLATION & USER GUIDE 09OCT09 The information in this document is subject to change without notice and should not be construed as a commitment by Blueprint Software Systems Inc.

More information

IndustrialPro Routers (SN/RAM Series) Wireless Modems

IndustrialPro Routers (SN/RAM Series) Wireless Modems Wireless Modems Including SN/RAM-67xx LTE and RAM-9000 families Migration and Advanced Firmware Update Procedures Version 3.20/4.20 February 2015 CHANGE HISTORY Version Date Description 3.20 February 17,

More information

Abacus 32 Windows Menu System

Abacus 32 Windows Menu System Note: If you do not want to use the Windows Menu system please ignore this section. System Requirements IBM or PC compatible. Pentium 233 or higher is recommended but will operate on a 486 DX 66 or higher

More information

EXCEL BASICS: MICROSOFT OFFICE 2007

EXCEL BASICS: MICROSOFT OFFICE 2007 EXCEL BASICS: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

A Linux Virtual Machine for CS-2011 Projects

A Linux Virtual Machine for CS-2011 Projects CS-2011, Machine Organization and Assembly Language, D-term 2013 A Linux Virtual Machine for CS-2011 Projects Hugh C. Lauer Adjunct Professor Worcester Polytechnic Institute As an alternative to working

More information

SEWCAT USER MANUAL V APRIL 14, 2017 S & S COMPUTING Oak Ridge, TN 37830

SEWCAT USER MANUAL V APRIL 14, 2017 S & S COMPUTING Oak Ridge, TN 37830 SEWCAT USER MANUAL V4.0.6 APRIL 14, 2017 S & S COMPUTING Oak Ridge, TN 37830 Contents 1. Introduction... 3 1.1 Getting Started... 3 1.2 Frequently Asked Questions (FAQ)... 5 1.3 Contact Us... 5 1.4 Purchase

More information

To complete this activity, you will need the following files:

To complete this activity, you will need the following files: CHAPTER 1 Windows XP More Skills 12 Move Data Between Windows You can open several application windows at the same time; they do not need to be files created by the same program. Having more than one window

More information

ORACLE SQL DEVELOPER

ORACLE SQL DEVELOPER ORACLE SQL DEVELOPER INTRODUCTION TO ORACLE SQL DEVELOPER Oracle SQL Developer is an Integrated development environment (IDE) for working with SQL in Oracle databases. Oracle Corporation provides this

More information

Sherlock Tutorial Getting Started

Sherlock Tutorial Getting Started Sherlock Tutorial Getting Started Background Sherlock is a Java-based application that allows users to analyze the reliability of circuit card assemblies based on their design files. Sherlock has been

More information

I N S T A L L M E R L I N ON A U S E R S C O M P U T E R

I N S T A L L M E R L I N ON A U S E R S C O M P U T E R System Administrator s How to... I N S T A L L M E R L I N ON A U S E R S C O M P U T E R Merlin can be installed on PCs and on servers for use on terminals. It can be accessed through a dedicated Merlin

More information

Mend for Eclipse quick start guide local analysis

Mend for Eclipse quick start guide local analysis The Semmle Mend for Eclipse plugin allows users to view Semmle results in Eclipse. This document describes how to install and use the plugin for local analysis. You can install the plugin using a Semmle

More information

SuperNova. Magnifier & Speech. Version 15.0

SuperNova. Magnifier & Speech. Version 15.0 SuperNova Magnifier & Speech Version 15.0 Dolphin Computer Access Publication Date: 19 August 2015 Copyright 1998-2015 Dolphin Computer Access Ltd. Technology House Blackpole Estate West Worcester WR3

More information

Introduction to REXX Programming Language

Introduction to REXX Programming Language Introduction to REXX Programming Language 1 Introduction to REXX Clarence Burg September 9, 2011 REXX is a programming language that has much less syntax and extraneous content than other available languages.

More information

SAS Studio: A New Way to Program in SAS

SAS Studio: A New Way to Program in SAS SAS Studio: A New Way to Program in SAS Lora D Delwiche, Winters, CA Susan J Slaughter, Avocet Solutions, Davis, CA ABSTRACT SAS Studio is an important new interface for SAS, designed for both traditional

More information

EXERCISE 1 Download and Install the Fusion Program and Data

EXERCISE 1 Download and Install the Fusion Program and Data Last Updated: April, 2016 Version: Fusion 3.50 EXERCISE 1 Download and Install the Fusion Program and Data Objectives In this exercise you will begin creating a file structure to download the Fusion program

More information

WA2393 Data Science for Solution Architects. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1

WA2393 Data Science for Solution Architects. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 WA2393 Data Science for Solution Architects Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Class Setup...3 Part 2 - Minimum Software Requirements

More information

EUSurvey OSS Installation Guide

EUSurvey OSS Installation Guide Prerequisites... 2 Tools... 2 Java 7 SDK... 2 MySQL 5.6 DB and Client (Workbench)... 4 Tomcat 7... 8 Spring Tool Suite... 11 Knowledge... 12 Control System Services... 12 Prepare the Database... 14 Create

More information

GO! Finder V1.4. User Manual

GO! Finder V1.4. User Manual GO! Finder V1.4 User Manual 1 Tables of Contents GO! Finder Introduction-------------------------------------------------------------------------------------1 System Requirements ---------------------------------------------------------------------------------------2

More information

Caja File Manager. Desktop User Guide

Caja File Manager. Desktop User Guide Caja File Manager Desktop User Guide Desktop User Guide» Working with Files This chapter describes how to use the Caja file manager. Introduction Spatial Mode Browser Mode Opening Files Searching For Files

More information

Appendix A: Courseware setup

Appendix A: Courseware setup Training Course System Requirements This class requires the following minimal machine configuration: Single-Core CPU, 2Ghz+ 2GB RAM 5 GB Free hard disk space Microsoft Windows XP or Vista Firefox 3.x or

More information

Concept Toolkit 12 Calculate Plan Educate

Concept Toolkit 12 Calculate Plan Educate Concept Toolkit 12 Calculate Plan Educate About Concept Toolkit Concept Toolkit Version 12. Copyright 1997-2017 Ativa Interactive Corporation System Requirements Windows 2000 / XP / Vista / NT / 7 / 10

More information

DOCUMENT HISTORY REV. NO. CHANGES DATE. 000 New Document 30 Mar Document Revision:

DOCUMENT HISTORY REV. NO. CHANGES DATE. 000 New Document 30 Mar Document Revision: DOCUMENT HISTORY DOCU-PROOF ENTERPRISE INSTALLATION GUIDE REV. NO. CHANGES DATE 000 New Document 30 Mar. 2010 001 Document Revision: 23 Jun. 2010 Added database support for MS SQL Server and ORACLE. 002

More information

RegressItMac installation and test instructions 1

RegressItMac installation and test instructions 1 RegressItMac installation and test instructions 1 1. Create a new folder in which to store your RegressIt files. It is recommended that you create a new folder called RegressIt in the Documents folder,

More information

PC and Windows Installation 32 and 64 bit Operating Systems

PC and Windows Installation 32 and 64 bit Operating Systems SUDAAN Installation Guide PC and Windows Installation 32 and 64 bit Operating Systems Release 11.0.1 Copyright 2013 by RTI International P.O. Box 12194 Research Triangle Park, NC 27709 All rights reserved.

More information

Installation Reference

Installation Reference Version 5.0 March 11, 2018 Installation Reference Copyright 2005-2018 ManTech International Corporation Protected by the Document Detective End User License Agreement Installation Requirements Document

More information

Embarcadero Change Manager 5.1 Installation Guide

Embarcadero Change Manager 5.1 Installation Guide Embarcadero Change Manager 5.1 Installation Guide Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All

More information

Print Station. Point-and-Click Printing WHITE PAPER

Print Station. Point-and-Click Printing WHITE PAPER Print Station Point-and-Click Printing WHITE PAPER Contents Overview 3 Printing with Print Station 4 Easy-to-use Browser Interface 4 Familiar Folder Navigation 5 Search Functionality 6 Informative Display

More information

GFEC Version 3.0 Installation Guide MATTHEW WARD SALVESON

GFEC Version 3.0 Installation Guide MATTHEW WARD SALVESON GFEC Version 3.0 Installation Guide MATTHEW WARD SALVESON August 2010 Contents 1 Unpacking the Zip File 3 2 External Software Installation 4 2.1 GMSH............................... 4 2.2 Gnuplot..............................

More information

Installing Koha on Windows XP. Amandeep Kapila

Installing Koha on Windows XP. Amandeep Kapila Installing Koha on Windows XP For MLIS Online by Amandeep Kapila 0 Introduction KOHA is an Integrated Library System with all the features that are required in day to day library management operations.

More information

Customizing Windows XP

Customizing Windows XP Customizing Windows XP Mouse Moves Click Always lets you select something. It may be an icon, a button, or a menu command. Double Click Click the mouse (or trackpad) 2 times on an icon to open that document

More information

Bombardier Business Aircraft Customer Services. Technical Publications. SmartPubs Viewer 3.0 User Guide. Updated January 2013 [2013]

Bombardier Business Aircraft Customer Services. Technical Publications. SmartPubs Viewer 3.0 User Guide. Updated January 2013 [2013] Bombardier Business Aircraft Customer Services Technical Publications SmartPubs Viewer 3.0 User Guide Updated January 2013 [2013] Table of Contents Application Views... 5 Collection View... 5 Manual View...

More information

Lab: Supplying Inputs to Programs

Lab: Supplying Inputs to Programs Steven Zeil May 25, 2013 Contents 1 Running the Program 2 2 Supplying Standard Input 4 3 Command Line Parameters 4 1 In this lab, we will look at some of the different ways that basic I/O information can

More information

Open a command prompt window and change to the directory containing the file just downloaded. Run this command:

Open a command prompt window and change to the directory containing the file just downloaded. Run this command: Deploying Apple QuickTime The Third Party Software Deployment feature of SyAM Management Utilities can be used to perform a silent deployment of Apple QuickTime to Windows machines. Requirements: This

More information

Beginner s Guide to Microsoft Excel 2002

Beginner s Guide to Microsoft Excel 2002 Beginner s Guide to Microsoft Excel 2002 Microsoft Excel lets you create spreadsheets, which allow you to make budgets, track inventories, calculate profits, and design charts and graphs. 1. Open Start

More information

Software Installation: AASPI Windows Installation

Software Installation: AASPI Windows Installation AASPI Windows Installation This guide shows a step-by-step installation, running, and uninstallation of AASPI software on Windows machine. Compatibility Currently we support 64-bit Windows XP, 7, 8, 8.1,

More information

Code Autocomplete Manual

Code Autocomplete Manual Code Autocomplete Manual Release 2.0.0 Jacques Lucke July 02, 2016 Contents 1 Setup 3 1.1 Installation................................................ 3 1.2 Check the Installation..........................................

More information

Support reference for common LogicalLABs questions and issues.

Support reference for common LogicalLABs questions and issues. Support reference for common LogicalLABs questions and issues. Ensure all systems meet minimum technical specifications: Microsoft Windows 7 or higher. Microsoft Internet Explorer 11.0 or higher. Monitor:

More information

Instructions self-extracting zip files

Instructions self-extracting zip files Instructions self-extracting zip files Some readers have experienced problems with the self-extracting zip files. These instructions are intended to assist in learning the process. We all use different

More information

Lab 1. Introduction to R & SAS. R is free, open-source software. Get it here:

Lab 1. Introduction to R & SAS. R is free, open-source software. Get it here: Lab 1. Introduction to R & SAS R is free, open-source software. Get it here: http://tinyurl.com/yfet8mj for your own computer. 1.1. Using R like a calculator Open R and type these commands into the R Console

More information

Mouseless Internet Browsing for Open V/Vmax Devices

Mouseless Internet Browsing for Open V/Vmax Devices Mouseless Internet Browsing for Open V/Vmax Devices Mouseless Browsing (MLB) is a technique that enables you to browse the Internet without using a mouse. This innovative functionality adds small boxes

More information

Quick Start. How to start monitoring use of your computer right away.

Quick Start. How to start monitoring use of your computer right away. Quick Start Using the Scheduler Capture Types Other Recommended Settings Viewing Captured Information Viewing, Replaying and Deleting captures Silently Emailing Capture Logs Hiding the prog. from praying

More information

Batch Watermark Creator Software

Batch Watermark Creator Software PhotoX Batch Watermark Creator Software PhotoX helps you to add watermark stamp to your photos in a batch. The watermark can be generated from text or from an image. PhotoX also provides other tools likes

More information

Required Setup for 32-bit Applications

Required Setup for 32-bit Applications 1 of 23 8/25/2015 09:30 Getting Started with MASM and Visual Studio 2012 Updated 4/6/2015. This tutorial shows you how to set up Visual Studio 2012 (including Visual Studio 2012 Express for Windows Desktop)

More information

The Perl Debugger. Avoiding Bugs with Warnings and Strict. Daniel Allen. Abstract

The Perl Debugger. Avoiding Bugs with Warnings and Strict. Daniel Allen. Abstract 1 of 8 6/18/2006 7:36 PM The Perl Debugger Daniel Allen Abstract Sticking in extra print statements is one way to debug your Perl code, but a full-featured debugger can give you more information. Debugging

More information

BackupVault Desktop & Laptop Edition. USER MANUAL For Microsoft Windows

BackupVault Desktop & Laptop Edition. USER MANUAL For Microsoft Windows BackupVault Desktop & Laptop Edition USER MANUAL For Microsoft Windows Copyright Notice & Proprietary Information Blueraq Networks Ltd, 2017. All rights reserved. Trademarks - Microsoft, Windows, Microsoft

More information

Introduction to Personal Computers Using Windows 10 and Microsoft Office 2016

Introduction to Personal Computers Using Windows 10 and Microsoft Office 2016 Watsonia Publishing 47 Greenaway Street Bulleen VIC 3105 Australia www.watsoniapublishing.com info@watsoniapublishing.com Introduction to Personal Computers Using Windows 10 and Microsoft Office 2016 Quick

More information

Sabre Customer Virtual Private Network Launcher (SCVPNLauncher)

Sabre Customer Virtual Private Network Launcher (SCVPNLauncher) Sabre Customer Virtual Private Network Launcher (SCVPNLauncher) User s Guide Sabre Travel Network This document provides detailed information for the install/uninstall, operation, configuration and troubleshooting

More information

InQuira Analytics Installation Guide

InQuira Analytics Installation Guide InQuira Analytics Installation Guide Installing and Configuring InQuira Analytics Applications InQuira Version 8.1.2 Document Number IA80-IG-00 August 27, 2008 InQuira 851 Traeger Ave. Suite 125 San Bruno,

More information

AquaScan Win version 1.9

AquaScan Win version 1.9 AquaScan Win version 1.9 Page 1 of 13 11.08.03 AquaScan Win version 1.9 AquaScan Win should be used together with a control unit using program CS20 version 58, CS30 version 07, or later. The LOG parameter

More information

HL7Spy 1.1 Getting Started

HL7Spy 1.1 Getting Started Inner Harbour Software HL7Spy 1.1 Getting Started Nov 14, 2009 DRAFT Main Areas of HL7Spy's User Interface The figure below shows the main areas of the HL7Spy user interface. The two main regions of the

More information

Examples: Directory pathname: File pathname: /home/username/ics124/assignments/ /home/username/ops224/assignments/assn1.txt

Examples: Directory pathname: File pathname: /home/username/ics124/assignments/ /home/username/ops224/assignments/assn1.txt ULI101 Week 03 Week Overview Absolute and relative pathnames File name expansion Shell basics Command execution in detail Recalling and editing previous commands Quoting Pathnames A pathname is a list

More information

Central Management Software. Cam Viewer 3 Lite. User Manual

Central Management Software. Cam Viewer 3 Lite. User Manual Central Management Software Cam Viewer 3 Lite User Manual Version 1.0.0 Table of Contents 1. System Requirement...4 2. Software Installation...5 3. Configuration Wizard...9 3.1 Channel...10 3.1.1 Adding

More information

1 Ctrl + X Cut the selected item. 2 Ctrl + C (or Ctrl + Insert) Copy the selected item. 3 Ctrl + V (or Shift + Insert) Paste the selected item

1 Ctrl + X Cut the selected item. 2 Ctrl + C (or Ctrl + Insert) Copy the selected item. 3 Ctrl + V (or Shift + Insert) Paste the selected item Tips and Tricks Recorder Actions Library XPath Syntax Hotkeys Windows Hotkeys General Keyboard Shortcuts Windows Explorer Shortcuts Command Prompt Shortcuts Dialog Box Keyboard Shortcuts Excel Hotkeys

More information

Installing and Upgrading TSM 6.8

Installing and Upgrading TSM 6.8 Installing and Upgrading TSM 6.8 This guide will take you through the installation of TSM 6.8 or upgrading TSM 6.7 or below to TSM 6.8. If you are installing TSM on Windows 2000, please read the document

More information

AntMover 0.9 A Text Structure Analyzer

AntMover 0.9 A Text Structure Analyzer AntMover 0.9 A Text Structure Analyzer Overview and User Guide 1.1 Introduction AntMover 1.0 is a prototype version of a general learning environment that can be applied to the analysis of text structure

More information

Instruction: Download and Install R and RStudio

Instruction: Download and Install R and RStudio 1 Instruction: Download and Install R and RStudio We will use a free statistical package R, and a free version of RStudio. Please refer to the following two steps to download both R and RStudio on your

More information

PowerWorship 4.0 Introduction

PowerWorship 4.0 Introduction PowerWorship 4.0 Introduction PowerWorship enables you to create and maintain a library of worship songs and can be used to create song lyrics presentation slides for Microsoft PowerPoint and Apache OpenOffice.

More information

Inmagic DB/TextWorks 9.00 Installation and Upgrade Notes

Inmagic DB/TextWorks 9.00 Installation and Upgrade Notes Inmagic DB/TextWorks 9.00 Installation and Upgrade Notes Thank you for purchasing Inmagic DB/TextWorks. This document is for new DB/TextWorks installations and sites that are upgrading to version 9.00.

More information

Sun VirtualBox Installation Tutorial

Sun VirtualBox Installation Tutorial Sun VirtualBox Installation Tutorial Installing Linux Mint 5 LTS Guest OS By Dennis Berry Welcome to the world of virtualization and Linux. This tutorial is intended to help users who are new to the world

More information

DTSAgent User Documentation

DTSAgent User Documentation DTSAgent User Documentation Overview... 1 Installation... 2 Application Installation... 2 Database Installation... 4 DTSAgent Configuration... 5 Initial Configuration... 5 Re-configuring DTSAgent... 6

More information

Inmagic DB/TextWorks Installation and Upgrade Notes

Inmagic DB/TextWorks Installation and Upgrade Notes Inmagic DB/TextWorks 10.00 Installation and Upgrade Notes This document is intended for new DB/TextWorks installations and sites that are upgrading to version 10.00. DB/TextWorks is a content management

More information

Microsoft Word 2011 Tutorial

Microsoft Word 2011 Tutorial Microsoft Word 2011 Tutorial GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

Owners Manual. HF Online Data Acquisition System

Owners Manual. HF Online Data Acquisition System Owners Manual HF Online Data Acquisition System 3170 Metro Parkway Fort Myers, FL 33916-7597 Phone: 239-337-2116 Fax: 239-332-7643 Email: info@hfscientific.com Catalog No. 22838 (8/02) Rev 2.3 Table of

More information

ARIS Architect QUICK START GUIDE. Version Service Release 7

ARIS Architect QUICK START GUIDE. Version Service Release 7 ARIS Architect QUICK START GUIDE Version 9.8 - Service Release 7 December 2016 This document applies to ARIS Version 9.8 and to all subsequent releases. Specifications contained herein are subject to change

More information

CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup

CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup Purpose: The purpose of this lab is to setup software that you will be using throughout the term for learning about Python

More information

Reading: Managing Files in Windows XP

Reading: Managing Files in Windows XP Student Resource 13.4a Reading: Managing Files in Windows XP Directions: All recent versions of Windows (XP, Vista, Windows 7) have fairly similar ways of managing files, but their graphic user interfaces

More information

Using PI OLEDB Enterprise Page 1

Using PI OLEDB Enterprise Page 1 Using PI OLEDB Enterprise 2010 Page 1 1.1 Using PI OLEDB Enterprise 2010 1.1.1 Objectives At the end of this learning lab, you should be able to: Explain what PI OLEDB Enterprise 2010 is. Explain how it

More information