diff --git a/genect_rnaseq/concat_cts.pl b/genect_rnaseq/concat_cts.pl index b36bd22d197770c3a664243eeaa385457b532d7b..3d50b3a0f05045dfcf7140e97cec5812671fdbe3 100755 --- a/genect_rnaseq/concat_cts.pl +++ b/genect_rnaseq/concat_cts.pl @@ -78,7 +78,7 @@ foreach $gene (keys %cts) { } $cpm = ($cts{$gene}{$sample}/$total{$sample})*1e6; push @cpm, sprintf("%.2f",log2($cpm)); - push @line, $cts{$gene}{$sample}; + push @line, sprintf("%.0f",$cts{$gene}{$sample}); } my @sortct = sort {$b cmp $a} @cpm; #next unless ($sortct[0] >= 1);