diff --git a/neptune/Execution.py b/neptune/Execution.py index f04c5f6..249a9cd 100644 --- a/neptune/Execution.py +++ b/neptune/Execution.py @@ -394,7 +394,7 @@ def estimateKMerSize(self): if expected < EXPECTED_HITS_THRESHOLD: self.k = k - print "k = " + str(self.k) + print "k = " + str(self.k) + "\n" return # No suitable k estimated. diff --git a/neptune/Neptune.py b/neptune/Neptune.py index 052a6a1..7a0605a 100755 --- a/neptune/Neptune.py +++ b/neptune/Neptune.py @@ -488,8 +488,6 @@ def consolidateSignatures(execution, sortedLocations): """ def execute(execution): - print("Neptune v" + str(__version__) + "\n") - # --- K-MER COUNTING --- print("k-mer Counting...") start = time.clock() @@ -836,6 +834,8 @@ def main(): args = parser.parse_args() parameters = vars(args) + + print("Neptune v" + str(__version__) + "\n") parse(parameters)