Andrew Stirn commited on
Commit
33f693d
·
1 Parent(s): cf3bd3a
Files changed (1) hide show
  1. run.py +10 -10
run.py CHANGED
@@ -46,13 +46,13 @@ def run(x):
46
  return gen_report_table(input_gens, res)
47
 
48
 
49
- if __name__ == "__main__":
50
- if len(sys.argv) == 1:
51
- print("you need to specify 23 character gen information")
52
- exit()
53
- x = sys.argv[1]
54
- if len(x) != 23:
55
- print("you need to specify 23 character gen information. You typed %s chars" % len(x))
56
- exit()
57
- elif all([True if item in "ACGT" else False for item in x]):
58
- print("run succesfully: ", run(x))
 
46
  return gen_report_table(input_gens, res)
47
 
48
 
49
+ # if __name__ == "__main__":
50
+ # if len(sys.argv) == 1:
51
+ # print("you need to specify 23 character gen information")
52
+ # exit()
53
+ # x = sys.argv[1]
54
+ # if len(x) != 23:
55
+ # print("you need to specify 23 character gen information. You typed %s chars" % len(x))
56
+ # exit()
57
+ # elif all([True if item in "ACGT" else False for item in x]):
58
+ # print("run succesfully: ", run(x))