/tools/visualization/LAJ.py
https://bitbucket.org/cistrome/cistrome-harvard/ · Python · 10 lines · 3 code · 3 blank · 4 comment · 0 complexity · 85903c3e1098efbf1340ec723bcfe459 MD5 · raw file
- #!/usr/bin/env python
- """
- Copies LAV file over to new file for use with LAJ
- """
- import sys, shutil
- assert sys.version_info[:2] >= ( 2, 4 )
- shutil.copyfile(sys.argv[1],sys.argv[2])