Skip to content
Snippets Groups Projects
Commit 1e6e1974 authored by Brandi Cantarel's avatar Brandi Cantarel
Browse files

integer concat_cts.pl

parent 0f5e4dca
Branches
Tags
No related merge requests found
......@@ -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);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment