1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
# Copyright 2006 by Tiago Antao <tiagoantao@gmail.com>. All rights reserved.
# This code is part of the Biopython distribution and governed by its
# license. Please see the LICENSE file that should have been included
# as part of this package.
from __future__ import print_function
import os
import shutil
import tempfile
import unittest
import warnings
from Bio import MissingExternalDependencyError
from Bio import BiopythonDeprecationWarning
with warnings.catch_warnings():
warnings.simplefilter("ignore", BiopythonDeprecationWarning)
from Bio.PopGen import FDist
from Bio.PopGen.FDist import Controller
# Tests FDist2 related code. Note: this case requires fdist2 (four binaries)
# test_PopGen_FDist_nodepend tests code that does not require fdist2 or Dfdist
def is_pypy():
import platform
try:
if platform.python_implementation() == 'PyPy':
return True
except AttributeError:
# New in Python 2.6, not in Jython yet either
pass
return False
wanted = dict()
for path in os.environ['PATH'].split(os.pathsep):
try:
list = os.listdir(path)
for file in os.listdir(path):
for f in ['fdist2', 'datacal', 'pv', 'cplot']:
if file == f or file.lower() == f.lower() + ".exe":
wanted[f] = file
except os.error:
pass # Path doesn't exist - correct to pass
if len(wanted) != 4:
raise MissingExternalDependencyError(
"Install fdist2, datacal, pv and cplot if you want to use FDist2 with Bio.PopGen.FDist.")
del wanted
import sys
if not is_pypy() and sys.version_info[0] == 3 and sys.version_info < (3, 2, 4):
raise MissingExternalDependencyError("Under Python 3, please use Python 3.2.4"
" onwards for this test - see http://bugs.python.org/issue16903")
class AppTest(unittest.TestCase):
"""Tests the fdist suite of applications.
"""
def _copyfile(self, inname, outname):
shutil.copyfile(
'PopGen' + os.sep + inname,
self.dirname + os.sep + outname)
def setUp(self):
self.ctrl = Controller.FDistController()
self.dirname = tempfile.mkdtemp()
self._copyfile('data_fst_outfile', 'data_fst_outfile')
self._copyfile('fdist1', 'infile')
self._copyfile('out.dat', 'out.dat')
self._copyfile('out.cpl', 'out.cpl')
def tearDown(self):
# Not sure how exactly, but its possible the temp directory
# may not (still) exist.
if os.path.isdir(self.dirname):
for file in os.listdir(self.dirname):
os.remove(self.dirname + os.sep + file)
os.rmdir(self.dirname)
def test_datacal(self):
"""Test datacal execution.
"""
fst, samp_size = self.ctrl.run_datacal(data_dir=self.dirname)
self.assertTrue(fst - 0.44 < 0.01)
self.assertEqual(samp_size, 11)
def test_fdist(self):
"""Test fdist execution.
"""
# The number of simulations in real life should be at least 10000,
# see the fdist2 documentation.
fst = self.ctrl.run_fdist(npops=15, nsamples=10, fst=0.1,
sample_size=20, mut=0, num_sims=100,
data_dir=self.dirname)
self.assertTrue(abs(fst - 0.1) < 0.03,
"Stochastic result, expected %f close to 0.1" % fst)
def test_fdist_force_fst(self):
"""Test fdist execution approximating Fst.
"""
# The number of simulations in real life should be at least 10000,
# see the fdist2 documentation.
fst = self.ctrl.run_fdist_force_fst(npops=15, nsamples=10,
fst=0.1,
sample_size=20, mut=0, num_sims=100,
data_dir=self.dirname)
self.assertTrue(abs(fst - 0.09) < 0.05,
"Stochastic result, expected %f close to 0.09" % fst)
def test_cplot(self):
"""Test cplot execution.
"""
cpl_interval = self.ctrl.run_cplot(data_dir=self.dirname)
self.assertEqual(len(cpl_interval), 8)
def test_pv(self):
"""Test pv execution.
"""
pv_data = self.ctrl.run_pv(data_dir=self.dirname)
self.assertEqual(len(pv_data), 4)
if __name__ == "__main__":
print("Running fdist tests, which might take some time, please wait")
runner = unittest.TextTestRunner(verbosity=2)
unittest.main(testRunner=runner)
|