Lab02/3: first steps with Perl

This post is a part of the second laboratory session. Please refer to the main post. 

Ready to start programming? We hope so. This post will teach you the very first things 🙂

What a Perl program is

As we already said in class, a Perl program (or script, better), is a plain text file, as a FASTQ or SAM file is. It contains a set of instructions that the computer can execute. Unlike human beings, computers love repetitive tasks…

We are going to give you an actual lesson of Perl next Friday, but we think it is a good idea to make you touch it in advance.

Every programming language has:

  • variables: basically they are a piece of memory that can store an information, and has a name.
  • conditionals: we execute an instruction IF some condition is verified.
  • loops: we execute a set of instruction as many times as needed. Example: for every sequence in a FASTA file, calculate the reverse complement and print it.

Continue reading

Tagged , , ,

Lab02/0: First quiz

This post is a part of the second laboratory session. Please refer to the main post.

First quiz for the practical: check how much did you learn about the terminal and its commands

The following command:

mkdir My Directory
 
 
 
 

In your home you have two directories: lab1 and lab2. You are currently working on lab1 and want to list files present in the lab2 directory. Choose the right command(s):

 
 
 
 
 

The following command:

grep > genome.fasta
 
 
 
 

The command head will print the first 10 lines of a file. To print the first 100:

 
 
 
 

To count how many sequences you have in “genome.fasta”, you can:

 
 
 
 
 
 

If you want to see how many files (or directories) you have in your home folder:

 
 
 
 

Question 1 of 6

Tagged ,

Lab02/2: first bioinformatics programs

This post is a part of the second laboratory session. Please refer to the main post.

Linux commands like ls and grep are just programs, but they are special because any UNIX like terminal will ship them (for free :).

Now we are going to use a Perl script and an alignment program to perform two tasks:

  • simulate a whole genome shotgun
  • align the reads produced from the shotgun

Continue reading

Tagged , ,

Lab02/1: A small recap and more on pipes and stuff

This post is part of the second laboratory session!

We are going to start with a refresh of Bash command, and possibly learning some new one.

Continue reading

Tagged

First practical

Welcome to the first practical. During this practical you’ll learn how to master the command line and Linux as well.
Please, keep in mind that all the tools we are presenting day by day are necessary to fulfil the final assignment, so try to think about all the steps rather than rushing to the end.

Feel free to ask us, in case of troubles…

Continue reading

Tagged , ,

Bash slides

Screenshot 2014-04-03 13.59.43We published an on-line version of the slides used today to introduce some fundamental command you’ll routinely use during the practicals.

Bash slides

Practicals, 2014 edition

WelcomeHello guys, we are going to start the 2014 edition of the Genomics practicals today, in Aula M Pr at the Vallisneri Building. We’ll move to the Computer Room later on.

Today we’ll have see how to work in a Linux environment, mastering the command line interface (shell). Should you be curious to see past practicals on same argument, here you are: a post on this and another one and don’t forget the autocompletion.

See you later,
Andrea and Giovanni

New practicals…

This year we’ll have a completely new metagenomics laboratory: from sampling to bioinformatics. And a new blog too:http://metagenomics.4ngs.com/

[youtube http://www.youtube.com/watch?v=OnghpBvMP3w]

Last lab guys!

We are approaching the end of a cycle… during this genomics laboratory you put your hands on genome sequencing and finishing, and of course you had a nice «primer» on Perl programming, perhaps with a boost in your primer design skills as an extra bonus.

It’s time to sum up, with a «self service» laboratory…

Due to the remarkable success of this year laboratory, that has been an experiment I wanted to try, we will repeat the 20 hours “Perl practical” next year. So stay tuned 🙂

See you this afternoon,

Andrea

Refresh your Perl, the size you want.

Continue reading

Tagged , , ,