Skip to Content
Bioinformatics with Python Cookbook - Second Edition
book

Bioinformatics with Python Cookbook - Second Edition

by Tiago Antao
November 2018
Intermediate to advanced
360 pages
9h 36m
English
Packt Publishing
Content preview from Bioinformatics with Python Cookbook - Second Edition

How to do it...

Take a look at the following steps:

  1. Let's load population names and execute Genepop externally to compute genotypic frequencies, as follows:
from Bio.PopGen.GenePop import Controller as gpcctrl = gpc.GenePopController()my_pops = [l.rstrip() for l in open('hapmap10_auto_noofs_2.pops')]num_pops = len(my_pops)pop_iter, loci_iter = ctrl.calc_allele_genotype_freqs('hapmap10_auto_noofs_2.gp')

First, we create a controller (an object that allows you to interact with the Genepop application). Then, we load population names. Finally, we compute the genotypic information, which may take some time. Our controller will return two iterators, exposing results per population and per loci.

We will use a relatively small dataset, which makes ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Bioinformatics with Python Cookbook

Bioinformatics with Python Cookbook

Tiago Antao

Publisher Resources

ISBN: 9781789344691Supplemental Content