From: Bo Li Date: Wed, 9 Mar 2011 17:49:32 +0000 (-0600) Subject: Fixed a bug related to output format. Grant read permession to all files and executio... X-Git-Url: https://git.donarmstrong.com/?p=rsem.git;a=commitdiff_plain;h=01ba1b045976306e502aaf784c4a1d0787f12ac5 Fixed a bug related to output format. Grant read permession to all files and execution permession to all directories. --- diff --git a/rsem-calculate-expression b/rsem-calculate-expression index de412ae..0f22282 100755 --- a/rsem-calculate-expression +++ b/rsem-calculate-expression @@ -344,7 +344,7 @@ sub collectResults { ++$cnt; chomp($line); my @local_arr = split(/\t/, $line); - if ($cnt == 3) { @comment = @local_arr; } + if ($cnt == 4) { @comment = @local_arr; } else { push(@results, \@local_arr); } }