view cp.py @ 26:91e835060ad2

Updates to Admixture, Aggregate Individuals, and Restore Attributes to support gd_genotype
author Richard Burhans <burhans@bx.psu.edu>
date Mon, 03 Jun 2013 12:29:29 -0400
parents 95a05c1ef5d5
children
line wrap: on
line source

#!/usr/bin/env python

import shutil
import sys

if len(sys.argv) != 3:
    print >> sys.stderr, 'Usage: %s <src> <dst>' % sys.argv[0]
    sys.exit(1)

src, dst =  sys.argv[1:3]
shutil.copy2(src, dst)