Authors: allegra.via Via or Aidan Budd
This is a module from the "Python for Biologists" course. The module presents an introduction to Biopython. It shows how to deal with sequences and sequence records, how to download records from NCBI databases, how to run Blast and how to parse XML Blast outputs.
Slides used for teaching an introduction to phylogenies and MSAs in the context of phylogenies for the first day of a two-day course on MSAs at Cambridge University, in the UK, in December 2013. Course taught together with Holger Dinkel and Terri Attwood.
This is a module from the "Python for Biologists" course. It describes the Python module interfacing the R package for statistics. The module shows how to calculate mean, standard deviation, z-score and p-value of a set of numbers, and how to generate plots. Input files for the scripts presented...
This is a module from the "Python for Biologists" course. It describes how to use Python dictionary and set data structures to search your data. In particular, how to use a dictionary to represent the genetic code table and use it to translate a nucleotide sequence into a protein sequence, and...
This is a module from the "Python for Biologists" course. It teaches how to do pattern matching in Python, i.e. how to find a substring (or a set of substrings) in a string. To this aim, it introduces the regular expression syntax, and the tools needed to search regular expressions in biological...
This is a module from the "Python for Biologists" course. It deals with functions and how to write and use them. It also introduces namespaces and the tuple data structure. The module contains several exercises and suggested solutions. The text of exercises is also provided in a separate file.
A presentation given as part of the Basic Evolution Workshop, a trans-African virtual training course (described in this BioEssays article PMID: 21312200; the course wiki is here http://molecevol10.wikispaces.com/). Introduces concepts of splits, consensus trees, consensus networks, describes...
An introduction to multiple sequence alignments (MSAs) for bench biologists delivered as part of the EMBL Australia Masterclass on Protein Sequence Analysis http://oz-masterclass.wikispaces.com/ . Focuses on describing: the "anatomy" of a sequence alignment; two alternative interpretations of...
An introduction to bioinformatics for bench biologists delivered as part of the EMBL Australia Masterclass on Protein Sequence Analysis http://oz-masterclass.wikispaces.com/ . Focuses on using UniProt to explore different reasons why information inferred by "direct assay" and "prediction" could...
Content for a one-day course delivered in April 2013 at the University of Cambridge, together with Sarah Parks, Cilia Antoniou, and Adrian Friday.
Uses examples taken from several published papers to explore some of the assumptions and concepts we use when presenting and interpreting phylogenetic...
This is a lecture on linear motifs and phophorylation sites (P-sites). Some materials from other lectures are reused.
The lecture is basically about computational approaches to encode, predict, analyse, and use functional motifs and P-sites.
Here you can find:
A definition of linear motifs and...
This is a module from the "Python for Biologists" course. One typical problem in bioinformatics is parsing data files. This module explains how to parse FASTA files and GenBank records. It also introduces the if/elif/else construct to make choice in programming and the list data structure. The...