/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

  1. #!/usr/bin/env python
  2. """
  3. Copies LAV file over to new file for use with LAJ
  4. """
  5. import sys, shutil
  6. assert sys.version_info[:2] >= ( 2, 4 )
  7. shutil.copyfile(sys.argv[1],sys.argv[2])