Molecular Modeling Lab #1: Minimizing a Polylysine Peptide with a Molecular Mechanics Force Field

Size: px
Start display at page:

Download "Molecular Modeling Lab #1: Minimizing a Polylysine Peptide with a Molecular Mechanics Force Field"

Transcription

1 Molecular Modeling Lab #1: Minimizing a Polylysine Peptide with a Molecular Mechanics Force Field For this weeks report, include the following: 1) For each of these GROMACS file types, does the file contain coordinate information, topology information, both, or neither?.edr files.gro files.mdp files.top files.tpr files.trr files 2) How different is the structure of the polylysine peptide before and after the steepest descents minimization? Support your answer with a picture and a quantitative comparison between the structures. 3) Discuss how the steepest descents, conjugate gradient, and combined SD/CG minimizations differ for the polylysine peptide in a helical conformation. In your answer, be sure to include: a) the number of steps required to achieve convergence in the two methods, and b) a graph of the energy versus step number for each minimization. 4) Based on your minimizations, do you think that the polylysine peptide is more stable in the helical conformation or the second conformation (polylysine_conf2.pdb) you considered? 5) Explain why you choose to use either a steepest descents, conjugant gradient, or combined SD/CG minimization to compare the two conformations of polylysine. 6) You minimized the polylysine with two different starting conformations, and both were able to converge to a minimum energy structure. If both minimizations were considering the same peptide, why didn't they end up with the same minimum energy and structure?

2 Description of lab activities: In this lab, you will learn how to set up and perform energy minimizations of a peptide structure using the GROMACS software. We'll start by minimizing the structure of a poly-alanine helix. The overall process to set up and run a minimization is given in the flowchart below (GROMACS programs for each step in bold): Start with structure in.pdb file pdb2gmx Get a coordinate (.gro) and a topology (.top) file.mdp file with parameters for minimization protocol grompp Get a.tpr file with coordinates, topology, and parameters for minimization mdrun After completion get the following files:.log with run information.gro with final structure.edr with energies for run

3 In order to start this process, you'll have to first log in to the workstation that you'll be using this semester. You can do this using the PUTTY program. This program can be found under Start>All Programs>PUTTY>PUTTY. Upon opening this program, you'll need to enter the following information into the window: Host Name (or IP address): chemmac Choose the button for SSH Click on Open The first time you log in from a particular computer, you'll probably get a security alert. You can say Yes to this alert to log in. You will then get a new window. Enter your login and your password when prompted. Once you have logged in to your account, you will get a prompt. You are currently in your "home directory." Directories are just a different name for folders in fact, if you log on to the Macintosh machine directly you would see each directory as a folder. You can create different folders to organize your account. Let's start by making a directory for this lab by using the mkdir (make directory) command: > mkdir lab1 If you want to see that this directory has been created, you can use the ls (list) command to list the directories contained in your current directory: > ls This should list the newly created directory. You can then move into the directory using the cd (change directory) command: > cd lab1 Now, you can make a subdirectory for the first calculation you'll perform, which is a steepest descents minimization of the poly alanine structure. You can make this directory and then move into it with the following commands: > mkdir polylys_sd > cd polylys_sd

4 In order to run a minimization in GROMACS, you'll need to start with your structure. Typically, this structure is in a.pdb file. I've saved a copy of a.pdb file with the polylysine structure to my directory on the workstation. You can copy it to your account with the command: > cp /Users/instructor/modelingclass/lab1/polylys.pdb. Here the period at the end of the line copies the file to your current directory using its same name. Alternatively, you could have renamed the file with the command: cp /Users/instructor/modelingclass/lab1/polylys.pdb newname.pdb Below are the structures of a single lysine residue (on the left) and a polylysine with three residues (on the right). As you can see, lysine has an amine group in its sidechain that can be either protonated or deprotonated. The peptide you will use for simulations has 12 Lys residues in it. Now, you have the starting structure for your minimization as a.pdb file. However, you'll need to convert it into files that can be used by GROMACS. To do this, you can use a program called pdb2gmx. This will take the.pdb file and create two new files, a coordinate file (.gro) and a topology file (.top). The coordinate file will have x, y, and z coordinates for each atom of the structure in it much like a.pdb file. The topology file will contain molecular mechanics parameter information for each atom in the structure. Both of these files are necessary to run a minimization (or any other type of simulation in GROMACS).

5 You can use pdb2gmx with the following command: > pdb2gmx f polylys.pdb o polylys.gro p polylys.top inter So, what does each part of this command do? -f: This is the name of the.pdb file that you want to convert using the program -o: This is the name of the.gro (coordinate) file that will be created from the.pdb file by the program -p: This is the name of the.top (topology) file that will be created from the.pdb file by the program -inter: This command is not necessary in all cases, but I usually use it. It runs pdb2gmx in interactive mode. What this means is that the program will ask you what ionization state (protonated or not protonated) you want for all ionizable residues (Glu, Asp, Lys, and His) and whether you want charges at the N and C-termini. It will also give you options for forming disulfide bonds between Cys sidechains. If this option is not chosen, the program will default to places charges on all ionizable residues and will used charged termini; these defaults are generally acceptable in water soluble systems, but may not be ideal when dealing with membrane bound systems. You'll need to make a few choices as pdb2gmx runs. First, you'll choose a force field. You can see that GROMACS has several options, but the Gromos96 43a1 force field (option 0) is usually a good force field for proteins in aqueous solution. You'll also have to choose charges for the Lys sidechains. Let's start with a minimization with the sidechains in their protonated state (option 1). This is the charge they would typically have at a physiological ph (ph 7). You'll be asked this for each of the 12 Lys sidechains in the structure. You should also choose the options for ionized termini (- NH 4 + and COO ), which are also the typical charges at physiological conditions. (The charged termini are option 0 when asked.) After pdb2gmx completes, you can take a look at the.gro and.top files that result from it. These are just text files. You can open them up in the terminal window using a program called vi. vi is basically a very primitive word processor; there is a list of vi commands on the Unix cheat sheet I gave you. However, for just quickly looking at a file, vi can be very useful. (It is also pretty much universal on all Unix machines.)

