Mercurial > repos > nick > allele_counts
view tests/run-tests.py @ 6:df3b28364cd2
allele-counts.{py,xml}: Add strand bias, documentation updates.
author | nicksto <nmapsy@gmail.com> |
---|---|
date | Wed, 09 Dec 2015 11:20:51 -0500 |
parents | 31361191d2d2 |
children | 411adeff1eec |
line wrap: on
line source
#!/usr/bin/env python import os import sys import subprocess DATASETS = [ 'artificial', 'artificial-samples', 'artificial-nofilt', 'real', 'real-mit', 'real-mit-s', 'real-nofilt', ] IN_EXT = '.vcf.in' OUT_EXT = '.csv.out' ARGS_KEY = '##comment="ARGS=' def main(): test_dir = os.path.dirname(os.path.relpath(sys.argv[0])) if test_dir: test_dir += os.sep for dataset in DATASETS: infile = test_dir+dataset+IN_EXT outfile = test_dir+dataset+OUT_EXT if not os.path.exists(infile): sys.stderr.write("Error: file not found: "+infile+"\n") continue if not os.path.exists(outfile): sys.stderr.write("Error: file not found: "+outfile+"\n") continue options = read_options(infile) script_cmd = 'allele-counts.py '+options+' -i '+infile bash_cmd = 'diff '+outfile+' <('+script_cmd+')' # print infile+":" print script_cmd subprocess.call(['bash', '-c', bash_cmd]) def read_options(infile): with open(infile, 'r') as infilehandle: for line in infilehandle: line.strip() if ARGS_KEY == line[:len(ARGS_KEY)]: return line[len(ARGS_KEY):-2] return '' if __name__ == '__main__': main()