Basic Perl
- Basic structure
- use strict, warnings. Always.
- Syntax
- Variables (scalar and array, maybe associative arrays)
- Assignment (=, " v/s ', { v/s ( v/s [ )
- Blocks, functions
- Functions
- if
- while
- for
- File and command line manipulations
- ARGV
- STDIN
while <>
- open, close, print, filehandles.
- String manipulation
- substr
- m/// (matching)
- s/// (substitution)
- tr/// (translate)
References
- CPAN
- Beginning Perl for Bioinformatics
- Developing Bioinformatics Computer Skills