6 Start by looking at the.gro file, using the command: > vi polylys.gro You can then use the arrow keys to scroll around the file. Using the capital G key will take you to the end of the file, and hitting a number followed by G will take you that line number. As you move through the file, you can see that the first line has a title; this is essentially blank here since there wasn't a title in my polylysine.pdb file. The second line has the number of atoms included in the file. Then, there are several lines with coordinates in them (note that the units are in nm and not Å, as in.pdb files). The last line then has information on the "box size" of the system. This isn't meaningful unless you've created a box for solvent, which we haven't done for this system. But, we'll see examples of that in the next lab. When you are finished looking at the file, you can exit vi by typing a colon (:) followed by q then RETURN. The : will take you to a "command line" at the bottom of the screen, and the q then means to quit. You can then view the topology file with the command: > vi polylys.top We won't dwell on too much on the contents of the.top file this week. But if you scroll through it you'll see that it includes information on the parameters for each atom in the structure. Other lines at the beginning say which force field is being used, and a section at the end lists what molecules are present (in this case, only a single protein molecule). Now that you have the coordinate and the topology file for the peptide you are ready to set up a minimization. To do this, you'll need one additional file that includes the parameters for the minimization, which is an.mdp file. These parameters include such things as the type of minimization to perform (e.g. steepest descents or conjugate gradient) and the maximum number of minimization steps to perform in the run. There is a sample minimization.mdp file for a steepest descents minimization saved in my directory. You can copy it to your directory using the command: > cp /Users/instructor/modelingclass/lab1/min.mdp. Let's take a look at that file to see what some of the lines mean. You can open up the file using vi with the command: > vi min.mdp

7 There are many parameters that can be used for GROMACS runs. However, in most cases you will use fairly standard values for these and you won't have to modify them significantly. On the next page I give definitions of these parameters we will focus on others as they are important over the course of the semester. For tonight, you don t really have to worry about what they mean all that much; you'll work with setting them more as the semester progresses. title=polylys_min cpp=cpp integrator=steep nsteps=1000 nstlog=10 nstenergy=5 xtc_grps=protein energygrps=protein rlist=1.0 rcoulomb=1.0 rvdw=1.0 ; This gives a title for the run ; This tells grompp the name of a "C-preprocessing" (cpp) program that it can use to interpret the.top file. This program is just called cpp on the workstation. ; This tells GROMACS to run a steepest descents minimization. ; This tells GROMACS the maximum number of steps to perform. If the minimization doesn't converge within this number of steps the run will end anyway. ; This tells GROMACS how frequently to save information to the.log file, which provides a summary of the run. ; This tells GROMACS how frequently to save energies to the energy output (.edr) file. ; This tells GROMACS which parts of the simulation system to put in a trajectory file (.xtc) that saves the coordinates during the minimization. Here, there's only a protein (e.g. no water or other molecules), so this is pretty obvious. ; This tells GROMACS which parts of the simulation system to put in a the energy output file (.edr) that saves the system energies during the minimization. Again, there's only a protein here. ; This tells GROMACS the cutoff distance (in nm) for calculating the "neighbor list" of atom pairs that need to have non-bonded interactions calculated. If this is different than the next two, it specifies a "twinrange" cutoff, where some longer range interactions (pairs > rlist but < rcoulomb or rvdw) aren't calculated every single step. ; This tells GROMACS the cutoff distance (in nm) for calculating coulombic interactions ; This tells GROMACS the cutoff distance (in nm) for calculating van der Waals interactions To set up our minimization, we need to use a program that will combine the coordinate (.gro), topology (.top), and minimization run parameter (.mdp) information into a single file (a.tpr file). This is done using the grompp program, as follows: > grompp f min.mdp o min.tpr c polylys.gro p polylys.top

8 So, what do these commands mean? -f: This is the file of minimization parameters for the run. -o: This is the output file from grompp that will be used as the start file for the actual minimization with mdrun. -c: This is the file containing the initial structure for the minimization. -p: This is the file containing the topology for the structure to be minimized. The.tpr file isn't a text file you can read. It's in machine code that will look like gibberish if you try to open it in vi. Essentially, grompp took the information from the three input files and put it into a format that is useful for GROMACS but not so accessible for humans to read! Now (finally!) we are ready to actually run our minimization. To do this, you can use the mdrun program with the following command. > mdrun v s min.tpr o min.trr x min.xtc c min.gro g min.log e min.edr So, what do these commands mean? -v: This makes the output from mdrun more verbose, which makes it clearer what the program is actually doing while it runs. This option can be omitted without interfering with the operation of the program other than decreasing the amount of output. -s: This is the start file for the run created by grompp. -o: This is the output of the trajectory of the run. It includes the coordinates for each step along the minimization. -x: This is also an output of the "trajectory" of the run, with the coordinates for each step along the minimization. However it is in a compressed format to take up less space. We'll notice more a difference between.trr and.xtc files when we perform molecular dynamics simulations next week.. -c: This is the file which will contain the final structure from the minimization in.gro format. -g: This is the log file for the job, which will include general information about how much of a run is completed (during the run) and how long the run took to complete (after the run). -e: This file contains the energies of the system throughout the run; the frequency with which it will be updated is given by nstenergy in the.mdp file.

9 The minimization should complete in a few minutes. Once it is finished, you can take a look at the.log file using vi. > vi min.log As you scroll through the file, you can see information for each step of the minimization, including the overall force field energy of the system (listed as "Potential"). Towards the bottom of the file, you can see how many steps it took to reach a converged minimum; just look for the last step that is listed with information. If the run didn't converge within the maximum number of steps, it would also tell you that. (The.log may say that the run converged to "machine precision" but not the desired forces. This is because the change in the structure and/or the energy between steps was so small it wasn't changing but that the "force" used to adjust the structure for the next step was still higher than a default threshold. For our purposes, we'll consider this to be a converged minimum.) At the bottom of the file, you can see how much time it took to complete the minimization. This time may round to zero for this very short minimization. For now, let's do two analyses of our minimization: 1) Compare the final minimized structure to the initial structure how much did it change during the minimization? 2) Look at the energies over the course of the run for this we can make a plot of potential energy versus minimization step. For the first analysis, we need to first convert our final minimized structure (saved as min.gro) to a.pdb file that we can open up and look at in SPDBV. To do this, we can use a GROMACS program called editconf. This is a program that can convert and edit coordinate files, and we'll see lots of uses for it in the coming weeks. Here, we can simply use the command: > editconf f min.gro o min.pdb So, what do these commands mean: -f: This is the input coordinate file for editconf. -o: This tells editconf what output file to save. Using the.pdb extension tells the program to save the final file in.pdb format.

10 Now, you want to download this.pdb file to the Windows computer you are working on to visualize it in SPDBV. You can do this using the WinSCP program, which you can find under Start>All Programs>WinSCP3>WinSCP. When the program opens, type the workstation name into the HostName and enter your user name and password. Also, be sure the SFTP button is chosen. If you are asked whether you wish to continue connecting and add the host name to the cache, you can say yes. You also may have to enter the password again. Once WinSCP opens, you'll have a window divided down the middle into a left and right hand side. The left-hand side shows files on your "local" computer (the Windows machine), and the right-hand side shows files on the "remote" computer (the Macintosh workstation). Navigate to the file you want to download on the right and drag it to the folder where you want it on the left. Alternatively, you can upload a file to the workstation by finding where it is saved on the local machine on the left and dragging it where you want it on the right. If you keep WinSCP open while you are working more on the workstation, it might not update the file list on the Workstation. If this happens, you can "refresh" the list of files under the Remote pull-down menu. Once the minimized structure.pdb file is on your local computer you can open it in SPDBV. (Note: When you open GROMACS.pdb files, SPDBV often thinks there is more than one model in the file although there is only one. Just tell the program to show one model.) You can also open up the initial structure for a comparison (you can either download it from the Mac workstation using WinSCP, or you can get it on the course conference). You may not be able to see both at the same time if the structure has been translated in the processing by GROMACS. However, using the fit functions, you can superimpose the structures to compare how similar or different they are. In addition to the visual comparison, you can also compare how similar they are numerically by calculating the RMS Cα deviation between the structures. (For this value, SPDBV measures the distance between the Cα positions for each of the 12 residues in the two structures. Then it computes the root mean square of these 12 values.) To calculate this value, you can select all the residues in each structure in the control panel. Then you can select the Calculate RMS option in the Fit menu, choosing the "CA (carbon alpha) only" option. The RMS value is printed in the toolbar window at the top of the screen. For the second analysis of energy at each step, you need to extract the energy values from the minimization. You could write these all down from the.log file, but that would be tedious. However, the energies were all saved in the.edr file every 10th step during the minimization. (If you look back at our run parameters we told GROMACS

11 to do this.) To extract you can use a program called g_energy. The command for this is: > g_energy f min.edr o minenergy.xvg So, what do these commands mean: -f: This is the input file with energies from the minimization for g_energy. -o: This is the file that the energies you want will be output into. (Note:.xvg files are generally a type of file you get from a variety of GROMACS analyses.) When g_energy runs, you will get lots of choices of different energy values to extract. These include the values for the different terms of the force field (e.g. bond, angle, Coulombic). Here, we're really only interested in the overall energy of the system, which is called "Potential." To select this energy, type Potential or select the corresponding number, then hit return. The program then waits for another selection. You could choose another energy term if you want. But, if you hit return again, then g_energy will begin extracting the energies from the file. Once g_energy is done, you can upload the output file onto the Windows machine using WinSCP as you did for the.pdb file. This.xvg file basically has two columns of data step number in first column and energy at that step in second column. You can make a plot of the energy versus step if you open this file in Excel. To do this, go to Open in Excel. From the "Files of type" pull down choose "All Files (*.*)". Then, open the.xvg file. This will bring up the Text Import Wizard, which will lead you through a series of steps to import the two columns into a spreadsheet. On the first step, choose "Delimited" and on the second step choose "Space" and "Treat consecutive delimiters as one." (This is because each column of data in the.xvg file is separated by several spaces.) Once you say OK to the final step, you should get an Excel file with some initial rows of general information followed by the two data columns. Once you've done this, you can make a plot of the results. Now that you've done one minimization, you can try your hand at three others. First, you can try a conjugant gradient minimization on the same polylysine peptide. You might want to perform this simulation in a new directory, or you'll need to use different names for the files. To make a new directory, you could do the following:

12 > cd.. (if you are still in the directory for the last MD run, this will take you "up" one level of directory) > mkdir polylys_cg You can now copy the files you need for the run to this directory. For this, you'll need the same polylysine.pdb file you started with last time and a.mdp file with the parameters for the conjugate gradient minimization. This file is saved as: /Users/instructor/modelingclass/lab1/min_cg.mdp And you can copy this file to your directory using a cp command analogous to those you used earlier. You can note the differences between this.mdp file and the one for steepest descents minimization: integrator=cg nstcgsteep=0 ; This says to do a conjugate gradient minimization. ; You can tell GROMACS to perform a steepest descents steep every so often during a conjugant gradient minimization. Here, we're only doing conjugant gradient steps. Second, you can do a minimization of polylysine using a conjugant gradient minimization that uses an occasional steepest descents step (every 10 steps). The.mdp file for this is saved as: /Users/instructor/modelingclass/lab1/min_combo.mdp Again, you can copy this file to your folder using cp. If you look at the.mdp file, the only different from min_cg.mdp is in the nstcgsteep=10 parameter. Third, you can do a minimization of polylysine with a different starting conformation. This will allow you to consider which conformation is more favorable for polylysine. For this, you can get a file with the structure from my directory saved as: /Users/instructor/modelingclass/lab1/polylys_conf2.pdb This can be copied to whatever directory you desire with the cp command. For this minimization, choose which of the three minimization methods (steepest descents, conjugate gradient, or a combination) you think will be best to use. You can then use the appropriate.mdp file from earlier for the method you want. Using the results from these three minimizations, you can address the questions for the weekly report.

13 Finally, when you are finished you can log out of the workstation with the following command: > logout After doing this, you can close the terminal program on your local computer.

Membrane protein tutorial with GROMACS. Yiannis Galdadas, George Patargias, and Zoe Cournia Biomedical Research Foundation, Academy of Athens

Membrane protein tutorial with GROMACS. Yiannis Galdadas, George Patargias, and Zoe Cournia Biomedical Research Foundation, Academy of Athens Membrane protein tutorial with GROMACS Yiannis Galdadas, George Patargias, and Zoe Cournia Biomedical Research Foundation, Academy of Athens 1) Introduction This tutorial describes a series of steps to

More information

The Magic of Movies A GROMACS Tutorial

The Magic of Movies A GROMACS Tutorial The Magic of Movies A GROMACS Tutorial E. James Petersson Schepartz Lab Meeting 03/03/06 GamePlan app Y7A F20Y mutant (app_a7y20) will be used as an example. Build structure in Spartan or Swiss PDB. Build

More information

1 Introduction. 2 Summary of Tutorial. Guest Lecture, Smith College, CS 334, BioInformatics 16 October 2008 GROMACS, MD Tutorial Filip Jagodzinski

1 Introduction. 2 Summary of Tutorial. Guest Lecture, Smith College, CS 334, BioInformatics 16 October 2008 GROMACS, MD Tutorial Filip Jagodzinski Guest Lecture, Smith College, CS 334, BioInformatics 16 October 2008 GROMACS, MD Tutorial Filip Jagodzinski 1 Introduction GROMACS (GROningen MAchine for Chemistry Simulation) is a molecular dynamics (MD)

More information

CHM 579 LAB 2B: MOLECULAR DYNAMICS SIMULATION OF WATER IN GROMACS

CHM 579 LAB 2B: MOLECULAR DYNAMICS SIMULATION OF WATER IN GROMACS CHM 579 LAB 2B: MOLECULAR DYNAMICS SIMULATION OF WATER IN GROMACS In this lab you will learn the basics of using the GROningen MAchine for Chemical Simulations (GROMACS) package. The first system to study

More information

Tutorial 1: Unix Basics

Tutorial 1: Unix Basics Tutorial 1: Unix Basics To log in to your ece account, enter your ece username and password in the space provided in the login screen. Note that when you type your password, nothing will show up in the

More information

1) Han, W.; Schulten, K. J. Chem. Theory Comput. 2012, 8, ) Han, W.; Wan, C.-K.; Jiang, F.; Wu, Y.-D. J. Chem. Theory Comput. 2010, 6, 3373.

1) Han, W.; Schulten, K. J. Chem. Theory Comput. 2012, 8, ) Han, W.; Wan, C.-K.; Jiang, F.; Wu, Y.-D. J. Chem. Theory Comput. 2010, 6, 3373. Citation: Please cite the following papers when using the PACE force field, 1) Han, W.; Schulten, K. J. Chem. Theory Comput. 2012, 8, 4413. 2) Han, W.; Wan, C.-K.; Jiang, F.; Wu, Y.-D. J. Chem. Theory

More information

WinSCP. Author A.Kishore/Sachin

WinSCP. Author A.Kishore/Sachin WinSCP WinSCP is a freeware windows client for the SCP (secure copy protocol), a way to transfer files across the network using the ssh (secure shell) encrypted protocol. It replaces other FTP programs

More information

Lab III: MD II & Analysis Linux & OS X. In this lab you will:

Lab III: MD II & Analysis Linux & OS X. In this lab you will: Lab III: MD II & Analysis Linux & OS X In this lab you will: 1) Add water, ions, and set up and minimize a solvated protein system 2) Learn how to create fixed atom files and systematically minimize a

More information

1. Open the SPDBV_4.04_OSX folder on the desktop and double click DeepView to open.

1. Open the SPDBV_4.04_OSX folder on the desktop and double click DeepView to open. Molecular of inhibitor-bound Lysozyme This lab will not require a lab report. Rather each student will follow this tutorial, answer the italicized questions (worth 2 points each) directly on this protocol/worksheet,

More information

Physics REU Unix Tutorial

Physics REU Unix Tutorial Physics REU Unix Tutorial What is unix? Unix is an operating system. In simple terms, its the set of programs that makes a computer work. It can be broken down into three parts. (1) kernel: The component

More information

CS CS Tutorial 2 2 Winter 2018

CS CS Tutorial 2 2 Winter 2018 CS CS 230 - Tutorial 2 2 Winter 2018 Sections 1. Unix Basics and connecting to CS environment 2. MIPS Introduction & CS230 Interface 3. Connecting Remotely If you haven t set up a CS environment password,

More information

Lab III: MD II & Analysis Linux & OS X. In this lab you will:

Lab III: MD II & Analysis Linux & OS X. In this lab you will: Lab III: MD II & Analysis Linux & OS X In this lab you will: 1) Add water, ions, and set up and minimize a solvated protein system 2) Learn how to create fixed atom files and systematically minimize a

More information

STA 303 / 1002 Using SAS on CQUEST

STA 303 / 1002 Using SAS on CQUEST STA 303 / 1002 Using SAS on CQUEST A review of the nuts and bolts A.L. Gibbs January 2012 Some Basics of CQUEST If you don t already have a CQUEST account, go to www.cquest.utoronto.ca and request one.

More information

Author A.Kishore/Sachin WinSCP

Author A.Kishore/Sachin   WinSCP WinSCP WinSCP is a freeware windows client for the SCP (secure copy protocol), a way to transfer files across the network using the ssh (secure shell) encrypted protocol. It replaces other FTP programs

More information

CpSc 1111 Lab 1 Introduction to Unix Systems, Editors, and C

CpSc 1111 Lab 1 Introduction to Unix Systems, Editors, and C CpSc 1111 Lab 1 Introduction to Unix Systems, Editors, and C Welcome! Welcome to your CpSc 111 lab! For each lab this semester, you will be provided a document like this to guide you. This material, as

More information

Molecular Modeling Protocol

Molecular Modeling Protocol Molecular Modeling of an unknown protein 1. Register for your own SWISS-MODEL Workspace at http://swissmodel.expasy.org/workspace/index. Follow the Login link in the upper right hand corner. Bring your

More information

No Food or Drink in this room. Logon to Windows machine

No Food or Drink in this room. Logon to Windows machine While you are waiting No Food or Drink in this room Logon to Windows machine Username/password on right-hand monitor Not the username/password I gave you earlier We will walk through connecting to the

More information

About 5. How do i install APLVORO? 6. Mainwindow components 8. How do i start? 10. Required pbc states 14. What does Coloring method do?

About 5. How do i install APLVORO? 6. Mainwindow components 8. How do i start? 10. Required pbc states 14. What does Coloring method do? APL@VORO Manual APL@VORO Manual 1 APL@Voro User Manual 1.1 1.2 About 5 How do i install APLVORO? 6 2 User interface 2.1 2.2 Mainwindow components 8 How do i start? 10 3 PDB & XTC 3.1 Required pbc states

More information

When you first log in, you will be placed in your home directory. To see what this directory is named, type:

When you first log in, you will be placed in your home directory. To see what this directory is named, type: Chem 7520 Unix Crash Course Throughout this page, the command prompt will be signified by > at the beginning of a line (you do not type this symbol, just everything after it). Navigation When you first

More information

