From e61c29692a8748714a441f599c5a09e9b363aa19 Mon Sep 17 00:00:00 2001 From: Peter Vlasveld Date: Thu, 21 Feb 2019 13:20:51 -0500 Subject: [PATCH] Updated some comments --- LEXF.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/LEXF.py b/LEXF.py index 80fb9da..1ead7d3 100644 --- a/LEXF.py +++ b/LEXF.py @@ -1,10 +1,11 @@ #!/usr/bin/python +""" +LEXF Rosalind.info Solution - Enumerating k-mers Lexicographically +Author: Peter Vlasveld +Date: 12/01/2019 +""" -#LEXF Rosalind.info Solution - Enumerating k-mers Lexicographically -#Author: Peter Vlasveld -#Date: 12/01/2019 - -#get dataset from file +#Get dataset from file f1 = open("rosalind_lexf.txt") content = f1.readlines() f1.close() @@ -15,7 +16,9 @@ lex = [] for i in xrange(0, int(content[1])): lex.extend(firstLex) -#recursive function to get all possible combinations within the lex set +""" +Recursive function to get all possible combinations within the lex set +""" def wordCombo (arr, data, start, end, index, r): if index == r: tempStr = ""