diff options
author | Calvin <calvin@EESI> | 2013-03-07 16:49:12 -0500 |
---|---|---|
committer | Calvin <calvin@EESI> | 2013-03-07 16:49:12 -0500 |
commit | 7df3bd86f20197aad9e82f7ee89b7c0c8938dc15 (patch) | |
tree | e17a3633b39a5d88a60c5326381184be08ad9f95 /generate_kmers.py | |
parent | 748ba238758d92b74eff059e00384249673b2fa2 (diff) |
minor formatting cleanup
Diffstat (limited to 'generate_kmers.py')
-rwxr-xr-x | generate_kmers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generate_kmers.py b/generate_kmers.py index 5460c03..9a338b7 100755 --- a/generate_kmers.py +++ b/generate_kmers.py @@ -2,4 +2,4 @@ import itertools import sys -print'\n'.join(''.join(x) for x in itertools.product('acgt', repeat=int(sys.argv[1]))) +print '\n'.join(''.join(x) for x in itertools.product('acgt', repeat=int(sys.argv[1]))) |