static MM_Index snap(mm_index corect, MM_Index ligct, int imatch0, int *moleatoms, i

static MM_Index snap(mm_index corect, MM_Index ligct, int imatch0, int *moleatoms, i MAESTRO static MM_Index snap(mm_index corect, MM_Index ligct, int imatch0, int *moleatoms, int *refcoreatoms){int ncoreat = :vector mappings; PhpCoreMapping mapping; for COMMON(glidelig).

More information

Session 1: Accessing MUGrid and Command Line Basics

Session 1: Accessing MUGrid and Command Line Basics Session 1: Accessing MUGrid and Command Line Basics Craig A. Struble, Ph.D. July 14, 2010 1 Introduction The Marquette University Grid (MUGrid) is a collection of dedicated and opportunistic resources

More information

Assignment 4: Molecular Dynamics (50 points)

Assignment 4: Molecular Dynamics (50 points) Chemistry 380.37 Fall 2015 Dr. Jean M. Standard November 2, 2015 Assignment 4: Molecular Dynamics (50 points) In this assignment, you will use the Tinker molecular modeling software package to carry out

More information

RUNNING MOLECULAR DYNAMICS SIMULATIONS WITH CHARMM: A BRIEF TUTORIAL

RUNNING MOLECULAR DYNAMICS SIMULATIONS WITH CHARMM: A BRIEF TUTORIAL RUNNING MOLECULAR DYNAMICS SIMULATIONS WITH CHARMM: A BRIEF TUTORIAL While you can probably write a reasonable program that carries out molecular dynamics (MD) simulations, it s sometimes more efficient

More information

Stat 5411 Lab 1 Fall Assignment: Turn in copies of bike.sas and bike.lst from your SAS run. Turn this in next Friday with your assignment.

Stat 5411 Lab 1 Fall Assignment: Turn in copies of bike.sas and bike.lst from your SAS run. Turn this in next Friday with your assignment. Stat 5411 Lab 1 Fall 2009 Assignment: Turn in copies of bike.sas and bike.lst from your SAS run. Turn this in next Friday with your assignment. To run SAS on UMD's UNIX machine ub, you can either (1) create

More information

Temple University Computer Science Programming Under the Linux Operating System January 2017

Temple University Computer Science Programming Under the Linux Operating System January 2017 Temple University Computer Science Programming Under the Linux Operating System January 2017 Here are the Linux commands you need to know to get started with Lab 1, and all subsequent labs as well. These

More information

sftp - secure file transfer program - how to transfer files to and from nrs-labs

sftp - secure file transfer program - how to transfer files to and from nrs-labs last modified: 2017-01-20 p. 1 CS 111 - useful details: ssh, sftp, and ~st10/111submit You write Racket BSL code in the Definitions window in DrRacket, and save that Definitions window's contents to a

More information

You can use the WinSCP program to load or copy (FTP) files from your computer onto the Codd server.

You can use the WinSCP program to load or copy (FTP) files from your computer onto the Codd server. CODD SERVER ACCESS INSTRUCTIONS OVERVIEW Codd (codd.franklin.edu) is a server that is used for many Computer Science (COMP) courses. To access the Franklin University Linux Server called Codd, an SSH connection

More information

Coarse grain modelling of DPPC : GROMACS

Coarse grain modelling of DPPC : GROMACS Practical-2 Coarse grain modelling of DPPC : GROMACS Coarse-grained models of membranes 1 CG mapping of DPPC 2 CG simulation of DPPC lipid membrane Atomistic models of membranes System: Dipalmitoylphosphatidylcholine(DPPC)

More information

APBS electrostatics in VMD

APBS electrostatics in VMD APBS electrostatics in VMD The VMD molecular graphics software package provides support for both the execution of APBS and the visualization of the resulting electrostatic potentials. Documentation on

More information

A First Introduction to Scientific Visualization Geoffrey Gray

A First Introduction to Scientific Visualization Geoffrey Gray Visual Molecular Dynamics A First Introduction to Scientific Visualization Geoffrey Gray VMD on CIRCE: On the lower bottom left of your screen, click on the window start-up menu. In the search box type

More information

Introduction to Unix - Lab Exercise 0

Introduction to Unix - Lab Exercise 0 Introduction to Unix - Lab Exercise 0 Along with this document you should also receive a printout entitled First Year Survival Guide which is a (very) basic introduction to Unix and your life in the CSE

More information

LAB #5 Intro to Linux and Python on ENGR

LAB #5 Intro to Linux and Python on ENGR LAB #5 Intro to Linux and Python on ENGR 1. Pre-Lab: In this lab, we are going to download some useful tools needed throughout your CS career. First, you need to download a secure shell (ssh) client for

More information

Using the Zoo Workstations

Using the Zoo Workstations Using the Zoo Workstations Version 1.86: January 16, 2014 If you ve used Linux before, you can probably skip many of these instructions, but skim just in case. Please direct corrections and suggestions

More information

Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet

Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet 1. Macros 1.1 What is a macro? A macro is a set of one or more actions

More information

Overview. Stage 1. Getting a starting structure

Overview. Stage 1. Getting a starting structure Overview This tutorial comes in two parts. In the first, we will look at setting up an implicit solvent simulation on a medium-sized peptide. Later, we will learn how to look at the log file produced by

More information

Introduction. Opening and Closing Databases. Access 2010 Managing Databases and Objects. Video: Working with Databases in Access 2010

Introduction. Opening and Closing Databases. Access 2010 Managing Databases and Objects. Video: Working with Databases in Access 2010 Access 2010 Managing Databases and Objects Introduction Page 1 Each Access database consists of multiple objects that let you interact with data. Databases can include forms for entering data, queries

More information

Cheat Sheet on using Electric for Design and Simulations

Cheat Sheet on using Electric for Design and Simulations Cheat Sheet on using Electric for Design and Simulations By Sai Kashyap Nutulapati Revised - 04 October 2010 10/4/2010 1 Instructions before Starting Wherever you see the word , replace it with

More information

Page Topic 02 Log In to KidKare 02 Using the Navigation Menu 02 Change the Language

Page Topic 02 Log In to KidKare 02 Using the Navigation Menu 02 Change the Language Page Topic 02 Log In to KidKare 02 Using the Navigation Menu 02 Change the Language help.kidkare.com 03 Enroll a Child 03 Withdraw a Child 03 View Pending and Withdrawn Children 04 View Kids by Enrollment

More information

Using LINUX a BCMB/CHEM 8190 Tutorial Updated (1/17/12)

Using LINUX a BCMB/CHEM 8190 Tutorial Updated (1/17/12) Using LINUX a BCMB/CHEM 8190 Tutorial Updated (1/17/12) Objective: Learn some basic aspects of the UNIX operating system and how to use it. What is UNIX? UNIX is the operating system used by most computers

More information

Lab 1 Introduction to UNIX and C

Lab 1 Introduction to UNIX and C Name: Lab 1 Introduction to UNIX and C This first lab is meant to be an introduction to computer environments we will be using this term. You must have a Pitt username to complete this lab. NOTE: Text

More information

CHEM 5412 Spring 2017: Introduction to Maestro and Linux Command Line

CHEM 5412 Spring 2017: Introduction to Maestro and Linux Command Line CHEM 5412 Spring 2017: Introduction to Maestro and Linux Command Line March 28, 2017 1 Introduction Molecular modeling, as with other computational sciences, has rapidly grown and taken advantage of the

More information

FrontPage Help Center. Topic: FrontPage Basics

FrontPage Help Center. Topic: FrontPage Basics FrontPage Help Center Topic: FrontPage Basics by Karey Cummins http://www.rtbwizards.com http://www.myartsdesire.com 2004 Getting Started... FrontPage is a "What You See Is What You Get" editor or WYSIWYG

More information

Introduction. SSH Secure Shell Client 1

Introduction. SSH Secure Shell Client 1 SSH Secure Shell Client 1 Introduction An SSH Secure Shell Client is a piece of software that allows a user to do a number of functions. Some of these functions are: file transferring, setting permissions,

More information

I have chosen to draw the caffeine molecule and will use this as my example throughout this tutorial.

I have chosen to draw the caffeine molecule and will use this as my example throughout this tutorial. How to Create a Molecule in ChemDraw and Publish onto Webpage By Sean Wolosin I have chosen to draw the caffeine molecule and will use this as my example throughout this tutorial.. Open ChemDraw Std 8.0..

More information

Firewalls can prevent access to the Unix Servers. Please make sure any firewall software or hardware allows access through Port 22.

Firewalls can prevent access to the Unix Servers. Please make sure any firewall software or hardware allows access through Port 22. EINSTEIN OVERVIEW Einstein (Einstein.franklin.edu) and Codd (codd.franklin.edu) are two servers that are used for many Computer Science (COMP) courses. Students will be directed to use either Einstein

More information

February 2010 Christopher Bruns

February 2010 Christopher Bruns Molecular Simulation with OpenMM Zephyr February 2010 Christopher Bruns What is OpenMM Zephyr? Graphical user interface for running GPU accelerated molecular dynamics simulations Automates running of gromacs

More information

Introduction to Linux. Fundamentals of Computer Science

Introduction to Linux. Fundamentals of Computer Science Introduction to Linux Fundamentals of Computer Science Outline Operating Systems Linux History Linux Architecture Logging in to Linux Command Format Linux Filesystem Directory and File Commands Wildcard

More information

TourMaker Reference Manual. Intro

TourMaker Reference Manual. Intro TourMaker Reference Manual Intro Getting Started Tutorial: Edit An Existing Tour Key Features & Tips Tutorial: Create A New Tour Posting A Tour Run Tours From Your Hard Drive Intro The World Wide Web is

More information

3. Saving Your Work: You will want to save your work periodically, especially during long exercises.

3. Saving Your Work: You will want to save your work periodically, especially during long exercises. Graphing and Data Transformation in Excel ECON 285 Chris Georges This is a brief tutorial in Excel and a first data exercise for the course. The tutorial is written for a novice user of Excel and is not

More information

2. What are the advantages of simulating a molecule or a reaction over doing the experiment in a lab?

2. What are the advantages of simulating a molecule or a reaction over doing the experiment in a lab? Name: Introduction 1. What is computational chemistry? 2. What are the advantages of simulating a molecule or a reaction over doing the experiment in a lab? Programming Match the following terms to their

More information

Lab 1 Introduction to UNIX and C

Lab 1 Introduction to UNIX and C Name: Lab 1 Introduction to UNIX and C This first lab is meant to be an introduction to computer environments we will be using this term. You must have a Pitt username to complete this lab. The doc is

More information

UNIVERSITY OF NORTH TEXAS DEPARTMENT OF LEARNING TECHNOLOGIES SPRING

UNIVERSITY OF NORTH TEXAS DEPARTMENT OF LEARNING TECHNOLOGIES SPRING How-To Set Up Your Classes Web Space Windows and Mac Go to https://classes.lt.unt.edu/ (1) In the menu bar Click Register (2) Use your regular EUID (abc1234 format) and password. (3) Choose your role and

More information

CSE115 Lab exercises for week 1 of recitations Spring 2011

CSE115 Lab exercises for week 1 of recitations Spring 2011 Introduction In this first lab you will be introduced to the computing environment in the Baldy 21 lab. If you are familiar with Unix or Linux you may know how to do some or all of the following tasks.

More information

Molecular Simulation Methods with Gromacs

Molecular Simulation Methods with Gromacs Molecular Simulation Methods with Gromacs Reciprocal space Direct space 1 9 17 253341 49 57 2 10 18 26 50 58 3442 3 11 19 27 51 3543 59 5 21 29 13 37 53 45 61 223038 6 14 46 54 62 23 7 15 313947 55 63

More information

OPENING A LEADS.TXT FILE IN EXCEL 2010

OPENING A LEADS.TXT FILE IN EXCEL 2010 From the project manager to a team of administrative, programming, and technical specialists, ATS believes in a team approach that brings together all of the necessary elements pre-conference and onsite

More information

Instructions for Using the Databases

Instructions for Using the Databases Appendix D Instructions for Using the Databases Two sets of databases have been created for you if you choose to use the Documenting Our Work forms. One set is in Access and one set is in Excel. They are

More information

CHEM /12/01 INSTRUCTIONS FOR AB-INITIO CALCULATIONS Prepared by: Dr. Cynthia HARWOOD, Ahu AKIN, Prof. Tim KEIDERLING

CHEM /12/01 INSTRUCTIONS FOR AB-INITIO CALCULATIONS Prepared by: Dr. Cynthia HARWOOD, Ahu AKIN, Prof. Tim KEIDERLING CHEM 542 10/12/01 INSTRUCTIONS FOR AB-INITIO CALCULATIONS Prepared by: Dr. Cynthia HARWOOD, Ahu AKIN, Prof. Tim KEIDERLING SETTLING IN: - Type your login name : Chem542 and press Enter - Type your password

More information

Introduction to Linux Environment. Yun-Wen Chen

Introduction to Linux Environment. Yun-Wen Chen Introduction to Linux Environment Yun-Wen Chen 1 The Text (Command) Mode in Linux Environment 2 The Main Operating Systems We May Meet 1. Windows 2. Mac 3. Linux (Unix) 3 Windows Command Mode and DOS Type

More information

CMPSCI 120 Fall 2013 Lab #2 Professor William T. Verts

CMPSCI 120 Fall 2013 Lab #2 Professor William T. Verts CMPSCI 120 Fall 2013 Lab #2 Professor William T. Verts Setting Up (PC) Go to the link for the encrypted telnet program PuTTY (Simon Tatham s site in the UK at http://www.chiark.greenend.org.uk/~sgtatham/putty/).

More information

Topic 4D: Import and Export Contacts

Topic 4D: Import and Export Contacts Topic 4D: Import and Export Contacts If a corporation merges with another corporation it may become necessary to add the contacts to the new merged companies contact folder. This can be done by Importing

More information

PyMOL is a molecular visualization tool. There are many such tools available both commercially and publicly available:

PyMOL is a molecular visualization tool. There are many such tools available both commercially and publicly available: Workshop #1: PyMOL PyMOL is a molecular visualization tool. There are many such tools available both commercially and publicly available: PyMOL (www.pymol.org) Swiss-PdbViewer (spdbv.vital-it.ch) RasMol

More information

Configuring Ubuntu to Code for the OmniFlash or OmniEP

Configuring Ubuntu to Code for the OmniFlash or OmniEP Configuring Ubuntu to Code for the OmniFlash or OmniEP Table of Contents Introduction...2 Assumptions...2 Getting Started...2 Getting the Cross Compiler for ARM...2 Extracting the contents of the compressed

More information

History. Terminology. Opening a Terminal. Introduction to the Unix command line GNOME

History. Terminology. Opening a Terminal. Introduction to the Unix command line GNOME Introduction to the Unix command line History Many contemporary computer operating systems, like Microsoft Windows and Mac OS X, offer primarily (but not exclusively) graphical user interfaces. The user

More information

CS 1110 SPRING 2016: GETTING STARTED (Jan 27-28) First Name: Last Name: NetID:

CS 1110 SPRING 2016: GETTING STARTED (Jan 27-28)   First Name: Last Name: NetID: CS 1110 SPRING 2016: GETTING STARTED (Jan 27-28) http://www.cs.cornell.edu/courses/cs1110/2016sp/labs/lab01/lab01.pdf First Name: Last Name: NetID: Goals. Learning a computer language is a lot like learning

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

CSCI 161: Introduction to Programming I Lab 1a: Programming Environment: Linux and Eclipse

CSCI 161: Introduction to Programming I Lab 1a: Programming Environment: Linux and Eclipse CSCI 161: Introduction to Programming I Lab 1a: Programming Environment: Linux and Eclipse Goals - to become acquainted with the Linux/Gnome environment Overview For this lab, you will login to a workstation

More information

Homology Modeling Professional for HyperChem Release Notes

Homology Modeling Professional for HyperChem Release Notes Homology Modeling Professional for HyperChem Release Notes This document lists additional information about Homology Modeling Professional for HyperChem. Current Revision Revision H1 (Version 8.1.1) Current

More information

Computer Project: Getting Started with MATLAB

Computer Project: Getting Started with MATLAB Computer Project: Getting Started with MATLAB Name Purpose: To learn to create matrices and use various MATLAB commands. Examples here can be useful for reference later. MATLAB functions: [ ] : ; + - *

More information

CS 2400 Laboratory Assignment #1: Exercises in Compilation and the UNIX Programming Environment (100 pts.)

CS 2400 Laboratory Assignment #1: Exercises in Compilation and the UNIX Programming Environment (100 pts.) 1 Introduction 1 CS 2400 Laboratory Assignment #1: Exercises in Compilation and the UNIX Programming Environment (100 pts.) This laboratory is intended to give you some brief experience using the editing/compiling/file

More information

Using X-Particles with Team Render

Using X-Particles with Team Render Using X-Particles with Team Render Some users have experienced difficulty in using X-Particles with Team Render, so we have prepared this guide to using them together. Caching Using Team Render to Picture

More information

Setting up my Dev Environment ECS 030

Setting up my Dev Environment ECS 030 Setting up my Dev Environment ECS 030 1 Command for SSHing into a CSIF Machine If you already have a terminal and already have a working ssh program (That is, you type ssh into the terminal and it doesn

More information

Following a tour is the easiest way to learn Prism.

Following a tour is the easiest way to learn Prism. Page 1 of 25 A tour of Prism Following a tour is the easiest way to learn Prism. View a movie Watch and listen to a ten minute introductory movie from Prism's Welcome dialog. Or view it on the web. Read

More information

Creating and Publishing Your own website. MAC Version SEAS 001 Professor Ahmadi

Creating and Publishing Your own website. MAC Version SEAS 001 Professor Ahmadi Creating and Publishing Your own website MAC Version SEAS 001 Professor Ahmadi 1 Project Overview Create a basic web page using a text editor Publish webpage to GW school server Edit web page using an

More information

Note. Some tutorials require data files that can be downloaded here:

Note. Some tutorials require data files that can be downloaded here: Discovery Studio 2.0 Tutorials Version 1.0 : Note. Some tutorials require data files that can be downloaded here: http://www.accelrys.com/doc/life/dstudio/20/tutorials/tutorialdata.zip. Save the zip file

More information

Unix/Linux Primer. Taras V. Pogorelov and Mike Hallock School of Chemical Sciences, University of Illinois

Unix/Linux Primer. Taras V. Pogorelov and Mike Hallock School of Chemical Sciences, University of Illinois Unix/Linux Primer Taras V. Pogorelov and Mike Hallock School of Chemical Sciences, University of Illinois August 25, 2017 This primer is designed to introduce basic UNIX/Linux concepts and commands. No

More information

Tiny Instruction Manual for the Undergraduate Mathematics Unix Laboratory

Tiny Instruction Manual for the Undergraduate Mathematics Unix Laboratory Tiny Instruction Manual for the Undergraduate Mathematics Unix Laboratory 1 Logging In When you sit down at a terminal and jiggle the mouse to turn off the screen saver, you will be confronted with a window

More information

An Illustrated Guide to Shell Magic: Standard I/O & Redirection

An Illustrated Guide to Shell Magic: Standard I/O & Redirection An Illustrated Guide to Shell Magic: Standard I/O & Redirection Created by Brennen Bearnes Last updated on 2015-03-03 05:15:07 PM EST Guide Contents Guide Contents Overview Input & Output Standard I/O

More information

2. Click on the Launch button and select Terminal. A window will appear which looks like:

2. Click on the Launch button and select Terminal. A window will appear which looks like: 1. Log-in to one of the lab computers. If given a choice, select Gnome/Java Desktop (JDS) as your window manager. Don't select the Common Desktop Environment (CDE). You should then see something like the

More information

User Guide Version 2.0

User Guide Version 2.0 User Guide Version 2.0 Page 2 of 8 Summary Contents 1 INTRODUCTION... 3 2 SECURESHELL (SSH)... 4 2.1 ENABLING SSH... 4 2.2 DISABLING SSH... 4 2.2.1 Change Password... 4 2.2.2 Secure Shell Connection Information...

More information

Non-Linear Least Squares Analysis with Excel

Non-Linear Least Squares Analysis with Excel Non-Linear Least Squares Analysis with Excel 1. Installation An add-in package for Excel, which performs certain specific non-linear least squares analyses, is available for use in Chem 452. The package,

More information

This lab exercise is to be submitted at the end of the lab session! passwd [That is the command to change your current password to a new one]

This lab exercise is to be submitted at the end of the lab session! passwd [That is the command to change your current password to a new one] Data and Computer Security (CMPD414) Lab II Topics: secure login, moving into HOME-directory, navigation on Unix, basic commands for vi, Message Digest This lab exercise is to be submitted at the end of

More information

Watch the video below to learn more about number formats in Excel. *Video removed from printing pages. Why use number formats?

Watch the video below to learn more about number formats in Excel. *Video removed from printing pages. Why use number formats? Excel 2016 Understanding Number Formats What are number formats? Whenever you're working with a spreadsheet, it's a good idea to use appropriate number formats for your data. Number formats tell your spreadsheet

More information

Bitnami MEAN for Huawei Enterprise Cloud

Bitnami MEAN for Huawei Enterprise Cloud Bitnami MEAN for Huawei Enterprise Cloud Description Bitnami MEAN Stack provides a complete development environment for mongodb and Node.js that can be deployed in one click. It includes the latest stable

More information

Laboratory 1 Semester 1 11/12

Laboratory 1 Semester 1 11/12 CS2106 National University of Singapore School of Computing Laboratory 1 Semester 1 11/12 MATRICULATION NUMBER: In this lab exercise, you will get familiarize with some basic UNIX commands, editing and

More information

APS Installation Documentation

APS Installation Documentation APS Installation Documentation Sites Using APS in Conjunction with SunSystems: SunSystems must be installed on the system so that connections with APS can be set up. Installation Sequence 1. Go to Adventist

More information

Appendix C: Run a Report of Individual Listings for your Department

Appendix C: Run a Report of Individual Listings for your Department for your Department The Directory Report The Directory report lists each person in your department along with the information from the HR database that will be printed in the next directory. The Directory

More information

Contents. Note: pay attention to where you are. Note: Plaintext version. Note: pay attention to where you are... 1 Note: Plaintext version...

Contents. Note: pay attention to where you are. Note: Plaintext version. Note: pay attention to where you are... 1 Note: Plaintext version... Contents Note: pay attention to where you are........................................... 1 Note: Plaintext version................................................... 1 Hello World of the Bash shell 2 Accessing

More information

Software Installation - Accessing Linux and Checking your Environmental Variables

Software Installation - Accessing Linux and Checking your Environmental Variables Accessing Linux and Checking your Environmental Although you may be fortunate enough to have a powerful multi-processor desktop running Linux, most of our sponsors do not. Most of our sponsors will have

More information

SBCC Web File System - Xythos

SBCC Web File System - Xythos Table of Contents Table of Contents...1 Purpose...1 Login Procedure...1 Creating and Sharing a Web Folder for MAT153...2 Dreamweaver Remote Info...4 I Forgot My Pipeline Credentials...6 Purpose This purpose

More information

This lesson is part 5 of 5 in a series. You can go to Invoice, Part 1: Free Shipping if you'd like to start from the beginning.

This lesson is part 5 of 5 in a series. You can go to Invoice, Part 1: Free Shipping if you'd like to start from the beginning. Excel Formulas Invoice, Part 5: Data Validation "Oh, hey. Um we noticed an issue with that new VLOOKUP function you added for the shipping options. If we don't type the exact name of the shipping option,

More information

(on CQUEST) A.L. Gibbs

(on CQUEST) A.L. Gibbs STA 302 / 1001 Introduction to SAS for Regression (on CQUEST) A.L. Gibbs September 2009 1 Some Basics of CQUEST The operating system in the RW labs (107/109 and 211) is Windows XP. There are a few terminals

More information

Find out where you currently are in the path Change directories to be at the root of your home directory (/home/username) cd ~

Find out where you currently are in the path Change directories to be at the root of your home directory (/home/username) cd ~ CIS 105 Working with directories You have using directories in a Windows environment extensively. Often in Windows we are calling them folders. They are important in order to organize our files. It is

More information

Excel for Gen Chem General Chemistry Laboratory September 15, 2014

Excel for Gen Chem General Chemistry Laboratory September 15, 2014 Excel for Gen Chem General Chemistry Laboratory September 15, 2014 Excel is a ubiquitous data analysis software. Mastery of Excel can help you succeed in a first job and in your further studies with expertise

More information

FILE MAINTENANCE COMMANDS

FILE MAINTENANCE COMMANDS Birla Institute of Technology & Science, Pilani Computer Programming (CS F111) Lab-2 ----------------------------------------------------------------------------------------------------------------------

More information

Intermediate Excel 2003

Intermediate Excel 2003 Intermediate Excel 2003 Introduction The aim of this document is to introduce some techniques for manipulating data within Excel, including sorting, filtering and how to customise the charts you create.

More information

Agilent G6854AA MassHunter Personal Compound Database

Agilent G6854AA MassHunter Personal Compound Database Agilent G6854AA MassHunter Personal Compound Database Quick Start Guide This guide describes how to install and use MassHunter Personal Compound Database. Where to find more information What is Personal

More information

Excel Basics 1. Running Excel When you first run Microsoft Excel you see the following menus and toolbars across the top of your new worksheet

Excel Basics 1. Running Excel When you first run Microsoft Excel you see the following menus and toolbars across the top of your new worksheet Excel Basics 1. Running Excel When you first run Microsoft Excel you see the following menus and toolbars across the top of your new worksheet The Main Menu Bar is located immediately below the Program

More information

QUEEN MARY, UNIVERSITY OF LONDON. Introduction to Statistics

QUEEN MARY, UNIVERSITY OF LONDON. Introduction to Statistics QUEEN MARY, UNIVERSITY OF LONDON MTH 4106 Introduction to Statistics Practical 1 10 January 2012 In this practical you will be introduced to the statistical computing package called Minitab. You will use

More information

UoW HPC Quick Start. Information Technology Services University of Wollongong. ( Last updated on October 10, 2011)

UoW HPC Quick Start. Information Technology Services University of Wollongong. ( Last updated on October 10, 2011) UoW HPC Quick Start Information Technology Services University of Wollongong ( Last updated on October 10, 2011) 1 Contents 1 Logging into the HPC Cluster 3 1.1 From within the UoW campus.......................

More information

Saving and Reloading Your Work

Saving and Reloading Your Work Saving and Reloading Your Work Part of the Jmol Training Guide from the MSOE Center for BioMolecular Modeling Interactive version available at http://cbm.msoe.edu/teachingresources/jmol/jmoltraining/saving.html

More information