Skip to content

Commit

Permalink
Fix broken assemblies.csv output
Browse files Browse the repository at this point in the history
  • Loading branch information
blahah committed Jun 15, 2015
1 parent bbeea6b commit ec9a32e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/transrate
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ CSV.open(outfile, 'wb') do |file|
all.each do |row|
file << head.map { |x|
entry = row[x]
entry = entry.round(5) if entry.is_a? Float
entry.is_a?(Float) ? entry.round(5) : entry
}
end
end

0 comments on commit ec9a32e

Please sign in to comment.