File: test_PopGen_SimCoal_nodepend.py

package info (click to toggle)
python-biopython 1.54-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 25,400 kB
  • ctags: 10,975
  • sloc: python: 116,757; xml: 33,167; ansic: 8,622; sql: 1,488; makefile: 147
file content (43 lines) | stat: -rw-r--r-- 1,912 bytes parent folder | download
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
# 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.

import os
import unittest
from Bio.PopGen import SimCoal
from Bio.PopGen.SimCoal.Template import generate_simcoal_from_template

#Tests simcoal related code. Note: this case doesn't require simcoal
#test_PopGen_SimCoal tests code that requires simcoal


class TemplateTest(unittest.TestCase):
    def test_template_full(self):
        """Full template creation test
        """
        generate_simcoal_from_template('simple',
            [(1, [('SNP', [24, 0.0005, 0.0])])],
            [('sample_size', [30]),
             ('pop_size', [100])],
            'PopGen')
        #Confirm the files match (ignoring any switch of line endings
        #possible if the input file used a different OS convention)
        old = open(os.path.join('PopGen', 'simple.par'), "rU").readlines()
        new = open(os.path.join('PopGen', 'simple_100_30.par')).readlines()
        assert old==new, "Error - Old:\n%s\n\nNew:\n%s\n" % (old, new)
        #assert(os.stat('PopGen' + os.sep + 'simple.par').st_size ==
        #       os.stat('PopGen' + os.sep + 'simple_100_30.par').st_size)

    def tearDown(self):
        if os.path.isfile(os.path.join('PopGen', 'tmp.par')):
            #This is a temp file create by the Bio.PopGen.SimCoal.Template
            #function generate_simcoal_from_template
            os.remove(os.path.join('PopGen', 'tmp.par'))
        if os.path.isfile(os.path.join('PopGen', 'simple_100_30.par')):
            #This won't exist if the template generation failed:
            os.remove(os.path.join('PopGen', 'simple_100_30.par'))

if __name__ == "__main__":
    runner = unittest.TextTestRunner(verbosity = 2)
    unittest.main(testRunner=runner)