From: martinahansen <martinahansen@74ccb610-7750-0410-82ae-013aeee3265d>
Date: Tue, 24 Nov 2009 19:44:23 +0000 (+0000)
Subject: fixed comma bug
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=5f46999d266b7de5f4b2f5b336debc9cdb1a45ba;p=biopieces.git

fixed comma bug

git-svn-id: http://biopieces.googlecode.com/svn/trunk@770 74ccb610-7750-0410-82ae-013aeee3265d
---

diff --git a/code_perl/Maasha/KISS/IO.pm b/code_perl/Maasha/KISS/IO.pm
index f64af41..f4f5605 100644
--- a/code_perl/Maasha/KISS/IO.pm
+++ b/code_perl/Maasha/KISS/IO.pm
@@ -167,7 +167,7 @@ sub kiss_sort
 
     `sort -k 2,2n -k 3,3n > $file.sort`;
 
-    rename "$file.sort" $file;
+    rename "$file.sort", $file;
 }