Skip to content

Commit

Permalink
Minor changes to program standard output.
Browse files Browse the repository at this point in the history
  • Loading branch information
emarinier committed Feb 27, 2017
1 parent 2e773d6 commit f968d6f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion neptune/Execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions neptune/Neptune.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -836,6 +834,8 @@ def main():

args = parser.parse_args()
parameters = vars(args)

print("Neptune v" + str(__version__) + "\n")
parse(parameters)


Expand Down

0 comments on commit f968d6f

Please sign in to comment.