Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. python test.py -i file.fa
  2.  
  3. python test.py -inputfile = file.fa
  4.  
  5. def main():
  6. try:
  7. opts,args = getopt.getopt(sys.argv[1:],":i"["inputfile=",])
  8. for opt,arg in opts:
  9. if opt == '-i':
  10. inputfile = arg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement